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-250522075033
|
||||
Lib version: 1.11.0-SNAPSHOT-250522125331
|
||||
|
||||
@@ -106,7 +106,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
$core.Iterable<$75.Commission>? commissions,
|
||||
$core.Iterable<$70.QuantityByUnit>? quantitiesByUnits,
|
||||
$core.Iterable<$70.Segmentation>? segmentations,
|
||||
$core.Iterable<$70.CarrierInformation>? carrierInformation,
|
||||
$core.Iterable<CarrierInformationWithValue>? carrierInformation,
|
||||
$70.Slot? slot,
|
||||
$core.Iterable<$core.String>? emails,
|
||||
$75.AppointmentStatusStruct? status,
|
||||
@@ -151,7 +151,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
..pc<$75.Commission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $75.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.CarrierInformation>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $70.CarrierInformation.create)
|
||||
..pc<CarrierInformationWithValue>(5, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: CarrierInformationWithValue.create)
|
||||
..aOM<$70.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $70.Slot.create)
|
||||
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||
..aOM<$75.AppointmentStatusStruct>(8, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $75.AppointmentStatusStruct.create)
|
||||
@@ -199,7 +199,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
|
||||
|
||||
/// Required carrierInformation, some can be obligatory
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<$70.CarrierInformation> get carrierInformation => $_getList(4);
|
||||
$pb.PbList<CarrierInformationWithValue> get carrierInformation => $_getList(4);
|
||||
|
||||
/// The slot booked for the appointment
|
||||
@$pb.TagNumber(6)
|
||||
@@ -319,6 +319,68 @@ class AppointmentTriplet extends $pb.GeneratedMessage {
|
||||
Appointment ensureLastEvent() => $_ensure(2);
|
||||
}
|
||||
|
||||
class CarrierInformationWithValue extends $pb.GeneratedMessage {
|
||||
factory CarrierInformationWithValue({
|
||||
$70.CarrierInformation? carrierInformation,
|
||||
$3.ValueType? value,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (carrierInformation != null) {
|
||||
$result.carrierInformation = carrierInformation;
|
||||
}
|
||||
if (value != null) {
|
||||
$result.value = value;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CarrierInformationWithValue._() : super();
|
||||
factory CarrierInformationWithValue.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CarrierInformationWithValue.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CarrierInformationWithValue', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$70.CarrierInformation>(1, _omitFieldNames ? '' : 'CarrierInformation', protoName: 'CarrierInformation', subBuilder: $70.CarrierInformation.create)
|
||||
..aOM<$3.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $3.ValueType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformationWithValue clone() => CarrierInformationWithValue()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
CarrierInformationWithValue copyWith(void Function(CarrierInformationWithValue) updates) => super.copyWith((message) => updates(message as CarrierInformationWithValue)) as CarrierInformationWithValue;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue create() => CarrierInformationWithValue._();
|
||||
CarrierInformationWithValue createEmptyInstance() => create();
|
||||
static $pb.PbList<CarrierInformationWithValue> createRepeated() => $pb.PbList<CarrierInformationWithValue>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CarrierInformationWithValue getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CarrierInformationWithValue>(create);
|
||||
static CarrierInformationWithValue? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$70.CarrierInformation get carrierInformation => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set carrierInformation($70.CarrierInformation v) { $_setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCarrierInformation() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCarrierInformation() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$70.CarrierInformation ensureCarrierInformation() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$3.ValueType get value => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set value($3.ValueType v) { $_setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasValue() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearValue() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$3.ValueType ensureValue() => $_ensure(1);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -39,7 +39,7 @@ const AppointmentPayload$json = {
|
||||
{'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.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'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'},
|
||||
{'1': 'Emails', '3': 7, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
|
||||
{'1': 'Status', '3': 8, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '8': {}, '10': 'Status'},
|
||||
@@ -54,15 +54,15 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
|
||||
'9pbnRtZW50VHlwZVIPQXBwb2ludG1lbnRUeXBlEjEKC0NvbW1pc3Npb25zGAIgAygLMg8uYXBp'
|
||||
'LkNvbW1pc3Npb25SC0NvbW1pc3Npb25zEkEKEVF1YW50aXRpZXNCeVVuaXRzGAMgAygLMhMuYX'
|
||||
'BpLlF1YW50aXR5QnlVbml0UhFRdWFudGl0aWVzQnlVbml0cxI3Cg1TZWdtZW50YXRpb25zGAQg'
|
||||
'AygLMhEuYXBpLlNlZ21lbnRhdGlvblINU2VnbWVudGF0aW9ucxJHChJDYXJyaWVySW5mb3JtYX'
|
||||
'Rpb24YBSADKAsyFy5hcGkuQ2FycmllckluZm9ybWF0aW9uUhJDYXJyaWVySW5mb3JtYXRpb24S'
|
||||
'HQoEU2xvdBgGIAEoCzIJLmFwaS5TbG90UgRTbG90En0KBkVtYWlscxgHIAMoCUJlkkFRMh1NdX'
|
||||
'N0IGJlIGEgdmFsaWQgZW1haWwgYWRkcmVzc0owWyJKb2huLmRvZUByZWZsZXguY29tIiwgIndp'
|
||||
'bGwuc21pdGhAcmVmbGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscxJlCgZTdGF0dX'
|
||||
'MYCCABKAsyHC5hcGkuQXBwb2ludG1lbnRTdGF0dXNTdHJ1Y3RCL5JBGzIZU3RhdHVzIG9mIHRo'
|
||||
'ZSBhcHBvaW50bWVudPLBGA1TdGF0dXNVcGRhdGVkUgZTdGF0dXMSOwoMQ3JlYXRpb25EYXRlGA'
|
||||
'kgASgJQhf6QgVyA9ABAdrCGAsKCQoBKhIEZGF0ZVIMQ3JlYXRpb25EYXRlOhWSQRIKENIBDVNl'
|
||||
'Z21lbnRhdGlvbnM=');
|
||||
'AygLMhEuYXBpLlNlZ21lbnRhdGlvblINU2VnbWVudGF0aW9ucxJQChJDYXJyaWVySW5mb3JtYX'
|
||||
'Rpb24YBSADKAsyIC5hcGkuQ2FycmllckluZm9ybWF0aW9uV2l0aFZhbHVlUhJDYXJyaWVySW5m'
|
||||
'b3JtYXRpb24SHQoEU2xvdBgGIAEoCzIJLmFwaS5TbG90UgRTbG90En0KBkVtYWlscxgHIAMoCU'
|
||||
'JlkkFRMh1NdXN0IGJlIGEgdmFsaWQgZW1haWwgYWRkcmVzc0owWyJKb2huLmRvZUByZWZsZXgu'
|
||||
'Y29tIiwgIndpbGwuc21pdGhAcmVmbGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscx'
|
||||
'JlCgZTdGF0dXMYCCABKAsyHC5hcGkuQXBwb2ludG1lbnRTdGF0dXNTdHJ1Y3RCL5JBGzIZU3Rh'
|
||||
'dHVzIG9mIHRoZSBhcHBvaW50bWVudPLBGA1TdGF0dXNVcGRhdGVkUgZTdGF0dXMSOwoMQ3JlYX'
|
||||
'Rpb25EYXRlGAkgASgJQhf6QgVyA9ABAdrCGAsKCQoBKhIEZGF0ZVIMQ3JlYXRpb25EYXRlOhWS'
|
||||
'QRIKENIBDVNlZ21lbnRhdGlvbnM=');
|
||||
|
||||
@$core.Deprecated('Use appointmentTripletDescriptor instead')
|
||||
const AppointmentTriplet$json = {
|
||||
@@ -80,3 +80,18 @@ final $typed_data.Uint8List appointmentTripletDescriptor = $convert.base64Decode
|
||||
'IHQ3VycmVudBIsCghQcmV2aW91cxgCIAEoCzIQLmFwaS5BcHBvaW50bWVudFIIUHJldmlvdXMS'
|
||||
'LgoJTGFzdEV2ZW50GAMgASgLMhAuYXBpLkFwcG9pbnRtZW50UglMYXN0RXZlbnQ=');
|
||||
|
||||
@$core.Deprecated('Use carrierInformationWithValueDescriptor instead')
|
||||
const CarrierInformationWithValue$json = {
|
||||
'1': 'CarrierInformationWithValue',
|
||||
'2': [
|
||||
{'1': 'CarrierInformation', '3': 1, '4': 1, '5': 11, '6': '.api.CarrierInformation', '10': 'CarrierInformation'},
|
||||
{'1': 'Value', '3': 2, '4': 1, '5': 11, '6': '.api.ValueType', '10': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CarrierInformationWithValue`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List carrierInformationWithValueDescriptor = $convert.base64Decode(
|
||||
'ChtDYXJyaWVySW5mb3JtYXRpb25XaXRoVmFsdWUSRwoSQ2FycmllckluZm9ybWF0aW9uGAEgAS'
|
||||
'gLMhcuYXBpLkNhcnJpZXJJbmZvcm1hdGlvblISQ2FycmllckluZm9ybWF0aW9uEiQKBVZhbHVl'
|
||||
'GAIgASgLMg4uYXBpLlZhbHVlVHlwZVIFVmFsdWU=');
|
||||
|
||||
|
||||
@@ -438,16 +438,12 @@ class CreateSiteResponse extends $pb.GeneratedMessage {
|
||||
/// Get
|
||||
class GetSiteRequest extends $pb.GeneratedMessage {
|
||||
factory GetSiteRequest({
|
||||
$3.RequestOrganisationHeader? header,
|
||||
$core.String? iD,
|
||||
$3.RequestSiteHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetSiteRequest._() : super();
|
||||
@@ -455,8 +451,7 @@ class GetSiteRequest extends $pb.GeneratedMessage {
|
||||
factory GetSiteRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetSiteRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestOrganisationHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestOrganisationHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..aOM<$3.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestSiteHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -476,24 +471,15 @@ class GetSiteRequest extends $pb.GeneratedMessage {
|
||||
static GetSiteRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestOrganisationHeader get header => $_getN(0);
|
||||
$3.RequestSiteHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($3.RequestOrganisationHeader v) { $_setField(1, v); }
|
||||
set header($3.RequestSiteHeader v) { $_setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestOrganisationHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get iD => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
$3.RequestSiteHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
class GetSiteResponse extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -106,17 +106,15 @@ final $typed_data.Uint8List createSiteResponseDescriptor = $convert.base64Decode
|
||||
const GetSiteRequest$json = {
|
||||
'1': 'GetSiteRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestOrganisationHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getSiteRequestDescriptor = $convert.base64Decode(
|
||||
'Cg5HZXRTaXRlUmVxdWVzdBJACgZIZWFkZXIYASABKAsyHi5hcGkuUmVxdWVzdE9yZ2FuaXNhdG'
|
||||
'lvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQ6E5JB'
|
||||
'EAoO0gEGSGVhZGVy0gECSUQ=');
|
||||
'Cg5HZXRTaXRlUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdFNpdGVIZWFkZX'
|
||||
'JCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use getSiteResponseDescriptor instead')
|
||||
const GetSiteResponse$json = {
|
||||
|
||||
@@ -22,6 +22,7 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||
|
||||
export 'slotbooking.pbenum.dart';
|
||||
|
||||
/// avant la def de la sous structure
|
||||
class Unit extends $pb.GeneratedMessage {
|
||||
factory Unit({
|
||||
$core.String? unitID,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.11.0-SNAPSHOT-250522075033
|
||||
version: 1.11.0-SNAPSHOT-250522125331
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user