Latest generation

This commit is contained in:
ci core model
2025-12-15 13:26:56 +00:00
parent 2388bb30b3
commit fca1691966
13 changed files with 315 additions and 15 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.12.0-SNAPSHOT-251212142946
Lib version: 1.12.0-SNAPSHOT-251215132626

View File

@@ -119,6 +119,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$3.Address? address,
$core.String? siteName,
$core.Iterable<$1.QuantityByUnit>? totalQuantities,
$core.String? timeZone,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -139,6 +140,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
if (totalQuantities != null) result.totalQuantities.addAll(totalQuantities);
if (timeZone != null) result.timeZone = timeZone;
return result;
}
@@ -166,6 +168,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..aOM<$3.Address>(21, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(22, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..pc<$1.QuantityByUnit>(23, _omitFieldNames ? '' : 'TotalQuantities', $pb.PbFieldType.PM, protoName: 'TotalQuantities', subBuilder: $1.QuantityByUnit.create)
..aOS(24, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..hasRequiredFields = false
;
@@ -322,6 +325,16 @@ class AppointmentPayload extends $pb.GeneratedMessage {
/// Total volumetry in all commissions inside the truck.
@$pb.TagNumber(23)
$pb.PbList<$1.QuantityByUnit> get totalQuantities => $_getList(17);
/// time zone of the site on which the appointment is booked
@$pb.TagNumber(24)
$core.String get timeZone => $_getSZ(18);
@$pb.TagNumber(24)
set timeZone($core.String value) => $_setString(18, value);
@$pb.TagNumber(24)
$core.bool hasTimeZone() => $_has(18);
@$pb.TagNumber(24)
void clearTimeZone() => $_clearField(24);
}
class AppointmentTriplet extends $pb.GeneratedMessage {

View File

@@ -54,6 +54,7 @@ const AppointmentPayload$json = {
{'1': 'Address', '3': 21, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 22, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'TotalQuantities', '3': 23, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'TotalQuantities'},
{'1': 'TimeZone', '3': 24, '4': 1, '5': 9, '10': 'TimeZone'},
],
'7': {},
};
@@ -90,8 +91,8 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
'92ZWQsRW1haWxzQWRkZWQsRW1haWxzUmVtb3ZlZCxTYW5pdGlzZWQsQ3VzdG9tRmllbGRzVXBk'
'YXRlZFIHQWN0b3JJRBImCgdBZGRyZXNzGBUgASgLMgwuYXBpLkFkZHJlc3NSB0FkZHJlc3MSGg'
'oIU2l0ZU5hbWUYFiABKAlSCFNpdGVOYW1lEj0KD1RvdGFsUXVhbnRpdGllcxgXIAMoCzITLmFw'
'aS5RdWFudGl0eUJ5VW5pdFIPVG90YWxRdWFudGl0aWVzOieSQSQKItIBD0FwcG9pbnRtZW50VH'
'lwZdIBDVNlZ21lbnRhdGlvbnM=');
'aS5RdWFudGl0eUJ5VW5pdFIPVG90YWxRdWFudGl0aWVzEhoKCFRpbWVab25lGBggASgJUghUaW'
'1lWm9uZTonkkEkCiLSAQ9BcHBvaW50bWVudFR5cGXSAQ1TZWdtZW50YXRpb25z');
@$core.Deprecated('Use appointmentTripletDescriptor instead')
const AppointmentTriplet$json = {

View File

@@ -39,6 +39,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
$core.String? reason,
$core.bool? instructionAck,
$core.Iterable<$2.MetadataElement>? carrierInformation,
$core.String? timeZone,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -55,6 +56,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (timeZone != null) result.timeZone = timeZone;
return result;
}
@@ -78,6 +80,7 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(18, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..pc<$2.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..hasRequiredFields = false
;
@@ -187,6 +190,15 @@ class AppointmentNotifyPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(19)
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(13);
@$pb.TagNumber(20)
$core.String get timeZone => $_getSZ(14);
@$pb.TagNumber(20)
set timeZone($core.String value) => $_setString(14, value);
@$pb.TagNumber(20)
$core.bool hasTimeZone() => $_has(14);
@$pb.TagNumber(20)
void clearTimeZone() => $_clearField(20);
}
class AppointmentNotify extends $pb.GeneratedMessage {

View File

@@ -32,6 +32,7 @@ const AppointmentNotifyPayload$json = {
{'1': 'AttachmentNumber', '3': 14, '4': 1, '5': 5, '10': 'AttachmentNumber'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'InstructionAck', '3': 18, '4': 1, '5': 8, '10': 'InstructionAck'},
{'1': 'TimeZone', '3': 20, '4': 1, '5': 9, '10': 'TimeZone'},
],
'7': {},
};
@@ -50,8 +51,8 @@ final $typed_data.Uint8List appointmentNotifyPayloadDescriptor = $convert.base64
'RhGAogAygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudFIITWV0YURhdGESOAoLQXR0YWNobWVudHMY'
'DSADKAsyFi5hcGkuQXR0YWNobWVudFN1bW1hcnlSC0F0dGFjaG1lbnRzEioKEEF0dGFjaG1lbn'
'ROdW1iZXIYDiABKAVSEEF0dGFjaG1lbnROdW1iZXISFgoGUmVhc29uGBEgASgJUgZSZWFzb24S'
'JgoOSW5zdHJ1Y3Rpb25BY2sYEiABKAhSDkluc3RydWN0aW9uQWNrOhmiuxgHQ29tbWFuZKi7GA'
'GyuxgGTm90aWZ5');
'JgoOSW5zdHJ1Y3Rpb25BY2sYEiABKAhSDkluc3RydWN0aW9uQWNrEhoKCFRpbWVab25lGBQgAS'
'gJUghUaW1lWm9uZToZorsYB0NvbW1hbmSouxgBsrsYBk5vdGlmeQ==');
@$core.Deprecated('Use appointmentNotifyDescriptor instead')
const AppointmentNotify$json = {

View File

@@ -36,6 +36,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$3.Address? address,
$core.String? siteName,
$core.Iterable<$1.QuantityByUnit>? totalQuantities,
$core.String? timeZone,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -51,6 +52,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
if (totalQuantities != null) result.totalQuantities.addAll(totalQuantities);
if (timeZone != null) result.timeZone = timeZone;
return result;
}
@@ -73,6 +75,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
..aOM<$3.Address>(17, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(18, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..pc<$1.QuantityByUnit>(19, _omitFieldNames ? '' : 'TotalQuantities', $pb.PbFieldType.PM, protoName: 'TotalQuantities', subBuilder: $1.QuantityByUnit.create)
..aOS(20, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..hasRequiredFields = false
;
@@ -190,6 +193,16 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
/// Total volumetry in all commissions inside the truck.
@$pb.TagNumber(19)
$pb.PbList<$1.QuantityByUnit> get totalQuantities => $_getList(12);
/// time zone of the site on which the appointment is booked
@$pb.TagNumber(20)
$core.String get timeZone => $_getSZ(13);
@$pb.TagNumber(20)
set timeZone($core.String value) => $_setString(13, value);
@$pb.TagNumber(20)
$core.bool hasTimeZone() => $_has(13);
@$pb.TagNumber(20)
void clearTimeZone() => $_clearField(20);
}
/// Event message

View File

@@ -31,6 +31,7 @@ const AppointmentCreatedPayload$json = {
{'1': 'Address', '3': 17, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 18, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'TotalQuantities', '3': 19, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'TotalQuantities'},
{'1': 'TimeZone', '3': 20, '4': 1, '5': 9, '10': 'TimeZone'},
],
'7': {},
};
@@ -54,8 +55,8 @@ final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base6
'cnVjdGlvbkFjaxIYCgdBY3RvcklEGBAgASgJUgdBY3RvcklEEiYKB0FkZHJlc3MYESABKAsyDC'
'5hcGkuQWRkcmVzc1IHQWRkcmVzcxIaCghTaXRlTmFtZRgSIAEoCVIIU2l0ZU5hbWUSPQoPVG90'
'YWxRdWFudGl0aWVzGBMgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0Ug9Ub3RhbFF1YW50aXRpZX'
'M6PpJBIwohMg1FdmVudCBQYXlsb2Fk0gEPQXBwb2ludG1lbnRUeXBlorsYBUV2ZW50qLsYAbq7'
'GAdDcmVhdGVk');
'MSGgoIVGltZVpvbmUYFCABKAlSCFRpbWVab25lOj6SQSMKITINRXZlbnQgUGF5bG9hZNIBD0Fw'
'cG9pbnRtZW50VHlwZaK7GAVFdmVudKi7GAG6uxgHQ3JlYXRlZA==');
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
const AppointmentCreatedEvent$json = {

View File

@@ -2743,6 +2743,111 @@ class UpdateAppointmentRequest extends $pb.GeneratedMessage {
$pb.PbList<$3.CustomField> get customFields => $_getList(8);
}
class WMSUpdateAppointmentRequest extends $pb.GeneratedMessage {
factory WMSUpdateAppointmentRequest({
$3.RequestProjectHeader? header,
$core.String? appointmentID,
$core.Iterable<$2.Slot>? slots,
$core.Iterable<$2.WMSCommission>? commissions,
$core.String? actorID,
$core.String? timeZone,
$core.Iterable<$3.CustomField>? customFields,
}) {
final result = create();
if (header != null) result.header = header;
if (appointmentID != null) result.appointmentID = appointmentID;
if (slots != null) result.slots.addAll(slots);
if (commissions != null) result.commissions.addAll(commissions);
if (actorID != null) result.actorID = actorID;
if (timeZone != null) result.timeZone = timeZone;
if (customFields != null) result.customFields.addAll(customFields);
return result;
}
WMSUpdateAppointmentRequest._();
factory WMSUpdateAppointmentRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory WMSUpdateAppointmentRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'WMSUpdateAppointmentRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
..pc<$2.WMSCommission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.WMSCommission.create)
..aOS(5, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOS(8, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..pc<$3.CustomField>(9, _omitFieldNames ? '' : 'CustomFields', $pb.PbFieldType.PM, protoName: 'CustomFields', subBuilder: $3.CustomField.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
WMSUpdateAppointmentRequest clone() => WMSUpdateAppointmentRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
WMSUpdateAppointmentRequest copyWith(void Function(WMSUpdateAppointmentRequest) updates) => super.copyWith((message) => updates(message as WMSUpdateAppointmentRequest)) as WMSUpdateAppointmentRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static WMSUpdateAppointmentRequest create() => WMSUpdateAppointmentRequest._();
@$core.override
WMSUpdateAppointmentRequest createEmptyInstance() => create();
static $pb.PbList<WMSUpdateAppointmentRequest> createRepeated() => $pb.PbList<WMSUpdateAppointmentRequest>();
@$core.pragma('dart2js:noInline')
static WMSUpdateAppointmentRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<WMSUpdateAppointmentRequest>(create);
static WMSUpdateAppointmentRequest? _defaultInstance;
@$pb.TagNumber(1)
$3.RequestProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($3.RequestProjectHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$3.RequestProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$core.String get appointmentID => $_getSZ(1);
@$pb.TagNumber(2)
set appointmentID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasAppointmentID() => $_has(1);
@$pb.TagNumber(2)
void clearAppointmentID() => $_clearField(2);
/// The slots to book for the appointment
@$pb.TagNumber(3)
$pb.PbList<$2.Slot> get slots => $_getList(2);
/// The new Commissions for the appointment
@$pb.TagNumber(4)
$pb.PbList<$2.WMSCommission> get commissions => $_getList(3);
@$pb.TagNumber(5)
$core.String get actorID => $_getSZ(4);
@$pb.TagNumber(5)
set actorID($core.String value) => $_setString(4, value);
@$pb.TagNumber(5)
$core.bool hasActorID() => $_has(4);
@$pb.TagNumber(5)
void clearActorID() => $_clearField(5);
/// time zone, useful only if a WMS send a message
@$pb.TagNumber(8)
$core.String get timeZone => $_getSZ(5);
@$pb.TagNumber(8)
set timeZone($core.String value) => $_setString(5, value);
@$pb.TagNumber(8)
$core.bool hasTimeZone() => $_has(5);
@$pb.TagNumber(8)
void clearTimeZone() => $_clearField(8);
@$pb.TagNumber(9)
$pb.PbList<$3.CustomField> get customFields => $_getList(6);
}
/// ListUserSites
class ListUserSitesRequest extends $pb.GeneratedMessage {
factory ListUserSitesRequest({

View File

@@ -100,6 +100,10 @@ class SiteServiceClient extends $grpc.Client {
return $createUnaryCall(_$forceUpdateAppointment, request, options: options);
}
$grpc.ResponseFuture<$0.BookAppointmentResponse> wMSUpdateAppointment($0.WMSUpdateAppointmentRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$wMSUpdateAppointment, request, options: options);
}
$grpc.ResponseFuture<$0.BookAppointmentResponse> rescheduleAppointment($0.RescheduleAppointmentRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$rescheduleAppointment, request, options: options);
}
@@ -246,6 +250,10 @@ class SiteServiceClient extends $grpc.Client {
'/api.SiteService/ForceUpdateAppointment',
($0.UpdateAppointmentRequest value) => value.writeToBuffer(),
$0.BookAppointmentResponse.fromBuffer);
static final _$wMSUpdateAppointment = $grpc.ClientMethod<$0.WMSUpdateAppointmentRequest, $0.BookAppointmentResponse>(
'/api.SiteService/WMSUpdateAppointment',
($0.WMSUpdateAppointmentRequest value) => value.writeToBuffer(),
$0.BookAppointmentResponse.fromBuffer);
static final _$rescheduleAppointment = $grpc.ClientMethod<$0.RescheduleAppointmentRequest, $0.BookAppointmentResponse>(
'/api.SiteService/RescheduleAppointment',
($0.RescheduleAppointmentRequest value) => value.writeToBuffer(),
@@ -448,6 +456,13 @@ abstract class SiteServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.UpdateAppointmentRequest.fromBuffer(value),
($0.BookAppointmentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.WMSUpdateAppointmentRequest, $0.BookAppointmentResponse>(
'WMSUpdateAppointment',
wMSUpdateAppointment_Pre,
false,
false,
($core.List<$core.int> value) => $0.WMSUpdateAppointmentRequest.fromBuffer(value),
($0.BookAppointmentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.RescheduleAppointmentRequest, $0.BookAppointmentResponse>(
'RescheduleAppointment',
rescheduleAppointment_Pre,
@@ -685,6 +700,12 @@ abstract class SiteServiceBase extends $grpc.Service {
$async.Future<$0.BookAppointmentResponse> forceUpdateAppointment($grpc.ServiceCall call, $0.UpdateAppointmentRequest request);
$async.Future<$0.BookAppointmentResponse> wMSUpdateAppointment_Pre($grpc.ServiceCall $call, $async.Future<$0.WMSUpdateAppointmentRequest> $request) async {
return wMSUpdateAppointment($call, await $request);
}
$async.Future<$0.BookAppointmentResponse> wMSUpdateAppointment($grpc.ServiceCall call, $0.WMSUpdateAppointmentRequest request);
$async.Future<$0.BookAppointmentResponse> rescheduleAppointment_Pre($grpc.ServiceCall $call, $async.Future<$0.RescheduleAppointmentRequest> $request) async {
return rescheduleAppointment($call, await $request);
}

View File

@@ -724,6 +724,40 @@ final $typed_data.Uint8List updateAppointmentRequestDescriptor = $convert.base64
'CkLSAQZIZWFkZXLSAQ1BcHBvaW50bWVudElE0gEFU2xvdHPSAQtDb21taXNzaW9uc9IBB0FjdG'
'9ySUTSAQZFbWFpbHM=');
@$core.Deprecated('Use wMSUpdateAppointmentRequestDescriptor instead')
const WMSUpdateAppointmentRequest$json = {
'1': 'WMSUpdateAppointmentRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'AppointmentID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
{'1': 'Slots', '3': 3, '4': 3, '5': 11, '6': '.api.Slot', '8': {}, '10': 'Slots'},
{'1': 'Commissions', '3': 4, '4': 3, '5': 11, '6': '.api.WMSCommission', '8': {}, '10': 'Commissions'},
{'1': 'ActorID', '3': 5, '4': 1, '5': 9, '10': 'ActorID'},
{'1': 'TimeZone', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'TimeZone'},
{'1': 'CustomFields', '3': 9, '4': 3, '5': 11, '6': '.api.CustomField', '8': {}, '10': 'CustomFields'},
],
'7': {},
};
/// Descriptor for `WMSUpdateAppointmentRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List wMSUpdateAppointmentRequestDescriptor = $convert.base64Decode(
'ChtXTVNVcGRhdGVBcHBvaW50bWVudFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElsKDUFwcG9pbnRtZW50SUQYAiAB'
'KAlCNZJBKDIPWW91ciBpZGVudGlmaWVyShUiWW91cl9BcHBvaW50bWVudF9JRCL6QgdyBRABGM'
'ABUg1BcHBvaW50bWVudElEEnEKBVNsb3RzGAMgAygLMgkuYXBpLlNsb3RCUJJBRTIRQXBwb2lu'
'dG1lbnQgc2xvdHNKMFsiSm9obi5kb2VAcmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQHJlZmxleC'
'5jb20iXfpCBZIBAggBUgVTbG90cxKaAQoLQ29tbWlzc2lvbnMYBCADKAsyEi5hcGkuV01TQ29t'
'bWlzc2lvbkJkkkFZMiVDb250ZW50IG9mIHRoZSBhcHBvaW50bWVudCBieSBwcm9qZWN0SjBbIk'
'pvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl36QgWSAQIIAVIL'
'Q29tbWlzc2lvbnMSGAoHQWN0b3JJRBgFIAEoCVIHQWN0b3JJRBJTCghUaW1lWm9uZRgIIAEoCU'
'I3kkE0MjJUaW1lWm9uZSBpcyByZXF1aXJlZCBvbmx5IHdoZW4gYSBXTVMgY2FsbHMgdGhlIEFQ'
'SVIIVGltZVpvbmUS8gEKDEN1c3RvbUZpZWxkcxgJIAMoCzIQLmFwaS5DdXN0b21GaWVsZEK7AZ'
'JBtwEytAFBIGZyZWUtZm9ybSBrZXkvdmFsdWUgbWFwIHByb3ZpZGVkIGJ5IHRoZSBjbGllbnQu'
'IFRoZSBBUEkgc3RvcmVzIGFuZCByZXR1cm5zIHRoZXNlIGZpZWxkcyBhcy1pcy4gSW50ZW5kZW'
'Qgc29sZWx5IGZvciBjbGllbnQgdXNlOyB0aGUgQVBJIGRvZXMgbm90IGludGVycHJldCBvciB2'
'YWxpZGF0ZSB0aGUgY29udGVudC5SDEN1c3RvbUZpZWxkczo+kkE7CjnSAQZIZWFkZXLSAQ1BcH'
'BvaW50bWVudElE0gEFU2xvdHPSAQtDb21taXNzaW9uc9IBB0FjdG9ySUQ=');
@$core.Deprecated('Use listUserSitesRequestDescriptor instead')
const ListUserSitesRequest$json = {
'1': 'ListUserSitesRequest',

View File

@@ -1729,13 +1729,13 @@ class Commission extends $pb.GeneratedMessage {
factory Commission({
$core.String? projectID,
$core.String? orderID,
$core.Iterable<QuantityByUnit>? quantities,
$core.String? executionflowID,
$core.String? actorID,
}) {
final result = create();
if (projectID != null) result.projectID = projectID;
if (orderID != null) result.orderID = orderID;
if (quantities != null) result.quantities.addAll(quantities);
if (executionflowID != null) result.executionflowID = executionflowID;
if (actorID != null) result.actorID = actorID;
return result;
}
@@ -1748,7 +1748,7 @@ class Commission extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Commission', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
..aOS(3, _omitFieldNames ? '' : 'ExecutionflowID', protoName: 'ExecutionflowID')
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@@ -1788,6 +1788,88 @@ class Commission extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
void clearOrderID() => $_clearField(2);
@$pb.TagNumber(3)
$core.String get executionflowID => $_getSZ(2);
@$pb.TagNumber(3)
set executionflowID($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasExecutionflowID() => $_has(2);
@$pb.TagNumber(3)
void clearExecutionflowID() => $_clearField(3);
@$pb.TagNumber(4)
$core.String get actorID => $_getSZ(3);
@$pb.TagNumber(4)
set actorID($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasActorID() => $_has(3);
@$pb.TagNumber(4)
void clearActorID() => $_clearField(4);
}
class WMSCommission extends $pb.GeneratedMessage {
factory WMSCommission({
$core.String? projectID,
$core.String? orderID,
$core.Iterable<QuantityByUnit>? quantities,
$core.String? actorID,
}) {
final result = create();
if (projectID != null) result.projectID = projectID;
if (orderID != null) result.orderID = orderID;
if (quantities != null) result.quantities.addAll(quantities);
if (actorID != null) result.actorID = actorID;
return result;
}
WMSCommission._();
factory WMSCommission.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory WMSCommission.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'WMSCommission', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
..aOS(2, _omitFieldNames ? '' : 'OrderID', protoName: 'OrderID')
..pc<QuantityByUnit>(3, _omitFieldNames ? '' : 'Quantities', $pb.PbFieldType.PM, protoName: 'Quantities', subBuilder: QuantityByUnit.create)
..aOS(4, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
WMSCommission clone() => WMSCommission()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
WMSCommission copyWith(void Function(WMSCommission) updates) => super.copyWith((message) => updates(message as WMSCommission)) as WMSCommission;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static WMSCommission create() => WMSCommission._();
@$core.override
WMSCommission createEmptyInstance() => create();
static $pb.PbList<WMSCommission> createRepeated() => $pb.PbList<WMSCommission>();
@$core.pragma('dart2js:noInline')
static WMSCommission getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<WMSCommission>(create);
static WMSCommission? _defaultInstance;
@$pb.TagNumber(1)
$core.String get projectID => $_getSZ(0);
@$pb.TagNumber(1)
set projectID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasProjectID() => $_has(0);
@$pb.TagNumber(1)
void clearProjectID() => $_clearField(1);
@$pb.TagNumber(2)
$core.String get orderID => $_getSZ(1);
@$pb.TagNumber(2)
set orderID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasOrderID() => $_has(1);
@$pb.TagNumber(2)
void clearOrderID() => $_clearField(2);
@$pb.TagNumber(3)
$pb.PbList<QuantityByUnit> get quantities => $_getList(2);

View File

@@ -506,7 +506,7 @@ const Commission$json = {
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
{'1': 'ExecutionflowID', '3': 3, '4': 1, '5': 9, '10': 'ExecutionflowID'},
{'1': 'ActorID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
],
};
@@ -514,9 +514,26 @@ const Commission$json = {
/// Descriptor for `Commission`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List commissionDescriptor = $convert.base64Decode(
'CgpDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEhgKB0'
'9yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFudGl0'
'eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXMSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAV'
'IHQWN0b3JJRA==');
'9yZGVySUQYAiABKAlSB09yZGVySUQSKAoPRXhlY3V0aW9uZmxvd0lEGAMgASgJUg9FeGVjdXRp'
'b25mbG93SUQSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcgIQAVIHQWN0b3JJRA==');
@$core.Deprecated('Use wMSCommissionDescriptor instead')
const WMSCommission$json = {
'1': 'WMSCommission',
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
{'1': 'OrderID', '3': 2, '4': 1, '5': 9, '10': 'OrderID'},
{'1': 'Quantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'Quantities'},
{'1': 'ActorID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
],
};
/// Descriptor for `WMSCommission`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List wMSCommissionDescriptor = $convert.base64Decode(
'Cg1XTVNDb21taXNzaW9uEiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEh'
'gKB09yZGVySUQYAiABKAlSB09yZGVySUQSPQoKUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFu'
'dGl0eUJ5VW5pdEII+kIFkgECCAFSClF1YW50aXRpZXMSIQoHQWN0b3JJRBgEIAEoCUIH+kIEcg'
'IQAVIHQWN0b3JJRA==');
@$core.Deprecated('Use bookingDescriptor instead')
const Booking$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.12.0-SNAPSHOT-251212142946
version: 1.12.0-SNAPSHOT-251215132626
homepage: ''
publish_to: ''
repository: ''