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-250605154859
|
||||
Lib version: 1.11.0-SNAPSHOT-250606082034
|
||||
|
||||
@@ -102,7 +102,6 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentPayload({
|
||||
$70.AppointmentType? appointmentType,
|
||||
$core.Iterable<$70.Commission>? commissions,
|
||||
$core.Iterable<$70.QuantityByUnit>? quantitiesByUnits,
|
||||
$core.Iterable<$70.Segmentation>? segmentations,
|
||||
$core.Iterable<$70.CarrierInformationWithValue>? carrierInformation,
|
||||
$70.Slot? slot,
|
||||
@@ -116,7 +115,6 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
if (commissions != null) result.commissions.addAll(commissions);
|
||||
if (quantitiesByUnits != null) result.quantitiesByUnits.addAll(quantitiesByUnits);
|
||||
if (segmentations != null) result.segmentations.addAll(segmentations);
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
if (slot != null) result.slot = slot;
|
||||
@@ -137,7 +135,6 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$70.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $70.AppointmentType.APPOINTMENTTYPE_UNKNOWN, valueOf: $70.AppointmentType.valueOf, enumValues: $70.AppointmentType.values)
|
||||
..pc<$70.Commission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $70.Commission.create)
|
||||
..pc<$70.QuantityByUnit>(3, _omitFieldNames ? '' : 'QuantitiesByUnits', $pb.PbFieldType.PM, protoName: 'QuantitiesByUnits', subBuilder: $70.QuantityByUnit.create)
|
||||
..pc<$70.Segmentation>(4, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $70.Segmentation.create)
|
||||
..pc<$70.CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformationWithValue.create)
|
||||
..aOM<$70.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $70.Slot.create)
|
||||
@@ -182,75 +179,71 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$70.Commission> get commissions => $_getList(1);
|
||||
|
||||
/// Cumulative quantity for all the commissions
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<$70.QuantityByUnit> get quantitiesByUnits => $_getList(2);
|
||||
|
||||
/// Set of segmentation constraining the slot booking
|
||||
@$pb.TagNumber(4)
|
||||
$pb.PbList<$70.Segmentation> get segmentations => $_getList(3);
|
||||
$pb.PbList<$70.Segmentation> get segmentations => $_getList(2);
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(3);
|
||||
|
||||
/// The slot booked for the appointment
|
||||
@$pb.TagNumber(6)
|
||||
$70.Slot get slot => $_getN(5);
|
||||
$70.Slot get slot => $_getN(4);
|
||||
@$pb.TagNumber(6)
|
||||
set slot($70.Slot value) => $_setField(6, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasSlot() => $_has(5);
|
||||
$core.bool hasSlot() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearSlot() => $_clearField(6);
|
||||
@$pb.TagNumber(6)
|
||||
$70.Slot ensureSlot() => $_ensure(5);
|
||||
$70.Slot ensureSlot() => $_ensure(4);
|
||||
|
||||
/// User mails being notified on this appointment
|
||||
/// TODO Need to add a structure to store platform user identifiers which can act on this appointment ?
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<$core.String> get emails => $_getList(6);
|
||||
$pb.PbList<$core.String> get emails => $_getList(5);
|
||||
|
||||
/// Appointment Status and status history
|
||||
@$pb.TagNumber(8)
|
||||
$75.AppointmentStatusStruct get status => $_getN(7);
|
||||
$75.AppointmentStatusStruct get status => $_getN(6);
|
||||
@$pb.TagNumber(8)
|
||||
set status($75.AppointmentStatusStruct value) => $_setField(8, value);
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasStatus() => $_has(7);
|
||||
$core.bool hasStatus() => $_has(6);
|
||||
@$pb.TagNumber(8)
|
||||
void clearStatus() => $_clearField(8);
|
||||
@$pb.TagNumber(8)
|
||||
$75.AppointmentStatusStruct ensureStatus() => $_ensure(7);
|
||||
$75.AppointmentStatusStruct ensureStatus() => $_ensure(6);
|
||||
|
||||
/// Creation date of the appointment
|
||||
@$pb.TagNumber(9)
|
||||
$core.String get creationDate => $_getSZ(8);
|
||||
$core.String get creationDate => $_getSZ(7);
|
||||
@$pb.TagNumber(9)
|
||||
set creationDate($core.String value) => $_setString(8, value);
|
||||
set creationDate($core.String value) => $_setString(7, value);
|
||||
@$pb.TagNumber(9)
|
||||
$core.bool hasCreationDate() => $_has(8);
|
||||
$core.bool hasCreationDate() => $_has(7);
|
||||
@$pb.TagNumber(9)
|
||||
void clearCreationDate() => $_clearField(9);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$pb.PbList<$3.MetadataElement> get metaData => $_getList(9);
|
||||
$pb.PbList<$3.MetadataElement> get metaData => $_getList(8);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.String get carrierID => $_getSZ(10);
|
||||
$core.String get carrierID => $_getSZ(9);
|
||||
@$pb.TagNumber(11)
|
||||
set carrierID($core.String value) => $_setString(10, value);
|
||||
set carrierID($core.String value) => $_setString(9, value);
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasCarrierID() => $_has(10);
|
||||
$core.bool hasCarrierID() => $_has(9);
|
||||
@$pb.TagNumber(11)
|
||||
void clearCarrierID() => $_clearField(11);
|
||||
|
||||
@$pb.TagNumber(12)
|
||||
$core.String get carrierName => $_getSZ(11);
|
||||
$core.String get carrierName => $_getSZ(10);
|
||||
@$pb.TagNumber(12)
|
||||
set carrierName($core.String value) => $_setString(11, value);
|
||||
set carrierName($core.String value) => $_setString(10, value);
|
||||
@$pb.TagNumber(12)
|
||||
$core.bool hasCarrierName() => $_has(11);
|
||||
$core.bool hasCarrierName() => $_has(10);
|
||||
@$pb.TagNumber(12)
|
||||
void clearCarrierName() => $_clearField(12);
|
||||
}
|
||||
|
||||
@@ -38,7 +38,6 @@ const AppointmentPayload$json = {
|
||||
'2': [
|
||||
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
|
||||
{'1': 'Commissions', '3': 2, '4': 3, '5': 11, '6': '.api.Commission', '10': 'Commissions'},
|
||||
{'1': 'QuantitiesByUnits', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'QuantitiesByUnits'},
|
||||
{'1': 'Segmentations', '3': 4, '4': 3, '5': 11, '6': '.api.Segmentation', '10': 'Segmentations'},
|
||||
{'1': 'CarrierInformation', '3': 5, '4': 3, '5': 11, '6': '.api.CarrierInformationWithValue', '10': 'CarrierInformation'},
|
||||
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
|
||||
@@ -56,22 +55,21 @@ const AppointmentPayload$json = {
|
||||
final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode(
|
||||
'ChJBcHBvaW50bWVudFBheWxvYWQSPgoPQXBwb2ludG1lbnRUeXBlGAEgASgOMhQuYXBpLkFwcG'
|
||||
'9pbnRtZW50VHlwZVIPQXBwb2ludG1lbnRUeXBlEjEKC0NvbW1pc3Npb25zGAIgAygLMg8uYXBp'
|
||||
'LkNvbW1pc3Npb25SC0NvbW1pc3Npb25zEkEKEVF1YW50aXRpZXNCeVVuaXRzGAMgAygLMhMuYX'
|
||||
'BpLlF1YW50aXR5QnlVbml0UhFRdWFudGl0aWVzQnlVbml0cxI3Cg1TZWdtZW50YXRpb25zGAQg'
|
||||
'AygLMhEuYXBpLlNlZ21lbnRhdGlvblINU2VnbWVudGF0aW9ucxJQChJDYXJyaWVySW5mb3JtYX'
|
||||
'Rpb24YBSADKAsyIC5hcGkuQ2FycmllckluZm9ybWF0aW9uV2l0aFZhbHVlUhJDYXJyaWVySW5m'
|
||||
'b3JtYXRpb24SHQoEU2xvdBgGIAEoCzIJLmFwaS5TbG90UgRTbG90En0KBkVtYWlscxgHIAMoCU'
|
||||
'JlkkFRMh1NdXN0IGJlIGEgdmFsaWQgZW1haWwgYWRkcmVzc0owWyJKb2huLmRvZUByZWZsZXgu'
|
||||
'Y29tIiwgIndpbGwuc21pdGhAcmVmbGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscx'
|
||||
'JlCgZTdGF0dXMYCCABKAsyHC5hcGkuQXBwb2ludG1lbnRTdGF0dXNTdHJ1Y3RCL5JBGzIZU3Rh'
|
||||
'dHVzIG9mIHRoZSBhcHBvaW50bWVudPLBGA1TdGF0dXNVcGRhdGVkUgZTdGF0dXMSOwoMQ3JlYX'
|
||||
'Rpb25EYXRlGAkgASgJQhf6QgVyA9ABAdrCGAsKCQoBKhIEZGF0ZVIMQ3JlYXRpb25EYXRlEscB'
|
||||
'CghNZXRhRGF0YRgKIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbnRClAGSQYUBMoIBTWV0YWRhdG'
|
||||
'EgYXJlIGNoYXJhY3RlcmlzdGljcyBzcGVjaWZpYyB0byB0aGUgc2l0ZS4gVGhleSBjYW4gYmUg'
|
||||
'b2Ygc2V2ZXJhbCBkYXRhIGZvcm0gKHN0cmluZywgaW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3'
|
||||
'IgdGltZXN0YW1wKcDBGAHqwRgDS2V5UghNZXRhRGF0YRIcCglDYXJyaWVySUQYCyABKAlSCUNh'
|
||||
'cnJpZXJJRBIgCgtDYXJyaWVyTmFtZRgMIAEoCVILQ2Fycmllck5hbWU6J5JBJAoi0gEPQXBwb2'
|
||||
'ludG1lbnRUeXBl0gENU2VnbWVudGF0aW9ucw==');
|
||||
'LkNvbW1pc3Npb25SC0NvbW1pc3Npb25zEjcKDVNlZ21lbnRhdGlvbnMYBCADKAsyES5hcGkuU2'
|
||||
'VnbWVudGF0aW9uUg1TZWdtZW50YXRpb25zElAKEkNhcnJpZXJJbmZvcm1hdGlvbhgFIAMoCzIg'
|
||||
'LmFwaS5DYXJyaWVySW5mb3JtYXRpb25XaXRoVmFsdWVSEkNhcnJpZXJJbmZvcm1hdGlvbhIdCg'
|
||||
'RTbG90GAYgASgLMgkuYXBpLlNsb3RSBFNsb3QSfQoGRW1haWxzGAcgAygJQmWSQVEyHU11c3Qg'
|
||||
'YmUgYSB2YWxpZCBlbWFpbCBhZGRyZXNzSjBbIkpvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC'
|
||||
'5zbWl0aEByZWZsZXguY29tIl36Qg6SAQsIASIHcgVgAfABAVIGRW1haWxzEmUKBlN0YXR1cxgI'
|
||||
'IAEoCzIcLmFwaS5BcHBvaW50bWVudFN0YXR1c1N0cnVjdEIvkkEbMhlTdGF0dXMgb2YgdGhlIG'
|
||||
'FwcG9pbnRtZW508sEYDVN0YXR1c1VwZGF0ZWRSBlN0YXR1cxI7CgxDcmVhdGlvbkRhdGUYCSAB'
|
||||
'KAlCF/pCBXID0AEB2sIYCwoJCgEqEgRkYXRlUgxDcmVhdGlvbkRhdGUSxwEKCE1ldGFEYXRhGA'
|
||||
'ogAygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudEKUAZJBhQEyggFNZXRhZGF0YSBhcmUgY2hhcmFj'
|
||||
'dGVyaXN0aWNzIHNwZWNpZmljIHRvIHRoZSBzaXRlLiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIG'
|
||||
'RhdGEgZm9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXAp'
|
||||
'wMEYAerBGANLZXlSCE1ldGFEYXRhEhwKCUNhcnJpZXJJRBgLIAEoCVIJQ2FycmllcklEEiAKC0'
|
||||
'NhcnJpZXJOYW1lGAwgASgJUgtDYXJyaWVyTmFtZTonkkEkCiLSAQ9BcHBvaW50bWVudFR5cGXS'
|
||||
'AQ1TZWdtZW50YXRpb25z');
|
||||
|
||||
@$core.Deprecated('Use appointmentTripletDescriptor instead')
|
||||
const AppointmentTriplet$json = {
|
||||
|
||||
@@ -24,7 +24,6 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCreatedPayload({
|
||||
$70.AppointmentType? appointmentType,
|
||||
$core.Iterable<$70.Commission>? commissions,
|
||||
$core.Iterable<$70.QuantityByUnit>? quantitiesByUnits,
|
||||
$core.Iterable<$70.Segmentation>? segmentations,
|
||||
$core.Iterable<$70.CarrierInformationWithValue>? carrierInformation,
|
||||
$70.Slot? slot,
|
||||
@@ -36,7 +35,6 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
if (commissions != null) result.commissions.addAll(commissions);
|
||||
if (quantitiesByUnits != null) result.quantitiesByUnits.addAll(quantitiesByUnits);
|
||||
if (segmentations != null) result.segmentations.addAll(segmentations);
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
if (slot != null) result.slot = slot;
|
||||
@@ -55,7 +53,6 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCreatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$70.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $70.AppointmentType.APPOINTMENTTYPE_UNKNOWN, valueOf: $70.AppointmentType.valueOf, enumValues: $70.AppointmentType.values)
|
||||
..pc<$70.Commission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $70.Commission.create)
|
||||
..pc<$70.QuantityByUnit>(3, _omitFieldNames ? '' : 'QuantitiesByUnits', $pb.PbFieldType.PM, protoName: 'QuantitiesByUnits', subBuilder: $70.QuantityByUnit.create)
|
||||
..pc<$70.Segmentation>(4, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $70.Segmentation.create)
|
||||
..pc<$70.CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformationWithValue.create)
|
||||
..aOM<$70.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $70.Slot.create)
|
||||
@@ -98,53 +95,49 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$70.Commission> get commissions => $_getList(1);
|
||||
|
||||
/// Cumulative quantity for all the commissions
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<$70.QuantityByUnit> get quantitiesByUnits => $_getList(2);
|
||||
|
||||
/// Set of segmentation constraining the slot booking
|
||||
@$pb.TagNumber(4)
|
||||
$pb.PbList<$70.Segmentation> get segmentations => $_getList(3);
|
||||
$pb.PbList<$70.Segmentation> get segmentations => $_getList(2);
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
$pb.PbList<$70.CarrierInformationWithValue> get carrierInformation => $_getList(3);
|
||||
|
||||
/// The slot booked for the appointment
|
||||
@$pb.TagNumber(6)
|
||||
$70.Slot get slot => $_getN(5);
|
||||
$70.Slot get slot => $_getN(4);
|
||||
@$pb.TagNumber(6)
|
||||
set slot($70.Slot value) => $_setField(6, value);
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasSlot() => $_has(5);
|
||||
$core.bool hasSlot() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearSlot() => $_clearField(6);
|
||||
@$pb.TagNumber(6)
|
||||
$70.Slot ensureSlot() => $_ensure(5);
|
||||
$70.Slot ensureSlot() => $_ensure(4);
|
||||
|
||||
/// User mails being notified on this appointment
|
||||
/// TODO Need to add a structure to store platform user identifiers which can act on this appointment ?
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<$core.String> get emails => $_getList(6);
|
||||
$pb.PbList<$core.String> get emails => $_getList(5);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$pb.PbList<$3.MetadataElement> get metaData => $_getList(7);
|
||||
$pb.PbList<$3.MetadataElement> get metaData => $_getList(6);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$core.String get carrierID => $_getSZ(8);
|
||||
$core.String get carrierID => $_getSZ(7);
|
||||
@$pb.TagNumber(10)
|
||||
set carrierID($core.String value) => $_setString(8, value);
|
||||
set carrierID($core.String value) => $_setString(7, value);
|
||||
@$pb.TagNumber(10)
|
||||
$core.bool hasCarrierID() => $_has(8);
|
||||
$core.bool hasCarrierID() => $_has(7);
|
||||
@$pb.TagNumber(10)
|
||||
void clearCarrierID() => $_clearField(10);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.String get carrierName => $_getSZ(9);
|
||||
$core.String get carrierName => $_getSZ(8);
|
||||
@$pb.TagNumber(11)
|
||||
set carrierName($core.String value) => $_setString(9, value);
|
||||
set carrierName($core.String value) => $_setString(8, value);
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasCarrierName() => $_has(9);
|
||||
$core.bool hasCarrierName() => $_has(8);
|
||||
@$pb.TagNumber(11)
|
||||
void clearCarrierName() => $_clearField(11);
|
||||
}
|
||||
|
||||
@@ -20,7 +20,6 @@ const AppointmentCreatedPayload$json = {
|
||||
'2': [
|
||||
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '8': {}, '10': 'AppointmentType'},
|
||||
{'1': 'Commissions', '3': 2, '4': 3, '5': 11, '6': '.api.Commission', '8': {}, '10': 'Commissions'},
|
||||
{'1': 'QuantitiesByUnits', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '8': {}, '10': 'QuantitiesByUnits'},
|
||||
{'1': 'Segmentations', '3': 4, '4': 3, '5': 11, '6': '.api.Segmentation', '10': 'Segmentations'},
|
||||
{'1': 'CarrierInformation', '3': 5, '4': 3, '5': 11, '6': '.api.CarrierInformationWithValue', '10': 'CarrierInformation'},
|
||||
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
|
||||
@@ -36,20 +35,19 @@ const AppointmentCreatedPayload$json = {
|
||||
final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChlBcHBvaW50bWVudENyZWF0ZWRQYXlsb2FkEkgKD0FwcG9pbnRtZW50VHlwZRgBIAEoDjIULm'
|
||||
'FwaS5BcHBvaW50bWVudFR5cGVCCPpCBYIBAhABUg9BcHBvaW50bWVudFR5cGUSOwoLQ29tbWlz'
|
||||
'c2lvbnMYAiADKAsyDy5hcGkuQ29tbWlzc2lvbkII+kIFkgECCAFSC0NvbW1pc3Npb25zEksKEV'
|
||||
'F1YW50aXRpZXNCeVVuaXRzGAMgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0Qgj6QgWSAQIIAVIR'
|
||||
'UXVhbnRpdGllc0J5VW5pdHMSNwoNU2VnbWVudGF0aW9ucxgEIAMoCzIRLmFwaS5TZWdtZW50YX'
|
||||
'Rpb25SDVNlZ21lbnRhdGlvbnMSUAoSQ2FycmllckluZm9ybWF0aW9uGAUgAygLMiAuYXBpLkNh'
|
||||
'cnJpZXJJbmZvcm1hdGlvbldpdGhWYWx1ZVISQ2FycmllckluZm9ybWF0aW9uEh0KBFNsb3QYBi'
|
||||
'ABKAsyCS5hcGkuU2xvdFIEU2xvdBJ9CgZFbWFpbHMYByADKAlCZZJBUTIdTXVzdCBiZSBhIHZh'
|
||||
'bGlkIGVtYWlsIGFkZHJlc3NKMFsiSm9obi5kb2VAcmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQH'
|
||||
'JlZmxleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHMSxwEKCE1ldGFEYXRhGAggAygL'
|
||||
'MhQuYXBpLk1ldGFkYXRhRWxlbWVudEKUAZJBhQEyggFNZXRhZGF0YSBhcmUgY2hhcmFjdGVyaX'
|
||||
'N0aWNzIHNwZWNpZmljIHRvIHRoZSBzaXRlLiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEg'
|
||||
'Zm9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAe'
|
||||
'rBGANLZXlSCE1ldGFEYXRhEhwKCUNhcnJpZXJJRBgKIAEoCVIJQ2FycmllcklEEiAKC0NhcnJp'
|
||||
'ZXJOYW1lGAsgASgJUgtDYXJyaWVyTmFtZTo+kkEjCiEyDUV2ZW50IFBheWxvYWTSAQ9BcHBvaW'
|
||||
'50bWVudFR5cGWiuxgFRXZlbnSouxgBursYB0NyZWF0ZWQ=');
|
||||
'c2lvbnMYAiADKAsyDy5hcGkuQ29tbWlzc2lvbkII+kIFkgECCAFSC0NvbW1pc3Npb25zEjcKDV'
|
||||
'NlZ21lbnRhdGlvbnMYBCADKAsyES5hcGkuU2VnbWVudGF0aW9uUg1TZWdtZW50YXRpb25zElAK'
|
||||
'EkNhcnJpZXJJbmZvcm1hdGlvbhgFIAMoCzIgLmFwaS5DYXJyaWVySW5mb3JtYXRpb25XaXRoVm'
|
||||
'FsdWVSEkNhcnJpZXJJbmZvcm1hdGlvbhIdCgRTbG90GAYgASgLMgkuYXBpLlNsb3RSBFNsb3QS'
|
||||
'fQoGRW1haWxzGAcgAygJQmWSQVEyHU11c3QgYmUgYSB2YWxpZCBlbWFpbCBhZGRyZXNzSjBbIk'
|
||||
'pvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl36Qg6SAQsIASIH'
|
||||
'cgVgAfABAVIGRW1haWxzEscBCghNZXRhRGF0YRgIIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbn'
|
||||
'RClAGSQYUBMoIBTWV0YWRhdGEgYXJlIGNoYXJhY3RlcmlzdGljcyBzcGVjaWZpYyB0byB0aGUg'
|
||||
'c2l0ZS4gVGhleSBjYW4gYmUgb2Ygc2V2ZXJhbCBkYXRhIGZvcm0gKHN0cmluZywgaW50ZWdlci'
|
||||
'wgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0YW1wKcDBGAHqwRgDS2V5UghNZXRhRGF0YRIcCglD'
|
||||
'YXJyaWVySUQYCiABKAlSCUNhcnJpZXJJRBIgCgtDYXJyaWVyTmFtZRgLIAEoCVILQ2Fycmllck'
|
||||
'5hbWU6PpJBIwohMg1FdmVudCBQYXlsb2Fk0gEPQXBwb2ludG1lbnRUeXBlorsYBUV2ZW50qLsY'
|
||||
'Abq7GAdDcmVhdGVk');
|
||||
|
||||
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
|
||||
const AppointmentCreatedEvent$json = {
|
||||
|
||||
@@ -879,125 +879,107 @@ class DeleteOnOrganisationResponse extends $pb.GeneratedMessage {
|
||||
static DeleteOnOrganisationResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
/// ImportClassicHolidays on a calendar at organisation level
|
||||
class ImportClassicHolidaysOnOrganisationRequest extends $pb.GeneratedMessage {
|
||||
factory ImportClassicHolidaysOnOrganisationRequest({
|
||||
Calendar? calendar,
|
||||
$core.String? country,
|
||||
$core.int? numberOfYears,
|
||||
/// GetPublicHolidays request
|
||||
class GetPublicHolidaysRequest extends $pb.GeneratedMessage {
|
||||
factory GetPublicHolidaysRequest({
|
||||
$core.String? countryCode,
|
||||
$core.int? upToYear,
|
||||
}) {
|
||||
final result = create();
|
||||
if (calendar != null) result.calendar = calendar;
|
||||
if (country != null) result.country = country;
|
||||
if (numberOfYears != null) result.numberOfYears = numberOfYears;
|
||||
if (countryCode != null) result.countryCode = countryCode;
|
||||
if (upToYear != null) result.upToYear = upToYear;
|
||||
return result;
|
||||
}
|
||||
|
||||
ImportClassicHolidaysOnOrganisationRequest._();
|
||||
GetPublicHolidaysRequest._();
|
||||
|
||||
factory ImportClassicHolidaysOnOrganisationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ImportClassicHolidaysOnOrganisationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
factory GetPublicHolidaysRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetPublicHolidaysRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ImportClassicHolidaysOnOrganisationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<Calendar>(1, _omitFieldNames ? '' : 'Calendar', protoName: 'Calendar', subBuilder: Calendar.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Country', protoName: 'Country')
|
||||
..a<$core.int>(3, _omitFieldNames ? '' : 'NumberOfYears', $pb.PbFieldType.OU3, protoName: 'NumberOfYears')
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPublicHolidaysRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'CountryCode', protoName: 'CountryCode')
|
||||
..a<$core.int>(2, _omitFieldNames ? '' : 'UpToYear', $pb.PbFieldType.OU3, protoName: 'UpToYear')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnOrganisationRequest clone() => ImportClassicHolidaysOnOrganisationRequest()..mergeFromMessage(this);
|
||||
GetPublicHolidaysRequest clone() => GetPublicHolidaysRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnOrganisationRequest copyWith(void Function(ImportClassicHolidaysOnOrganisationRequest) updates) => super.copyWith((message) => updates(message as ImportClassicHolidaysOnOrganisationRequest)) as ImportClassicHolidaysOnOrganisationRequest;
|
||||
GetPublicHolidaysRequest copyWith(void Function(GetPublicHolidaysRequest) updates) => super.copyWith((message) => updates(message as GetPublicHolidaysRequest)) as GetPublicHolidaysRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnOrganisationRequest create() => ImportClassicHolidaysOnOrganisationRequest._();
|
||||
static GetPublicHolidaysRequest create() => GetPublicHolidaysRequest._();
|
||||
@$core.override
|
||||
ImportClassicHolidaysOnOrganisationRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ImportClassicHolidaysOnOrganisationRequest> createRepeated() => $pb.PbList<ImportClassicHolidaysOnOrganisationRequest>();
|
||||
GetPublicHolidaysRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetPublicHolidaysRequest> createRepeated() => $pb.PbList<GetPublicHolidaysRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnOrganisationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ImportClassicHolidaysOnOrganisationRequest>(create);
|
||||
static ImportClassicHolidaysOnOrganisationRequest? _defaultInstance;
|
||||
static GetPublicHolidaysRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetPublicHolidaysRequest>(create);
|
||||
static GetPublicHolidaysRequest? _defaultInstance;
|
||||
|
||||
/// Country Code in <a href='https://en.wikipedia.org/wiki/ISO_3166-1'>ISO_3166-1 Alpha-2</a> format
|
||||
@$pb.TagNumber(1)
|
||||
Calendar get calendar => $_getN(0);
|
||||
$core.String get countryCode => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set calendar(Calendar value) => $_setField(1, value);
|
||||
set countryCode($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCalendar() => $_has(0);
|
||||
$core.bool hasCountryCode() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCalendar() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Calendar ensureCalendar() => $_ensure(0);
|
||||
void clearCountryCode() => $_clearField(1);
|
||||
|
||||
/// Year up to which generate the public holidays (from 2025 to 2199)
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get country => $_getSZ(1);
|
||||
$core.int get upToYear => $_getIZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set country($core.String value) => $_setString(1, value);
|
||||
set upToYear($core.int value) => $_setUnsignedInt32(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCountry() => $_has(1);
|
||||
$core.bool hasUpToYear() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearCountry() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.int get numberOfYears => $_getIZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set numberOfYears($core.int value) => $_setUnsignedInt32(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasNumberOfYears() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearNumberOfYears() => $_clearField(3);
|
||||
void clearUpToYear() => $_clearField(2);
|
||||
}
|
||||
|
||||
class ImportClassicHolidaysOnOrganisationResponse extends $pb.GeneratedMessage {
|
||||
factory ImportClassicHolidaysOnOrganisationResponse({
|
||||
Calendar? calendar,
|
||||
/// GetPublicHolidays response
|
||||
class GetPublicHolidaysResponse extends $pb.GeneratedMessage {
|
||||
factory GetPublicHolidaysResponse({
|
||||
$core.Iterable<ExceptionalClosure>? holidays,
|
||||
}) {
|
||||
final result = create();
|
||||
if (calendar != null) result.calendar = calendar;
|
||||
if (holidays != null) result.holidays.addAll(holidays);
|
||||
return result;
|
||||
}
|
||||
|
||||
ImportClassicHolidaysOnOrganisationResponse._();
|
||||
GetPublicHolidaysResponse._();
|
||||
|
||||
factory ImportClassicHolidaysOnOrganisationResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ImportClassicHolidaysOnOrganisationResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
factory GetPublicHolidaysResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory GetPublicHolidaysResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ImportClassicHolidaysOnOrganisationResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<Calendar>(1, _omitFieldNames ? '' : 'Calendar', protoName: 'Calendar', subBuilder: Calendar.create)
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPublicHolidaysResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<ExceptionalClosure>(1, _omitFieldNames ? '' : 'Holidays', $pb.PbFieldType.PM, protoName: 'Holidays', subBuilder: ExceptionalClosure.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnOrganisationResponse clone() => ImportClassicHolidaysOnOrganisationResponse()..mergeFromMessage(this);
|
||||
GetPublicHolidaysResponse clone() => GetPublicHolidaysResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnOrganisationResponse copyWith(void Function(ImportClassicHolidaysOnOrganisationResponse) updates) => super.copyWith((message) => updates(message as ImportClassicHolidaysOnOrganisationResponse)) as ImportClassicHolidaysOnOrganisationResponse;
|
||||
GetPublicHolidaysResponse copyWith(void Function(GetPublicHolidaysResponse) updates) => super.copyWith((message) => updates(message as GetPublicHolidaysResponse)) as GetPublicHolidaysResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnOrganisationResponse create() => ImportClassicHolidaysOnOrganisationResponse._();
|
||||
static GetPublicHolidaysResponse create() => GetPublicHolidaysResponse._();
|
||||
@$core.override
|
||||
ImportClassicHolidaysOnOrganisationResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ImportClassicHolidaysOnOrganisationResponse> createRepeated() => $pb.PbList<ImportClassicHolidaysOnOrganisationResponse>();
|
||||
GetPublicHolidaysResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<GetPublicHolidaysResponse> createRepeated() => $pb.PbList<GetPublicHolidaysResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnOrganisationResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ImportClassicHolidaysOnOrganisationResponse>(create);
|
||||
static ImportClassicHolidaysOnOrganisationResponse? _defaultInstance;
|
||||
static GetPublicHolidaysResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetPublicHolidaysResponse>(create);
|
||||
static GetPublicHolidaysResponse? _defaultInstance;
|
||||
|
||||
/// List of public holidays generated
|
||||
@$pb.TagNumber(1)
|
||||
Calendar get calendar => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set calendar(Calendar value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCalendar() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCalendar() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Calendar ensureCalendar() => $_ensure(0);
|
||||
$pb.PbList<ExceptionalClosure> get holidays => $_getList(0);
|
||||
}
|
||||
|
||||
/// Clone a calendar at organisation level
|
||||
@@ -1698,127 +1680,6 @@ class DeleteOnSiteResponse extends $pb.GeneratedMessage {
|
||||
static DeleteOnSiteResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
/// ImportClassicHolidays on a calendar at site level
|
||||
class ImportClassicHolidaysOnSiteRequest extends $pb.GeneratedMessage {
|
||||
factory ImportClassicHolidaysOnSiteRequest({
|
||||
Calendar? calendar,
|
||||
$core.String? country,
|
||||
$core.int? numberOfYears,
|
||||
}) {
|
||||
final result = create();
|
||||
if (calendar != null) result.calendar = calendar;
|
||||
if (country != null) result.country = country;
|
||||
if (numberOfYears != null) result.numberOfYears = numberOfYears;
|
||||
return result;
|
||||
}
|
||||
|
||||
ImportClassicHolidaysOnSiteRequest._();
|
||||
|
||||
factory ImportClassicHolidaysOnSiteRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ImportClassicHolidaysOnSiteRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ImportClassicHolidaysOnSiteRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<Calendar>(1, _omitFieldNames ? '' : 'Calendar', protoName: 'Calendar', subBuilder: Calendar.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Country', protoName: 'Country')
|
||||
..a<$core.int>(3, _omitFieldNames ? '' : 'NumberOfYears', $pb.PbFieldType.OU3, protoName: 'NumberOfYears')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnSiteRequest clone() => ImportClassicHolidaysOnSiteRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnSiteRequest copyWith(void Function(ImportClassicHolidaysOnSiteRequest) updates) => super.copyWith((message) => updates(message as ImportClassicHolidaysOnSiteRequest)) as ImportClassicHolidaysOnSiteRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnSiteRequest create() => ImportClassicHolidaysOnSiteRequest._();
|
||||
@$core.override
|
||||
ImportClassicHolidaysOnSiteRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ImportClassicHolidaysOnSiteRequest> createRepeated() => $pb.PbList<ImportClassicHolidaysOnSiteRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnSiteRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ImportClassicHolidaysOnSiteRequest>(create);
|
||||
static ImportClassicHolidaysOnSiteRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
Calendar get calendar => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set calendar(Calendar value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCalendar() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCalendar() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Calendar ensureCalendar() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get country => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set country($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCountry() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearCountry() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.int get numberOfYears => $_getIZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set numberOfYears($core.int value) => $_setUnsignedInt32(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasNumberOfYears() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearNumberOfYears() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ImportClassicHolidaysOnSiteResponse extends $pb.GeneratedMessage {
|
||||
factory ImportClassicHolidaysOnSiteResponse({
|
||||
Calendar? calendar,
|
||||
}) {
|
||||
final result = create();
|
||||
if (calendar != null) result.calendar = calendar;
|
||||
return result;
|
||||
}
|
||||
|
||||
ImportClassicHolidaysOnSiteResponse._();
|
||||
|
||||
factory ImportClassicHolidaysOnSiteResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ImportClassicHolidaysOnSiteResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ImportClassicHolidaysOnSiteResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<Calendar>(1, _omitFieldNames ? '' : 'Calendar', protoName: 'Calendar', subBuilder: Calendar.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnSiteResponse clone() => ImportClassicHolidaysOnSiteResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ImportClassicHolidaysOnSiteResponse copyWith(void Function(ImportClassicHolidaysOnSiteResponse) updates) => super.copyWith((message) => updates(message as ImportClassicHolidaysOnSiteResponse)) as ImportClassicHolidaysOnSiteResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnSiteResponse create() => ImportClassicHolidaysOnSiteResponse._();
|
||||
@$core.override
|
||||
ImportClassicHolidaysOnSiteResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ImportClassicHolidaysOnSiteResponse> createRepeated() => $pb.PbList<ImportClassicHolidaysOnSiteResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ImportClassicHolidaysOnSiteResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ImportClassicHolidaysOnSiteResponse>(create);
|
||||
static ImportClassicHolidaysOnSiteResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
Calendar get calendar => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set calendar(Calendar value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCalendar() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCalendar() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Calendar ensureCalendar() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// Clone a calendar at site level
|
||||
class CloneOnSiteRequest extends $pb.GeneratedMessage {
|
||||
factory CloneOnSiteRequest({
|
||||
|
||||
@@ -50,10 +50,6 @@ class CalendarServiceClient extends $grpc.Client {
|
||||
'/api.CalendarService/DeleteOnOrganisation',
|
||||
($13.DeleteOnOrganisationRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.DeleteOnOrganisationResponse.fromBuffer(value));
|
||||
static final _$importClassicHolidaysOnOrganisation = $grpc.ClientMethod<$13.ImportClassicHolidaysOnOrganisationRequest, $13.ImportClassicHolidaysOnOrganisationResponse>(
|
||||
'/api.CalendarService/ImportClassicHolidaysOnOrganisation',
|
||||
($13.ImportClassicHolidaysOnOrganisationRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.ImportClassicHolidaysOnOrganisationResponse.fromBuffer(value));
|
||||
static final _$createOnSite = $grpc.ClientMethod<$13.CreateOnSiteRequest, $13.CreateOnSiteResponse>(
|
||||
'/api.CalendarService/CreateOnSite',
|
||||
($13.CreateOnSiteRequest value) => value.writeToBuffer(),
|
||||
@@ -74,10 +70,10 @@ class CalendarServiceClient extends $grpc.Client {
|
||||
'/api.CalendarService/DeleteOnSite',
|
||||
($13.DeleteOnSiteRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.DeleteOnSiteResponse.fromBuffer(value));
|
||||
static final _$importClassicHolidaysOnSite = $grpc.ClientMethod<$13.ImportClassicHolidaysOnSiteRequest, $13.ImportClassicHolidaysOnSiteResponse>(
|
||||
'/api.CalendarService/ImportClassicHolidaysOnSite',
|
||||
($13.ImportClassicHolidaysOnSiteRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.ImportClassicHolidaysOnSiteResponse.fromBuffer(value));
|
||||
static final _$getPublicHolidays = $grpc.ClientMethod<$13.GetPublicHolidaysRequest, $13.GetPublicHolidaysResponse>(
|
||||
'/api.CalendarService/GetPublicHolidays',
|
||||
($13.GetPublicHolidaysRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.GetPublicHolidaysResponse.fromBuffer(value));
|
||||
|
||||
CalendarServiceClient(super.channel, {super.options, super.interceptors});
|
||||
|
||||
@@ -101,10 +97,6 @@ class CalendarServiceClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$deleteOnOrganisation, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$13.ImportClassicHolidaysOnOrganisationResponse> importClassicHolidaysOnOrganisation($13.ImportClassicHolidaysOnOrganisationRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$importClassicHolidaysOnOrganisation, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$13.CreateOnSiteResponse> createOnSite($13.CreateOnSiteRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$createOnSite, request, options: options);
|
||||
}
|
||||
@@ -125,8 +117,8 @@ class CalendarServiceClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$deleteOnSite, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$13.ImportClassicHolidaysOnSiteResponse> importClassicHolidaysOnSite($13.ImportClassicHolidaysOnSiteRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$importClassicHolidaysOnSite, request, options: options);
|
||||
$grpc.ResponseFuture<$13.GetPublicHolidaysResponse> getPublicHolidays($13.GetPublicHolidaysRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getPublicHolidays, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -170,13 +162,6 @@ abstract class CalendarServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.DeleteOnOrganisationRequest.fromBuffer(value),
|
||||
($13.DeleteOnOrganisationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$13.ImportClassicHolidaysOnOrganisationRequest, $13.ImportClassicHolidaysOnOrganisationResponse>(
|
||||
'ImportClassicHolidaysOnOrganisation',
|
||||
importClassicHolidaysOnOrganisation_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.ImportClassicHolidaysOnOrganisationRequest.fromBuffer(value),
|
||||
($13.ImportClassicHolidaysOnOrganisationResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$13.CreateOnSiteRequest, $13.CreateOnSiteResponse>(
|
||||
'CreateOnSite',
|
||||
createOnSite_Pre,
|
||||
@@ -212,13 +197,13 @@ abstract class CalendarServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.DeleteOnSiteRequest.fromBuffer(value),
|
||||
($13.DeleteOnSiteResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$13.ImportClassicHolidaysOnSiteRequest, $13.ImportClassicHolidaysOnSiteResponse>(
|
||||
'ImportClassicHolidaysOnSite',
|
||||
importClassicHolidaysOnSite_Pre,
|
||||
$addMethod($grpc.ServiceMethod<$13.GetPublicHolidaysRequest, $13.GetPublicHolidaysResponse>(
|
||||
'GetPublicHolidays',
|
||||
getPublicHolidays_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.ImportClassicHolidaysOnSiteRequest.fromBuffer(value),
|
||||
($13.ImportClassicHolidaysOnSiteResponse value) => value.writeToBuffer()));
|
||||
($core.List<$core.int> value) => $13.GetPublicHolidaysRequest.fromBuffer(value),
|
||||
($13.GetPublicHolidaysResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$13.CreateOnOrganisationResponse> createOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$13.CreateOnOrganisationRequest> $request) async {
|
||||
@@ -241,10 +226,6 @@ abstract class CalendarServiceBase extends $grpc.Service {
|
||||
return deleteOnOrganisation($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$13.ImportClassicHolidaysOnOrganisationResponse> importClassicHolidaysOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$13.ImportClassicHolidaysOnOrganisationRequest> $request) async {
|
||||
return importClassicHolidaysOnOrganisation($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$13.CreateOnSiteResponse> createOnSite_Pre($grpc.ServiceCall $call, $async.Future<$13.CreateOnSiteRequest> $request) async {
|
||||
return createOnSite($call, await $request);
|
||||
}
|
||||
@@ -265,8 +246,8 @@ abstract class CalendarServiceBase extends $grpc.Service {
|
||||
return deleteOnSite($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$13.ImportClassicHolidaysOnSiteResponse> importClassicHolidaysOnSite_Pre($grpc.ServiceCall $call, $async.Future<$13.ImportClassicHolidaysOnSiteRequest> $request) async {
|
||||
return importClassicHolidaysOnSite($call, await $request);
|
||||
$async.Future<$13.GetPublicHolidaysResponse> getPublicHolidays_Pre($grpc.ServiceCall $call, $async.Future<$13.GetPublicHolidaysRequest> $request) async {
|
||||
return getPublicHolidays($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$13.CreateOnOrganisationResponse> createOnOrganisation($grpc.ServiceCall call, $13.CreateOnOrganisationRequest request);
|
||||
@@ -274,11 +255,10 @@ abstract class CalendarServiceBase extends $grpc.Service {
|
||||
$async.Future<$13.ListOnOrganisationResponse> listOnOrganisation($grpc.ServiceCall call, $13.ListOnOrganisationRequest request);
|
||||
$async.Future<$13.UpdateOnOrganisationResponse> updateOnOrganisation($grpc.ServiceCall call, $13.UpdateOnOrganisationRequest request);
|
||||
$async.Future<$13.DeleteOnOrganisationResponse> deleteOnOrganisation($grpc.ServiceCall call, $13.DeleteOnOrganisationRequest request);
|
||||
$async.Future<$13.ImportClassicHolidaysOnOrganisationResponse> importClassicHolidaysOnOrganisation($grpc.ServiceCall call, $13.ImportClassicHolidaysOnOrganisationRequest request);
|
||||
$async.Future<$13.CreateOnSiteResponse> createOnSite($grpc.ServiceCall call, $13.CreateOnSiteRequest request);
|
||||
$async.Future<$13.GetOnSiteResponse> getOnSite($grpc.ServiceCall call, $13.GetOnSiteRequest request);
|
||||
$async.Future<$13.ListOnSiteResponse> listOnSite($grpc.ServiceCall call, $13.ListOnSiteRequest request);
|
||||
$async.Future<$13.UpdateOnSiteResponse> updateOnSite($grpc.ServiceCall call, $13.UpdateOnSiteRequest request);
|
||||
$async.Future<$13.DeleteOnSiteResponse> deleteOnSite($grpc.ServiceCall call, $13.DeleteOnSiteRequest request);
|
||||
$async.Future<$13.ImportClassicHolidaysOnSiteResponse> importClassicHolidaysOnSite($grpc.ServiceCall call, $13.ImportClassicHolidaysOnSiteRequest request);
|
||||
$async.Future<$13.GetPublicHolidaysResponse> getPublicHolidays($grpc.ServiceCall call, $13.GetPublicHolidaysRequest request);
|
||||
}
|
||||
|
||||
@@ -230,37 +230,33 @@ const DeleteOnOrganisationResponse$json = {
|
||||
final $typed_data.Uint8List deleteOnOrganisationResponseDescriptor = $convert.base64Decode(
|
||||
'ChxEZWxldGVPbk9yZ2FuaXNhdGlvblJlc3BvbnNl');
|
||||
|
||||
@$core.Deprecated('Use importClassicHolidaysOnOrganisationRequestDescriptor instead')
|
||||
const ImportClassicHolidaysOnOrganisationRequest$json = {
|
||||
'1': 'ImportClassicHolidaysOnOrganisationRequest',
|
||||
@$core.Deprecated('Use getPublicHolidaysRequestDescriptor instead')
|
||||
const GetPublicHolidaysRequest$json = {
|
||||
'1': 'GetPublicHolidaysRequest',
|
||||
'2': [
|
||||
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
|
||||
{'1': 'Country', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Country'},
|
||||
{'1': 'NumberOfYears', '3': 3, '4': 1, '5': 13, '10': 'NumberOfYears'},
|
||||
{'1': 'CountryCode', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'CountryCode'},
|
||||
{'1': 'UpToYear', '3': 2, '4': 1, '5': 13, '8': {}, '10': 'UpToYear'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ImportClassicHolidaysOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List importClassicHolidaysOnOrganisationRequestDescriptor = $convert.base64Decode(
|
||||
'CipJbXBvcnRDbGFzc2ljSG9saWRheXNPbk9yZ2FuaXNhdGlvblJlcXVlc3QSMwoIQ2FsZW5kYX'
|
||||
'IYASABKAsyDS5hcGkuQ2FsZW5kYXJCCPpCBYoBAhABUghDYWxlbmRhchKVAQoHQ291bnRyeRgC'
|
||||
'IAEoCUJ7kkFwMlhDb3VudHJ5IENvZGUgaW4gPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaW'
|
||||
'Eub3JnL3dpa2kvSVNPXzMxNjYtMSc+SVNPXzMxNjYtMTwvYT4gZm9ybWF0ShRbIkZSIiwgIkZS'
|
||||
'QSIsICIyNTAiXfpCBXID+AEBUgdDb3VudHJ5EiQKDU51bWJlck9mWWVhcnMYAyABKA1SDU51bW'
|
||||
'Jlck9mWWVhcnM=');
|
||||
/// Descriptor for `GetPublicHolidaysRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getPublicHolidaysRequestDescriptor = $convert.base64Decode(
|
||||
'ChhHZXRQdWJsaWNIb2xpZGF5c1JlcXVlc3QSNQoLQ291bnRyeUNvZGUYASABKAlCE5JBCEoGWy'
|
||||
'JGUiJd+kIFcgP4AQFSC0NvdW50cnlDb2RlEjQKCFVwVG9ZZWFyGAIgASgNQhiSQQpKCFsiMjA1'
|
||||
'MCJd+kIIKgYQmBEo6Q9SCFVwVG9ZZWFy');
|
||||
|
||||
@$core.Deprecated('Use importClassicHolidaysOnOrganisationResponseDescriptor instead')
|
||||
const ImportClassicHolidaysOnOrganisationResponse$json = {
|
||||
'1': 'ImportClassicHolidaysOnOrganisationResponse',
|
||||
@$core.Deprecated('Use getPublicHolidaysResponseDescriptor instead')
|
||||
const GetPublicHolidaysResponse$json = {
|
||||
'1': 'GetPublicHolidaysResponse',
|
||||
'2': [
|
||||
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
|
||||
{'1': 'Holidays', '3': 1, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'Holidays'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ImportClassicHolidaysOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List importClassicHolidaysOnOrganisationResponseDescriptor = $convert.base64Decode(
|
||||
'CitJbXBvcnRDbGFzc2ljSG9saWRheXNPbk9yZ2FuaXNhdGlvblJlc3BvbnNlEjMKCENhbGVuZG'
|
||||
'FyGAEgASgLMg0uYXBpLkNhbGVuZGFyQgj6QgWKAQIQAVIIQ2FsZW5kYXI=');
|
||||
/// Descriptor for `GetPublicHolidaysResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getPublicHolidaysResponseDescriptor = $convert.base64Decode(
|
||||
'ChlHZXRQdWJsaWNIb2xpZGF5c1Jlc3BvbnNlEjMKCEhvbGlkYXlzGAEgAygLMhcuYXBpLkV4Y2'
|
||||
'VwdGlvbmFsQ2xvc3VyZVIISG9saWRheXM=');
|
||||
|
||||
@$core.Deprecated('Use cloneOnOrganisationRequestDescriptor instead')
|
||||
const CloneOnOrganisationRequest$json = {
|
||||
@@ -443,38 +439,6 @@ const DeleteOnSiteResponse$json = {
|
||||
final $typed_data.Uint8List deleteOnSiteResponseDescriptor = $convert.base64Decode(
|
||||
'ChREZWxldGVPblNpdGVSZXNwb25zZQ==');
|
||||
|
||||
@$core.Deprecated('Use importClassicHolidaysOnSiteRequestDescriptor instead')
|
||||
const ImportClassicHolidaysOnSiteRequest$json = {
|
||||
'1': 'ImportClassicHolidaysOnSiteRequest',
|
||||
'2': [
|
||||
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
|
||||
{'1': 'Country', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Country'},
|
||||
{'1': 'NumberOfYears', '3': 3, '4': 1, '5': 13, '10': 'NumberOfYears'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ImportClassicHolidaysOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List importClassicHolidaysOnSiteRequestDescriptor = $convert.base64Decode(
|
||||
'CiJJbXBvcnRDbGFzc2ljSG9saWRheXNPblNpdGVSZXF1ZXN0EjMKCENhbGVuZGFyGAEgASgLMg'
|
||||
'0uYXBpLkNhbGVuZGFyQgj6QgWKAQIQAVIIQ2FsZW5kYXISlQEKB0NvdW50cnkYAiABKAlCe5JB'
|
||||
'cDJYQ291bnRyeSBDb2RlIGluIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aW'
|
||||
'tpL0lTT18zMTY2LTEnPklTT18zMTY2LTE8L2E+IGZvcm1hdEoUWyJGUiIsICJGUkEiLCAiMjUw'
|
||||
'Il36QgVyA/gBAVIHQ291bnRyeRIkCg1OdW1iZXJPZlllYXJzGAMgASgNUg1OdW1iZXJPZlllYX'
|
||||
'Jz');
|
||||
|
||||
@$core.Deprecated('Use importClassicHolidaysOnSiteResponseDescriptor instead')
|
||||
const ImportClassicHolidaysOnSiteResponse$json = {
|
||||
'1': 'ImportClassicHolidaysOnSiteResponse',
|
||||
'2': [
|
||||
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ImportClassicHolidaysOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List importClassicHolidaysOnSiteResponseDescriptor = $convert.base64Decode(
|
||||
'CiNJbXBvcnRDbGFzc2ljSG9saWRheXNPblNpdGVSZXNwb25zZRIzCghDYWxlbmRhchgBIAEoCz'
|
||||
'INLmFwaS5DYWxlbmRhckII+kIFigECEAFSCENhbGVuZGFy');
|
||||
|
||||
@$core.Deprecated('Use cloneOnSiteRequestDescriptor instead')
|
||||
const CloneOnSiteRequest$json = {
|
||||
'1': 'CloneOnSiteRequest',
|
||||
|
||||
@@ -346,9 +346,8 @@ final $typed_data.Uint8List bookAppointmentRequestDescriptor = $convert.base64De
|
||||
'MSfQoGRW1haWxzGAggAygJQmWSQVEyHU11c3QgYmUgYSB2YWxpZCBlbWFpbCBhZGRyZXNzSjBb'
|
||||
'IkpvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl36Qg6SAQsIAS'
|
||||
'IHcgVgAfABAVIGRW1haWxzEhwKCUNhcnJpZXJJRBgJIAEoCVIJQ2FycmllcklEEiAKC0NhcnJp'
|
||||
'ZXJOYW1lGAogASgJUgtDYXJyaWVyTmFtZTpnkkFkCmLSAQZIZWFkZXLSAQ9BcHBvaW50bWVudF'
|
||||
'R5cGXSAQtDb21taXNzaW9uc9IBEVF1YW50aXRpZXNCeVVuaXRz0gENU2VnbWVudGF0aW9uc9IB'
|
||||
'EkNhcnJpZXJJbmZvcm1hdGlvbg==');
|
||||
'ZXJOYW1lGAogASgJUgtDYXJyaWVyTmFtZTpTkkFQCk7SAQZIZWFkZXLSAQ9BcHBvaW50bWVudF'
|
||||
'R5cGXSAQtDb21taXNzaW9uc9IBDVNlZ21lbnRhdGlvbnPSARJDYXJyaWVySW5mb3JtYXRpb24=');
|
||||
|
||||
@$core.Deprecated('Use bookAppointmentResponseDescriptor instead')
|
||||
const BookAppointmentResponse$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.11.0-SNAPSHOT-250605154859
|
||||
version: 1.11.0-SNAPSHOT-250606082034
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user