You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.15.0-SNAPSHOT-260827131226
|
||||
Lib version: 1.15.0-SNAPSHOT-260828074504
|
||||
|
||||
@@ -16,10 +16,13 @@ import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'shared.pb.dart' as $1;
|
||||
import 'siteBooking.pbenum.dart';
|
||||
import 'slotbooking.pb.dart' as $2;
|
||||
|
||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||
|
||||
export 'siteBooking.pbenum.dart';
|
||||
|
||||
/// GetAvailableSlots
|
||||
class GetBookingSlotsRequest extends $pb.GeneratedMessage {
|
||||
factory GetBookingSlotsRequest({
|
||||
@@ -989,6 +992,7 @@ class UpdateAppointmentPayload extends $pb.GeneratedMessage {
|
||||
$2.AppointmentContent? loading,
|
||||
$2.AppointmentContent? unloading,
|
||||
$core.Iterable<$core.String>? emails,
|
||||
$core.Iterable<$1.MetadataElement>? carrierInformation,
|
||||
}) {
|
||||
final result = create();
|
||||
if (slot != null) result.slot = slot;
|
||||
@@ -997,6 +1001,7 @@ class UpdateAppointmentPayload extends $pb.GeneratedMessage {
|
||||
if (loading != null) result.loading = loading;
|
||||
if (unloading != null) result.unloading = unloading;
|
||||
if (emails != null) result.emails.addAll(emails);
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -1012,6 +1017,7 @@ class UpdateAppointmentPayload extends $pb.GeneratedMessage {
|
||||
..aOM<$2.AppointmentContent>(5, _omitFieldNames ? '' : 'Loading', protoName: 'Loading', subBuilder: $2.AppointmentContent.create)
|
||||
..aOM<$2.AppointmentContent>(6, _omitFieldNames ? '' : 'Unloading', protoName: 'Unloading', subBuilder: $2.AppointmentContent.create)
|
||||
..pPS(8, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||
..pc<$1.MetadataElement>(9, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $1.MetadataElement.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -1091,6 +1097,193 @@ class UpdateAppointmentPayload extends $pb.GeneratedMessage {
|
||||
/// User mails being notified on this appointment
|
||||
@$pb.TagNumber(8)
|
||||
$pb.PbList<$core.String> get emails => $_getList(5);
|
||||
|
||||
/// Carrier information metadata
|
||||
@$pb.TagNumber(9)
|
||||
$pb.PbList<$1.MetadataElement> get carrierInformation => $_getList(6);
|
||||
}
|
||||
|
||||
/// Update Appointment Status
|
||||
class UpdateBookingAppointmentStatusRequest extends $pb.GeneratedMessage {
|
||||
factory UpdateBookingAppointmentStatusRequest({
|
||||
$1.RequestProjectHeader? header,
|
||||
$1.EntityID? iD,
|
||||
UpdateAppointmentStatusPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
UpdateBookingAppointmentStatusRequest._();
|
||||
|
||||
factory UpdateBookingAppointmentStatusRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory UpdateBookingAppointmentStatusRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateBookingAppointmentStatusRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOM<UpdateAppointmentStatusPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: UpdateAppointmentStatusPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateBookingAppointmentStatusRequest clone() => UpdateBookingAppointmentStatusRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateBookingAppointmentStatusRequest copyWith(void Function(UpdateBookingAppointmentStatusRequest) updates) => super.copyWith((message) => updates(message as UpdateBookingAppointmentStatusRequest)) as UpdateBookingAppointmentStatusRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateBookingAppointmentStatusRequest create() => UpdateBookingAppointmentStatusRequest._();
|
||||
@$core.override
|
||||
UpdateBookingAppointmentStatusRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateBookingAppointmentStatusRequest> createRepeated() => $pb.PbList<UpdateBookingAppointmentStatusRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateBookingAppointmentStatusRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateBookingAppointmentStatusRequest>(create);
|
||||
static UpdateBookingAppointmentStatusRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($1.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
UpdateAppointmentStatusPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(UpdateAppointmentStatusPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
UpdateAppointmentStatusPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class UpdateAppointmentStatusPayload extends $pb.GeneratedMessage {
|
||||
factory UpdateAppointmentStatusPayload({
|
||||
AppointmentStatusInputEvent? appointmentStatusInputEvent,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentStatusInputEvent != null) result.appointmentStatusInputEvent = appointmentStatusInputEvent;
|
||||
return result;
|
||||
}
|
||||
|
||||
UpdateAppointmentStatusPayload._();
|
||||
|
||||
factory UpdateAppointmentStatusPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory UpdateAppointmentStatusPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAppointmentStatusPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<AppointmentStatusInputEvent>(1, _omitFieldNames ? '' : 'AppointmentStatusInputEvent', $pb.PbFieldType.OE, protoName: 'AppointmentStatusInputEvent', defaultOrMaker: AppointmentStatusInputEvent.APPOINTMENT_INPUT_EVENT_UNKNOWN, valueOf: AppointmentStatusInputEvent.valueOf, enumValues: AppointmentStatusInputEvent.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateAppointmentStatusPayload clone() => UpdateAppointmentStatusPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateAppointmentStatusPayload copyWith(void Function(UpdateAppointmentStatusPayload) updates) => super.copyWith((message) => updates(message as UpdateAppointmentStatusPayload)) as UpdateAppointmentStatusPayload;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAppointmentStatusPayload create() => UpdateAppointmentStatusPayload._();
|
||||
@$core.override
|
||||
UpdateAppointmentStatusPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateAppointmentStatusPayload> createRepeated() => $pb.PbList<UpdateAppointmentStatusPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAppointmentStatusPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateAppointmentStatusPayload>(create);
|
||||
static UpdateAppointmentStatusPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
AppointmentStatusInputEvent get appointmentStatusInputEvent => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set appointmentStatusInputEvent(AppointmentStatusInputEvent value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAppointmentStatusInputEvent() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAppointmentStatusInputEvent() => $_clearField(1);
|
||||
}
|
||||
|
||||
class UpdateBookingAppointmentStatusResponse extends $pb.GeneratedMessage {
|
||||
factory UpdateBookingAppointmentStatusResponse({
|
||||
$core.String? appointmentID,
|
||||
$1.ResponseHeader? header,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||
if (header != null) result.header = header;
|
||||
return result;
|
||||
}
|
||||
|
||||
UpdateBookingAppointmentStatusResponse._();
|
||||
|
||||
factory UpdateBookingAppointmentStatusResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory UpdateBookingAppointmentStatusResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateBookingAppointmentStatusResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||
..aOM<$1.ResponseHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateBookingAppointmentStatusResponse clone() => UpdateBookingAppointmentStatusResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
UpdateBookingAppointmentStatusResponse copyWith(void Function(UpdateBookingAppointmentStatusResponse) updates) => super.copyWith((message) => updates(message as UpdateBookingAppointmentStatusResponse)) as UpdateBookingAppointmentStatusResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateBookingAppointmentStatusResponse create() => UpdateBookingAppointmentStatusResponse._();
|
||||
@$core.override
|
||||
UpdateBookingAppointmentStatusResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateBookingAppointmentStatusResponse> createRepeated() => $pb.PbList<UpdateBookingAppointmentStatusResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateBookingAppointmentStatusResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateBookingAppointmentStatusResponse>(create);
|
||||
static UpdateBookingAppointmentStatusResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get appointmentID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set appointmentID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAppointmentID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAppointmentID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$1.ResponseHeader get header => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set header($1.ResponseHeader value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasHeader() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearHeader() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$1.ResponseHeader ensureHeader() => $_ensure(1);
|
||||
}
|
||||
|
||||
class WMSUpdateBookingAppointmentRequest extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -10,3 +10,38 @@
|
||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||
// ignore_for_file: non_constant_identifier_names
|
||||
|
||||
import 'dart:core' as $core;
|
||||
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
class AppointmentStatusInputEvent extends $pb.ProtobufEnum {
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNKNOWN = AppointmentStatusInputEvent._(0, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNKNOWN');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED = AppointmentStatusInputEvent._(1, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED = AppointmentStatusInputEvent._(2, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED = AppointmentStatusInputEvent._(3, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR = AppointmentStatusInputEvent._(4, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_LOADING_STARTED = AppointmentStatusInputEvent._(5, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_LOADING_STARTED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED = AppointmentStatusInputEvent._(6, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED = AppointmentStatusInputEvent._(7, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED');
|
||||
static const AppointmentStatusInputEvent APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED = AppointmentStatusInputEvent._(8, _omitEnumNames ? '' : 'APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED');
|
||||
|
||||
static const $core.List<AppointmentStatusInputEvent> values = <AppointmentStatusInputEvent> [
|
||||
APPOINTMENT_INPUT_EVENT_UNKNOWN,
|
||||
APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED,
|
||||
APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED,
|
||||
APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED,
|
||||
APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR,
|
||||
APPOINTMENT_INPUT_EVENT_LOADING_STARTED,
|
||||
APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED,
|
||||
APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED,
|
||||
APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED,
|
||||
];
|
||||
|
||||
static final $core.List<AppointmentStatusInputEvent?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 8);
|
||||
static AppointmentStatusInputEvent? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||
|
||||
const AppointmentStatusInputEvent._(super.value, super.name);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
|
||||
@@ -68,6 +68,10 @@ class BookingServiceClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$updateAppointment, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.UpdateBookingAppointmentStatusResponse> updateAppointmentStatus($0.UpdateBookingAppointmentStatusRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$updateAppointmentStatus, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.BookBookingAppointmentResponse> updateAppointmentNoReference($0.UpdateBookingAppointmentRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$updateAppointmentNoReference, request, options: options);
|
||||
}
|
||||
@@ -134,6 +138,10 @@ class BookingServiceClient extends $grpc.Client {
|
||||
'/api.BookingService/UpdateAppointment',
|
||||
($0.UpdateBookingAppointmentRequest value) => value.writeToBuffer(),
|
||||
$0.BookBookingAppointmentResponse.fromBuffer);
|
||||
static final _$updateAppointmentStatus = $grpc.ClientMethod<$0.UpdateBookingAppointmentStatusRequest, $0.UpdateBookingAppointmentStatusResponse>(
|
||||
'/api.BookingService/UpdateAppointmentStatus',
|
||||
($0.UpdateBookingAppointmentStatusRequest value) => value.writeToBuffer(),
|
||||
$0.UpdateBookingAppointmentStatusResponse.fromBuffer);
|
||||
static final _$updateAppointmentNoReference = $grpc.ClientMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>(
|
||||
'/api.BookingService/UpdateAppointmentNoReference',
|
||||
($0.UpdateBookingAppointmentRequest value) => value.writeToBuffer(),
|
||||
@@ -232,6 +240,13 @@ abstract class BookingServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.UpdateBookingAppointmentRequest.fromBuffer(value),
|
||||
($0.BookBookingAppointmentResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.UpdateBookingAppointmentStatusRequest, $0.UpdateBookingAppointmentStatusResponse>(
|
||||
'UpdateAppointmentStatus',
|
||||
updateAppointmentStatus_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.UpdateBookingAppointmentStatusRequest.fromBuffer(value),
|
||||
($0.UpdateBookingAppointmentStatusResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>(
|
||||
'UpdateAppointmentNoReference',
|
||||
updateAppointmentNoReference_Pre,
|
||||
@@ -337,6 +352,12 @@ abstract class BookingServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.BookBookingAppointmentResponse> updateAppointment($grpc.ServiceCall call, $0.UpdateBookingAppointmentRequest request);
|
||||
|
||||
$async.Future<$0.UpdateBookingAppointmentStatusResponse> updateAppointmentStatus_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateBookingAppointmentStatusRequest> $request) async {
|
||||
return updateAppointmentStatus($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.UpdateBookingAppointmentStatusResponse> updateAppointmentStatus($grpc.ServiceCall call, $0.UpdateBookingAppointmentStatusRequest request);
|
||||
|
||||
$async.Future<$0.BookBookingAppointmentResponse> updateAppointmentNoReference_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateBookingAppointmentRequest> $request) async {
|
||||
return updateAppointmentNoReference($call, await $request);
|
||||
}
|
||||
|
||||
@@ -14,6 +14,33 @@ import 'dart:convert' as $convert;
|
||||
import 'dart:core' as $core;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use appointmentStatusInputEventDescriptor instead')
|
||||
const AppointmentStatusInputEvent$json = {
|
||||
'1': 'AppointmentStatusInputEvent',
|
||||
'2': [
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_UNKNOWN', '2': 0},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_CARRIER_EXPECTED', '2': 1},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_CARRIER_ARRIVED', '2': 2},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_CARRIER_DEPARTED', '2': 3},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_ALLOCATION_ERROR', '2': 4},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_LOADING_STARTED', '2': 5},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_LOADING_COMPLETED', '2': 6},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_UNLOADING_STARTED', '2': 7},
|
||||
{'1': 'APPOINTMENT_INPUT_EVENT_UNLOADING_COMPLETED', '2': 8},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentStatusInputEvent`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentStatusInputEventDescriptor = $convert.base64Decode(
|
||||
'ChtBcHBvaW50bWVudFN0YXR1c0lucHV0RXZlbnQSIwofQVBQT0lOVE1FTlRfSU5QVVRfRVZFTl'
|
||||
'RfVU5LTk9XThAAEiwKKEFQUE9JTlRNRU5UX0lOUFVUX0VWRU5UX0NBUlJJRVJfRVhQRUNURUQQ'
|
||||
'ARIrCidBUFBPSU5UTUVOVF9JTlBVVF9FVkVOVF9DQVJSSUVSX0FSUklWRUQQAhIsCihBUFBPSU'
|
||||
'5UTUVOVF9JTlBVVF9FVkVOVF9DQVJSSUVSX0RFUEFSVEVEEAMSLAooQVBQT0lOVE1FTlRfSU5Q'
|
||||
'VVRfRVZFTlRfQUxMT0NBVElPTl9FUlJPUhAEEisKJ0FQUE9JTlRNRU5UX0lOUFVUX0VWRU5UX0'
|
||||
'xPQURJTkdfU1RBUlRFRBAFEi0KKUFQUE9JTlRNRU5UX0lOUFVUX0VWRU5UX0xPQURJTkdfQ09N'
|
||||
'UExFVEVEEAYSLQopQVBQT0lOVE1FTlRfSU5QVVRfRVZFTlRfVU5MT0FESU5HX1NUQVJURUQQBx'
|
||||
'IvCitBUFBPSU5UTUVOVF9JTlBVVF9FVkVOVF9VTkxPQURJTkdfQ09NUExFVEVEEAg=');
|
||||
|
||||
@$core.Deprecated('Use getBookingSlotsRequestDescriptor instead')
|
||||
const GetBookingSlotsRequest$json = {
|
||||
'1': 'GetBookingSlotsRequest',
|
||||
@@ -290,6 +317,7 @@ const UpdateAppointmentPayload$json = {
|
||||
{'1': 'Loading', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
|
||||
{'1': 'Unloading', '3': 6, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
|
||||
{'1': 'Emails', '3': 8, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
|
||||
{'1': 'CarrierInformation', '3': 9, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'CarrierInformation'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -304,7 +332,59 @@ final $typed_data.Uint8List updateAppointmentPayloadDescriptor = $convert.base64
|
||||
'IHTG9hZGluZxI1CglVbmxvYWRpbmcYBiABKAsyFy5hcGkuQXBwb2ludG1lbnRDb250ZW50UglV'
|
||||
'bmxvYWRpbmcSfgoGRW1haWxzGAggAygJQmaSQVEyHU11c3QgYmUgYSB2YWxpZCBlbWFpbCBhZG'
|
||||
'RyZXNzSjBbIkpvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl26'
|
||||
'gQEOkgELCAEiB3IFYAHwAQFSBkVtYWlsczoYkkEVChPSAQRTbG900gEJQXR0ZW5kZWVz');
|
||||
'gQEOkgELCAEiB3IFYAHwAQFSBkVtYWlscxJnChJDYXJyaWVySW5mb3JtYXRpb24YCSADKAsyFC'
|
||||
'5hcGkuTWV0YWRhdGFFbGVtZW50QiGSQR4yHENhcnJpZXIgaW5mb3JtYXRpb24gbWV0YWRhdGFS'
|
||||
'EkNhcnJpZXJJbmZvcm1hdGlvbjoYkkEVChPSAQRTbG900gEJQXR0ZW5kZWVz');
|
||||
|
||||
@$core.Deprecated('Use updateBookingAppointmentStatusRequestDescriptor instead')
|
||||
const UpdateBookingAppointmentStatusRequest$json = {
|
||||
'1': 'UpdateBookingAppointmentStatusRequest',
|
||||
'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.UpdateAppointmentStatusPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateBookingAppointmentStatusRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateBookingAppointmentStatusRequestDescriptor = $convert.base64Decode(
|
||||
'CiVVcGRhdGVCb29raW5nQXBwb2ludG1lbnRTdGF0dXNSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCz'
|
||||
'IZLmFwaS5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiAB'
|
||||
'KAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQAVICSUQSSAoHUGF5bG9hZBgDIAEoCzIjLmFwaS'
|
||||
'5VcGRhdGVBcHBvaW50bWVudFN0YXR1c1BheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDodkkEa'
|
||||
'ChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWQ=');
|
||||
|
||||
@$core.Deprecated('Use updateAppointmentStatusPayloadDescriptor instead')
|
||||
const UpdateAppointmentStatusPayload$json = {
|
||||
'1': 'UpdateAppointmentStatusPayload',
|
||||
'2': [
|
||||
{'1': 'AppointmentStatusInputEvent', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentStatusInputEvent', '8': {}, '10': 'AppointmentStatusInputEvent'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateAppointmentStatusPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateAppointmentStatusPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch5VcGRhdGVBcHBvaW50bWVudFN0YXR1c1BheWxvYWQSbQobQXBwb2ludG1lbnRTdGF0dXNJbn'
|
||||
'B1dEV2ZW50GAEgASgOMiAuYXBpLkFwcG9pbnRtZW50U3RhdHVzSW5wdXRFdmVudEIJuoEBBYIB'
|
||||
'AhABUhtBcHBvaW50bWVudFN0YXR1c0lucHV0RXZlbnQ6HZJBGgoY0gEVQXBwb2ludG1lbnRJbn'
|
||||
'B1dEV2ZW50');
|
||||
|
||||
@$core.Deprecated('Use updateBookingAppointmentStatusResponseDescriptor instead')
|
||||
const UpdateBookingAppointmentStatusResponse$json = {
|
||||
'1': 'UpdateBookingAppointmentStatusResponse',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
|
||||
{'1': 'AppointmentID', '3': 1, '4': 1, '5': 9, '10': 'AppointmentID'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateBookingAppointmentStatusResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateBookingAppointmentStatusResponseDescriptor = $convert.base64Decode(
|
||||
'CiZVcGRhdGVCb29raW5nQXBwb2ludG1lbnRTdGF0dXNSZXNwb25zZRIrCgZIZWFkZXIYAiABKA'
|
||||
'syEy5hcGkuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIkCg1BcHBvaW50bWVudElEGAEgASgJUg1B'
|
||||
'cHBvaW50bWVudElE');
|
||||
|
||||
@$core.Deprecated('Use wMSUpdateBookingAppointmentRequestDescriptor instead')
|
||||
const WMSUpdateBookingAppointmentRequest$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.15.0-SNAPSHOT-260827131226
|
||||
version: 1.15.0-SNAPSHOT-260828074504
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user