You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.11.0-SNAPSHOT-250805131952
|
||||
Lib version: 1.11.0-SNAPSHOT-250805143451
|
||||
|
||||
@@ -2721,11 +2721,13 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
|
||||
$3.RequestSiteHeader? header,
|
||||
$core.String? appointmentID,
|
||||
$core.Iterable<$2.Slot>? slots,
|
||||
$core.String? timeZone,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (appointmentID != null) result.appointmentID = appointmentID;
|
||||
if (slots != null) result.slots.addAll(slots);
|
||||
if (timeZone != null) result.timeZone = timeZone;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -2738,6 +2740,7 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
|
||||
..aOM<$3.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestSiteHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2778,9 +2781,19 @@ class UpdateSlotAppointmentRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
void clearAppointmentID() => $_clearField(2);
|
||||
|
||||
/// The slot to book for the appointment
|
||||
/// The slots to book for the appointment
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<$2.Slot> get slots => $_getList(2);
|
||||
|
||||
/// time zone, useful only if a WMS use this API
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get timeZone => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set timeZone($core.String value) => $_setString(3, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasTimeZone() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearTimeZone() => $_clearField(4);
|
||||
}
|
||||
|
||||
class UpdateSlotAppointmentResponse extends $pb.GeneratedMessage {
|
||||
@@ -2835,12 +2848,14 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
|
||||
$core.String? appointmentID,
|
||||
$core.Iterable<$2.Slot>? slots,
|
||||
$core.Iterable<$2.Commission>? commissions,
|
||||
$core.String? timeZone,
|
||||
}) {
|
||||
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 (timeZone != null) result.timeZone = timeZone;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -2854,6 +2869,7 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
|
||||
..aOS(2, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
|
||||
..pc<$2.Slot>(3, _omitFieldNames ? '' : 'Slots', $pb.PbFieldType.PM, protoName: 'Slots', subBuilder: $2.Slot.create)
|
||||
..pc<$2.Commission>(4, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $2.Commission.create)
|
||||
..aOS(5, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2894,12 +2910,23 @@ class UpdateCommissionsAppointmentRequest extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
void clearAppointmentID() => $_clearField(2);
|
||||
|
||||
/// The slot to book for the appointment
|
||||
/// The slots to book for the appointment
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<$2.Slot> get slots => $_getList(2);
|
||||
|
||||
/// The modified Commissions for the appointment
|
||||
@$pb.TagNumber(4)
|
||||
$pb.PbList<$2.Commission> get commissions => $_getList(3);
|
||||
|
||||
/// time zone, useful only if a WMS use this API
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get timeZone => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set timeZone($core.String value) => $_setString(4, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasTimeZone() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearTimeZone() => $_clearField(5);
|
||||
}
|
||||
|
||||
class UpdateCommissionsAppointmentResponse extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -713,6 +713,7 @@ const UpdateSlotAppointmentRequest$json = {
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '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', '10': 'Slots'},
|
||||
{'1': 'TimeZone', '3': 4, '4': 1, '5': 9, '10': 'TimeZone'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -722,7 +723,8 @@ final $typed_data.Uint8List updateSlotAppointmentRequestDescriptor = $convert.ba
|
||||
'ChxVcGRhdGVTbG90QXBwb2ludG1lbnRSZXF1ZXN0EjgKBkhlYWRlchgBIAEoCzIWLmFwaS5SZX'
|
||||
'F1ZXN0U2l0ZUhlYWRlckII+kIFigECEAFSBkhlYWRlchItCg1BcHBvaW50bWVudElEGAIgASgJ'
|
||||
'Qgf6QgRyAhABUg1BcHBvaW50bWVudElEEh8KBVNsb3RzGAMgAygLMgkuYXBpLlNsb3RSBVNsb3'
|
||||
'RzOiaSQSMKIdIBBkhlYWRlctIBDUFwcG9pbnRtZW50SUTSAQVTbG90cw==');
|
||||
'RzEhoKCFRpbWVab25lGAQgASgJUghUaW1lWm9uZTomkkEjCiHSAQZIZWFkZXLSAQ1BcHBvaW50'
|
||||
'bWVudElE0gEFU2xvdHM=');
|
||||
|
||||
@$core.Deprecated('Use updateSlotAppointmentResponseDescriptor instead')
|
||||
const UpdateSlotAppointmentResponse$json = {
|
||||
@@ -745,6 +747,7 @@ const UpdateCommissionsAppointmentRequest$json = {
|
||||
{'1': 'AppointmentID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
|
||||
{'1': 'Slots', '3': 3, '4': 3, '5': 11, '6': '.api.Slot', '10': 'Slots'},
|
||||
{'1': 'Commissions', '3': 4, '4': 3, '5': 11, '6': '.api.Commission', '10': 'Commissions'},
|
||||
{'1': 'TimeZone', '3': 5, '4': 1, '5': 9, '10': 'TimeZone'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -755,7 +758,8 @@ final $typed_data.Uint8List updateCommissionsAppointmentRequestDescriptor = $con
|
||||
'5hcGkuUmVxdWVzdFNpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISLQoNQXBwb2ludG1lbnRJ'
|
||||
'RBgCIAEoCUIH+kIEcgIQAVINQXBwb2ludG1lbnRJRBIfCgVTbG90cxgDIAMoCzIJLmFwaS5TbG'
|
||||
'90UgVTbG90cxIxCgtDb21taXNzaW9ucxgEIAMoCzIPLmFwaS5Db21taXNzaW9uUgtDb21taXNz'
|
||||
'aW9uczomkkEjCiHSAQZIZWFkZXLSAQ1BcHBvaW50bWVudElE0gEFU2xvdHM=');
|
||||
'aW9ucxIaCghUaW1lWm9uZRgFIAEoCVIIVGltZVpvbmU6NJJBMQov0gEGSGVhZGVy0gENQXBwb2'
|
||||
'ludG1lbnRJRNIBBVNsb3Rz0gELQ29tbWlzc2lvbnM=');
|
||||
|
||||
@$core.Deprecated('Use updateCommissionsAppointmentResponseDescriptor instead')
|
||||
const UpdateCommissionsAppointmentResponse$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.11.0-SNAPSHOT-250805131952
|
||||
version: 1.11.0-SNAPSHOT-250805143451
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user