Latest generation

This commit is contained in:
ci core model
2025-10-14 10:59:36 +00:00
parent ef60b7be48
commit 5f186b3419
5 changed files with 227 additions and 89 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.12.0-SNAPSHOT-251014080943
Lib version: 1.12.0-SNAPSHOT-251014105911

View File

@@ -3184,53 +3184,55 @@ class SetSiteAliasRequest extends $pb.GeneratedMessage {
SiteActor ensureSiteActor() => $_ensure(0);
}
class NameID extends $pb.GeneratedMessage {
factory NameID({
$core.String? projectID,
class SegmentationsSettings extends $pb.GeneratedMessage {
factory SegmentationsSettings({
$2.ProjectAuthorisation? authorisation,
$core.String? name,
}) {
final result = create();
if (projectID != null) result.projectID = projectID;
if (authorisation != null) result.authorisation = authorisation;
if (name != null) result.name = name;
return result;
}
NameID._();
SegmentationsSettings._();
factory NameID.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory NameID.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
factory SegmentationsSettings.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SegmentationsSettings.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NameID', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsSettings', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.ProjectAuthorisation>(1, _omitFieldNames ? '' : 'Authorisation', protoName: 'Authorisation', subBuilder: $2.ProjectAuthorisation.create)
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
NameID clone() => NameID()..mergeFromMessage(this);
SegmentationsSettings clone() => SegmentationsSettings()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
NameID copyWith(void Function(NameID) updates) => super.copyWith((message) => updates(message as NameID)) as NameID;
SegmentationsSettings copyWith(void Function(SegmentationsSettings) updates) => super.copyWith((message) => updates(message as SegmentationsSettings)) as SegmentationsSettings;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static NameID create() => NameID._();
static SegmentationsSettings create() => SegmentationsSettings._();
@$core.override
NameID createEmptyInstance() => create();
static $pb.PbList<NameID> createRepeated() => $pb.PbList<NameID>();
SegmentationsSettings createEmptyInstance() => create();
static $pb.PbList<SegmentationsSettings> createRepeated() => $pb.PbList<SegmentationsSettings>();
@$core.pragma('dart2js:noInline')
static NameID getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NameID>(create);
static NameID? _defaultInstance;
static SegmentationsSettings getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SegmentationsSettings>(create);
static SegmentationsSettings? _defaultInstance;
@$pb.TagNumber(1)
$core.String get projectID => $_getSZ(0);
$2.ProjectAuthorisation get authorisation => $_getN(0);
@$pb.TagNumber(1)
set projectID($core.String value) => $_setString(0, value);
set authorisation($2.ProjectAuthorisation value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasProjectID() => $_has(0);
$core.bool hasAuthorisation() => $_has(0);
@$pb.TagNumber(1)
void clearProjectID() => $_clearField(1);
void clearAuthorisation() => $_clearField(1);
@$pb.TagNumber(1)
$2.ProjectAuthorisation ensureAuthorisation() => $_ensure(0);
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@@ -3245,7 +3247,7 @@ class NameID extends $pb.GeneratedMessage {
class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
factory ListOfSitesPerOrganisation({
$core.String? organisationID,
$core.Iterable<NameID>? projects,
$core.Iterable<SegmentationsSettings>? projects,
}) {
final result = create();
if (organisationID != null) result.organisationID = organisationID;
@@ -3260,7 +3262,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListOfSitesPerOrganisation', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..pc<NameID>(2, _omitFieldNames ? '' : 'Projects', $pb.PbFieldType.PM, protoName: 'Projects', subBuilder: NameID.create)
..pc<SegmentationsSettings>(2, _omitFieldNames ? '' : 'Projects', $pb.PbFieldType.PM, protoName: 'Projects', subBuilder: SegmentationsSettings.create)
..hasRequiredFields = false
;
@@ -3291,7 +3293,7 @@ class ListOfSitesPerOrganisation extends $pb.GeneratedMessage {
void clearOrganisationID() => $_clearField(1);
@$pb.TagNumber(2)
$pb.PbList<NameID> get projects => $_getList(1);
$pb.PbList<SegmentationsSettings> get projects => $_getList(1);
}
class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {
@@ -3342,6 +3344,46 @@ class ListSitesAuthorizedForBookingRequest extends $pb.GeneratedMessage {
$3.RequestProjectHeader ensureHeader() => $_ensure(0);
}
class ListSitesAuthorizedForBookingResponse extends $pb.GeneratedMessage {
factory ListSitesAuthorizedForBookingResponse({
$core.Iterable<ListOfSitesPerOrganisation>? listOfSitesPerOrganisations,
}) {
final result = create();
if (listOfSitesPerOrganisations != null) result.listOfSitesPerOrganisations.addAll(listOfSitesPerOrganisations);
return result;
}
ListSitesAuthorizedForBookingResponse._();
factory ListSitesAuthorizedForBookingResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListSitesAuthorizedForBookingResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSitesAuthorizedForBookingResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<ListOfSitesPerOrganisation>(1, _omitFieldNames ? '' : 'ListOfSitesPerOrganisations', $pb.PbFieldType.PM, protoName: 'ListOfSitesPerOrganisations', subBuilder: ListOfSitesPerOrganisation.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListSitesAuthorizedForBookingResponse clone() => ListSitesAuthorizedForBookingResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListSitesAuthorizedForBookingResponse copyWith(void Function(ListSitesAuthorizedForBookingResponse) updates) => super.copyWith((message) => updates(message as ListSitesAuthorizedForBookingResponse)) as ListSitesAuthorizedForBookingResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListSitesAuthorizedForBookingResponse create() => ListSitesAuthorizedForBookingResponse._();
@$core.override
ListSitesAuthorizedForBookingResponse createEmptyInstance() => create();
static $pb.PbList<ListSitesAuthorizedForBookingResponse> createRepeated() => $pb.PbList<ListSitesAuthorizedForBookingResponse>();
@$core.pragma('dart2js:noInline')
static ListSitesAuthorizedForBookingResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSitesAuthorizedForBookingResponse>(create);
static ListSitesAuthorizedForBookingResponse? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<ListOfSitesPerOrganisation> get listOfSitesPerOrganisations => $_getList(0);
}
class SetSiteAliasResponse extends $pb.GeneratedMessage {
factory SetSiteAliasResponse({
SiteActor? siteActor,
@@ -3479,46 +3521,6 @@ class ClearSiteAliasResponse extends $pb.GeneratedMessage {
static ClearSiteAliasResponse? _defaultInstance;
}
class ListSitesAuthorizedForBookingResponse extends $pb.GeneratedMessage {
factory ListSitesAuthorizedForBookingResponse({
$core.Iterable<ListOfSitesPerOrganisation>? listOfSitesPerOrganisations,
}) {
final result = create();
if (listOfSitesPerOrganisations != null) result.listOfSitesPerOrganisations.addAll(listOfSitesPerOrganisations);
return result;
}
ListSitesAuthorizedForBookingResponse._();
factory ListSitesAuthorizedForBookingResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListSitesAuthorizedForBookingResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSitesAuthorizedForBookingResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<ListOfSitesPerOrganisation>(1, _omitFieldNames ? '' : 'ListOfSitesPerOrganisations', $pb.PbFieldType.PM, protoName: 'ListOfSitesPerOrganisations', subBuilder: ListOfSitesPerOrganisation.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListSitesAuthorizedForBookingResponse clone() => ListSitesAuthorizedForBookingResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListSitesAuthorizedForBookingResponse copyWith(void Function(ListSitesAuthorizedForBookingResponse) updates) => super.copyWith((message) => updates(message as ListSitesAuthorizedForBookingResponse)) as ListSitesAuthorizedForBookingResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListSitesAuthorizedForBookingResponse create() => ListSitesAuthorizedForBookingResponse._();
@$core.override
ListSitesAuthorizedForBookingResponse createEmptyInstance() => create();
static $pb.PbList<ListSitesAuthorizedForBookingResponse> createRepeated() => $pb.PbList<ListSitesAuthorizedForBookingResponse>();
@$core.pragma('dart2js:noInline')
static ListSitesAuthorizedForBookingResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSitesAuthorizedForBookingResponse>(create);
static ListSitesAuthorizedForBookingResponse? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<ListOfSitesPerOrganisation> get listOfSitesPerOrganisations => $_getList(0);
}
class GetBasicSettingsRequest extends $pb.GeneratedMessage {
factory GetBasicSettingsRequest({
$3.RequestProjectHeader? header,
@@ -3664,6 +3666,94 @@ class GetBasicSettingsResponse extends $pb.GeneratedMessage {
$pb.PbList<$core.String> get emails => $_getList(5);
}
class GetUnitsRequest extends $pb.GeneratedMessage {
factory GetUnitsRequest({
$3.RequestProjectHeader? header,
}) {
final result = create();
if (header != null) result.header = header;
return result;
}
GetUnitsRequest._();
factory GetUnitsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetUnitsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetUnitsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetUnitsRequest clone() => GetUnitsRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetUnitsRequest copyWith(void Function(GetUnitsRequest) updates) => super.copyWith((message) => updates(message as GetUnitsRequest)) as GetUnitsRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetUnitsRequest create() => GetUnitsRequest._();
@$core.override
GetUnitsRequest createEmptyInstance() => create();
static $pb.PbList<GetUnitsRequest> createRepeated() => $pb.PbList<GetUnitsRequest>();
@$core.pragma('dart2js:noInline')
static GetUnitsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetUnitsRequest>(create);
static GetUnitsRequest? _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);
}
class GetUnitsResponse extends $pb.GeneratedMessage {
factory GetUnitsResponse({
$core.Iterable<$2.Unit>? units,
}) {
final result = create();
if (units != null) result.units.addAll(units);
return result;
}
GetUnitsResponse._();
factory GetUnitsResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetUnitsResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetUnitsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.Unit>(1, _omitFieldNames ? '' : 'Units', $pb.PbFieldType.PM, protoName: 'Units', subBuilder: $2.Unit.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetUnitsResponse clone() => GetUnitsResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetUnitsResponse copyWith(void Function(GetUnitsResponse) updates) => super.copyWith((message) => updates(message as GetUnitsResponse)) as GetUnitsResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetUnitsResponse create() => GetUnitsResponse._();
@$core.override
GetUnitsResponse createEmptyInstance() => create();
static $pb.PbList<GetUnitsResponse> createRepeated() => $pb.PbList<GetUnitsResponse>();
@$core.pragma('dart2js:noInline')
static GetUnitsResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetUnitsResponse>(create);
static GetUnitsResponse? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$2.Unit> get units => $_getList(0);
}
class GetPossibleSegmentationOnSiteForBookingRequest extends $pb.GeneratedMessage {
factory GetPossibleSegmentationOnSiteForBookingRequest({
$3.RequestProjectHeader? header,

View File

@@ -108,6 +108,10 @@ class SiteServiceClient extends $grpc.Client {
return $createUnaryCall(_$createSettingsV2, request, options: options);
}
$grpc.ResponseFuture<$0.GetUnitsResponse> getUnits($0.GetUnitsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getUnits, request, options: options);
}
$grpc.ResponseFuture<$0.GetBasicSettingsResponse> getBasicSettings($0.GetBasicSettingsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getBasicSettings, request, options: options);
}
@@ -214,6 +218,10 @@ class SiteServiceClient extends $grpc.Client {
'/api.SiteService/CreateSettingsV2',
($0.CreateSettingsRequest value) => value.writeToBuffer(),
$0.CreateSettingsResponse.fromBuffer);
static final _$getUnits = $grpc.ClientMethod<$0.GetUnitsRequest, $0.GetUnitsResponse>(
'/api.SiteService/GetUnits',
($0.GetUnitsRequest value) => value.writeToBuffer(),
$0.GetUnitsResponse.fromBuffer);
static final _$getBasicSettings = $grpc.ClientMethod<$0.GetBasicSettingsRequest, $0.GetBasicSettingsResponse>(
'/api.SiteService/GetBasicSettings',
($0.GetBasicSettingsRequest value) => value.writeToBuffer(),
@@ -382,6 +390,13 @@ abstract class SiteServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.CreateSettingsRequest.fromBuffer(value),
($0.CreateSettingsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetUnitsRequest, $0.GetUnitsResponse>(
'GetUnits',
getUnits_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetUnitsRequest.fromBuffer(value),
($0.GetUnitsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetBasicSettingsRequest, $0.GetBasicSettingsResponse>(
'GetBasicSettings',
getBasicSettings_Pre,
@@ -547,6 +562,12 @@ abstract class SiteServiceBase extends $grpc.Service {
$async.Future<$0.CreateSettingsResponse> createSettingsV2($grpc.ServiceCall call, $0.CreateSettingsRequest request);
$async.Future<$0.GetUnitsResponse> getUnits_Pre($grpc.ServiceCall $call, $async.Future<$0.GetUnitsRequest> $request) async {
return getUnits($call, await $request);
}
$async.Future<$0.GetUnitsResponse> getUnits($grpc.ServiceCall call, $0.GetUnitsRequest request);
$async.Future<$0.GetBasicSettingsResponse> getBasicSettings_Pre($grpc.ServiceCall $call, $async.Future<$0.GetBasicSettingsRequest> $request) async {
return getBasicSettings($call, await $request);
}

View File

@@ -803,33 +803,34 @@ final $typed_data.Uint8List setSiteAliasRequestDescriptor = $convert.base64Decod
'ChNTZXRTaXRlQWxpYXNSZXF1ZXN0EiwKCVNpdGVBY3RvchgBIAEoCzIOLmFwaS5TaXRlQWN0b3'
'JSCVNpdGVBY3RvcjoRkkEOCgzSAQlTaXRlQWN0b3I=');
@$core.Deprecated('Use nameIDDescriptor instead')
const NameID$json = {
'1': 'NameID',
@$core.Deprecated('Use segmentationsSettingsDescriptor instead')
const SegmentationsSettings$json = {
'1': 'SegmentationsSettings',
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '10': 'ProjectID'},
{'1': 'Authorisation', '3': 1, '4': 1, '5': 11, '6': '.api.ProjectAuthorisation', '10': 'Authorisation'},
{'1': 'Name', '3': 2, '4': 1, '5': 9, '10': 'Name'},
],
};
/// Descriptor for `NameID`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List nameIDDescriptor = $convert.base64Decode(
'CgZOYW1lSUQSHAoJUHJvamVjdElEGAEgASgJUglQcm9qZWN0SUQSEgoETmFtZRgCIAEoCVIETm'
'FtZQ==');
/// Descriptor for `SegmentationsSettings`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List segmentationsSettingsDescriptor = $convert.base64Decode(
'ChVTZWdtZW50YXRpb25zU2V0dGluZ3MSPwoNQXV0aG9yaXNhdGlvbhgBIAEoCzIZLmFwaS5Qcm'
'9qZWN0QXV0aG9yaXNhdGlvblINQXV0aG9yaXNhdGlvbhISCgROYW1lGAIgASgJUgROYW1l');
@$core.Deprecated('Use listOfSitesPerOrganisationDescriptor instead')
const ListOfSitesPerOrganisation$json = {
'1': 'ListOfSitesPerOrganisation',
'2': [
{'1': 'OrganisationID', '3': 1, '4': 1, '5': 9, '10': 'OrganisationID'},
{'1': 'Projects', '3': 2, '4': 3, '5': 11, '6': '.api.NameID', '10': 'Projects'},
{'1': 'Projects', '3': 2, '4': 3, '5': 11, '6': '.api.SegmentationsSettings', '10': 'Projects'},
],
};
/// Descriptor for `ListOfSitesPerOrganisation`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listOfSitesPerOrganisationDescriptor = $convert.base64Decode(
'ChpMaXN0T2ZTaXRlc1Blck9yZ2FuaXNhdGlvbhImCg5PcmdhbmlzYXRpb25JRBgBIAEoCVIOT3'
'JnYW5pc2F0aW9uSUQSJwoIUHJvamVjdHMYAiADKAsyCy5hcGkuTmFtZUlEUghQcm9qZWN0cw==');
'JnYW5pc2F0aW9uSUQSNgoIUHJvamVjdHMYAiADKAsyGi5hcGkuU2VnbWVudGF0aW9uc1NldHRp'
'bmdzUghQcm9qZWN0cw==');
@$core.Deprecated('Use listSitesAuthorizedForBookingRequestDescriptor instead')
const ListSitesAuthorizedForBookingRequest$json = {
@@ -846,6 +847,20 @@ final $typed_data.Uint8List listSitesAuthorizedForBookingRequestDescriptor = $co
'kuYXBpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhl'
'YWRlcg==');
@$core.Deprecated('Use listSitesAuthorizedForBookingResponseDescriptor instead')
const ListSitesAuthorizedForBookingResponse$json = {
'1': 'ListSitesAuthorizedForBookingResponse',
'2': [
{'1': 'ListOfSitesPerOrganisations', '3': 1, '4': 3, '5': 11, '6': '.api.ListOfSitesPerOrganisation', '10': 'ListOfSitesPerOrganisations'},
],
};
/// Descriptor for `ListSitesAuthorizedForBookingResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSitesAuthorizedForBookingResponseDescriptor = $convert.base64Decode(
'CiVMaXN0U2l0ZXNBdXRob3JpemVkRm9yQm9va2luZ1Jlc3BvbnNlEmEKG0xpc3RPZlNpdGVzUG'
'VyT3JnYW5pc2F0aW9ucxgBIAMoCzIfLmFwaS5MaXN0T2ZTaXRlc1Blck9yZ2FuaXNhdGlvblIb'
'TGlzdE9mU2l0ZXNQZXJPcmdhbmlzYXRpb25z');
@$core.Deprecated('Use setSiteAliasResponseDescriptor instead')
const SetSiteAliasResponse$json = {
'1': 'SetSiteAliasResponse',
@@ -884,20 +899,6 @@ const ClearSiteAliasResponse$json = {
final $typed_data.Uint8List clearSiteAliasResponseDescriptor = $convert.base64Decode(
'ChZDbGVhclNpdGVBbGlhc1Jlc3BvbnNl');
@$core.Deprecated('Use listSitesAuthorizedForBookingResponseDescriptor instead')
const ListSitesAuthorizedForBookingResponse$json = {
'1': 'ListSitesAuthorizedForBookingResponse',
'2': [
{'1': 'ListOfSitesPerOrganisations', '3': 1, '4': 3, '5': 11, '6': '.api.ListOfSitesPerOrganisation', '10': 'ListOfSitesPerOrganisations'},
],
};
/// Descriptor for `ListSitesAuthorizedForBookingResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listSitesAuthorizedForBookingResponseDescriptor = $convert.base64Decode(
'CiVMaXN0U2l0ZXNBdXRob3JpemVkRm9yQm9va2luZ1Jlc3BvbnNlEmEKG0xpc3RPZlNpdGVzUG'
'VyT3JnYW5pc2F0aW9ucxgBIAMoCzIfLmFwaS5MaXN0T2ZTaXRlc1Blck9yZ2FuaXNhdGlvblIb'
'TGlzdE9mU2l0ZXNQZXJPcmdhbmlzYXRpb25z');
@$core.Deprecated('Use getBasicSettingsRequestDescriptor instead')
const GetBasicSettingsRequest$json = {
'1': 'GetBasicSettingsRequest',
@@ -932,6 +933,32 @@ final $typed_data.Uint8List getBasicSettingsResponseDescriptor = $convert.base64
'FgoGUGhvbmVzGAQgAygJUgZQaG9uZXMSEAoDRmF4GAUgASgJUgNGYXgSFgoGRW1haWxzGAYgAy'
'gJUgZFbWFpbHM=');
@$core.Deprecated('Use getUnitsRequestDescriptor instead')
const GetUnitsRequest$json = {
'1': 'GetUnitsRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
],
'7': {},
};
/// Descriptor for `GetUnitsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getUnitsRequestDescriptor = $convert.base64Decode(
'Cg9HZXRVbml0c1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm9qZWN0SG'
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
@$core.Deprecated('Use getUnitsResponseDescriptor instead')
const GetUnitsResponse$json = {
'1': 'GetUnitsResponse',
'2': [
{'1': 'Units', '3': 1, '4': 3, '5': 11, '6': '.api.Unit', '10': 'Units'},
],
};
/// Descriptor for `GetUnitsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getUnitsResponseDescriptor = $convert.base64Decode(
'ChBHZXRVbml0c1Jlc3BvbnNlEh8KBVVuaXRzGAEgAygLMgkuYXBpLlVuaXRSBVVuaXRz');
@$core.Deprecated('Use getPossibleSegmentationOnSiteForBookingRequestDescriptor instead')
const GetPossibleSegmentationOnSiteForBookingRequest$json = {
'1': 'GetPossibleSegmentationOnSiteForBookingRequest',

View File

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