Compare commits

..

1 Commits

Author SHA1 Message Date
ci core model
81b9d7a69d Release 1.10.2 2025-04-15 13:46:09 +00:00
504 changed files with 61758 additions and 112972 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.14.0
Lib version: 1.10.2

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from accounts.proto.
// Generated code. Do not modify.
// source: accounts.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from accounts.proto.
// Generated code. Do not modify.
// source: accounts.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,104 +15,98 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'accounts.pb.dart' as $0;
import 'accounts.pb.dart' as $51;
export 'accounts.pb.dart';
@$pb.GrpcServiceName('api.Accounts')
class AccountsClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$createAccount = $grpc.ClientMethod<$51.CreateAccountRequest, $51.CreateAccountResult>(
'/api.Accounts/CreateAccount',
($51.CreateAccountRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.CreateAccountResult.fromBuffer(value));
static final _$getAccount = $grpc.ClientMethod<$51.GetAccountRequest, $51.GetAccountResult>(
'/api.Accounts/GetAccount',
($51.GetAccountRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.GetAccountResult.fromBuffer(value));
static final _$listAccounts = $grpc.ClientMethod<$51.ListAccountsRequest, $51.ListAccountsResult>(
'/api.Accounts/ListAccounts',
($51.ListAccountsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.ListAccountsResult.fromBuffer(value));
static final _$editAccount = $grpc.ClientMethod<$51.EditAccountRequest, $51.EditAccountResult>(
'/api.Accounts/EditAccount',
($51.EditAccountRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.EditAccountResult.fromBuffer(value));
static final _$deleteAccount = $grpc.ClientMethod<$51.DeleteAccountRequest, $51.DeleteAccountResult>(
'/api.Accounts/DeleteAccount',
($51.DeleteAccountRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.DeleteAccountResult.fromBuffer(value));
static final _$pushAccounts = $grpc.ClientMethod<$51.PushAccountsRequest, $51.PushAccountsResult>(
'/api.Accounts/PushAccounts',
($51.PushAccountsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.PushAccountsResult.fromBuffer(value));
static final _$addExport = $grpc.ClientMethod<$51.AddExportRequest, $51.AddExportResult>(
'/api.Accounts/AddExport',
($51.AddExportRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.AddExportResult.fromBuffer(value));
static final _$addImport = $grpc.ClientMethod<$51.AddImportRequest, $51.AddImportResult>(
'/api.Accounts/AddImport',
($51.AddImportRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.AddImportResult.fromBuffer(value));
static final _$deleteExport = $grpc.ClientMethod<$51.DeleteExportRequest, $51.DeleteExportResult>(
'/api.Accounts/DeleteExport',
($51.DeleteExportRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.DeleteExportResult.fromBuffer(value));
static final _$deleteImport = $grpc.ClientMethod<$51.DeleteImportRequest, $51.DeleteImportResult>(
'/api.Accounts/DeleteImport',
($51.DeleteImportRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $51.DeleteImportResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AccountsClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
AccountsClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.CreateAccountResult> createAccount($0.CreateAccountRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.CreateAccountResult> createAccount($51.CreateAccountRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$createAccount, request, options: options);
}
$grpc.ResponseFuture<$0.GetAccountResult> getAccount($0.GetAccountRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.GetAccountResult> getAccount($51.GetAccountRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getAccount, request, options: options);
}
$grpc.ResponseFuture<$0.ListAccountsResult> listAccounts($0.ListAccountsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.ListAccountsResult> listAccounts($51.ListAccountsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$listAccounts, request, options: options);
}
$grpc.ResponseFuture<$0.EditAccountResult> editAccount($0.EditAccountRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.EditAccountResult> editAccount($51.EditAccountRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$editAccount, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAccountResult> deleteAccount($0.DeleteAccountRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.DeleteAccountResult> deleteAccount($51.DeleteAccountRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteAccount, request, options: options);
}
$grpc.ResponseFuture<$0.PushAccountsResult> pushAccounts($0.PushAccountsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.PushAccountsResult> pushAccounts($51.PushAccountsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$pushAccounts, request, options: options);
}
$grpc.ResponseFuture<$0.AddExportResult> addExport($0.AddExportRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.AddExportResult> addExport($51.AddExportRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$addExport, request, options: options);
}
$grpc.ResponseFuture<$0.AddImportResult> addImport($0.AddImportRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.AddImportResult> addImport($51.AddImportRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$addImport, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteExportResult> deleteExport($0.DeleteExportRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.DeleteExportResult> deleteExport($51.DeleteExportRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteExport, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteImportResult> deleteImport($0.DeleteImportRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$51.DeleteImportResult> deleteImport($51.DeleteImportRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteImport, request, options: options);
}
// method descriptors
static final _$createAccount = $grpc.ClientMethod<$0.CreateAccountRequest, $0.CreateAccountResult>(
'/api.Accounts/CreateAccount',
($0.CreateAccountRequest value) => value.writeToBuffer(),
$0.CreateAccountResult.fromBuffer);
static final _$getAccount = $grpc.ClientMethod<$0.GetAccountRequest, $0.GetAccountResult>(
'/api.Accounts/GetAccount',
($0.GetAccountRequest value) => value.writeToBuffer(),
$0.GetAccountResult.fromBuffer);
static final _$listAccounts = $grpc.ClientMethod<$0.ListAccountsRequest, $0.ListAccountsResult>(
'/api.Accounts/ListAccounts',
($0.ListAccountsRequest value) => value.writeToBuffer(),
$0.ListAccountsResult.fromBuffer);
static final _$editAccount = $grpc.ClientMethod<$0.EditAccountRequest, $0.EditAccountResult>(
'/api.Accounts/EditAccount',
($0.EditAccountRequest value) => value.writeToBuffer(),
$0.EditAccountResult.fromBuffer);
static final _$deleteAccount = $grpc.ClientMethod<$0.DeleteAccountRequest, $0.DeleteAccountResult>(
'/api.Accounts/DeleteAccount',
($0.DeleteAccountRequest value) => value.writeToBuffer(),
$0.DeleteAccountResult.fromBuffer);
static final _$pushAccounts = $grpc.ClientMethod<$0.PushAccountsRequest, $0.PushAccountsResult>(
'/api.Accounts/PushAccounts',
($0.PushAccountsRequest value) => value.writeToBuffer(),
$0.PushAccountsResult.fromBuffer);
static final _$addExport = $grpc.ClientMethod<$0.AddExportRequest, $0.AddExportResult>(
'/api.Accounts/AddExport',
($0.AddExportRequest value) => value.writeToBuffer(),
$0.AddExportResult.fromBuffer);
static final _$addImport = $grpc.ClientMethod<$0.AddImportRequest, $0.AddImportResult>(
'/api.Accounts/AddImport',
($0.AddImportRequest value) => value.writeToBuffer(),
$0.AddImportResult.fromBuffer);
static final _$deleteExport = $grpc.ClientMethod<$0.DeleteExportRequest, $0.DeleteExportResult>(
'/api.Accounts/DeleteExport',
($0.DeleteExportRequest value) => value.writeToBuffer(),
$0.DeleteExportResult.fromBuffer);
static final _$deleteImport = $grpc.ClientMethod<$0.DeleteImportRequest, $0.DeleteImportResult>(
'/api.Accounts/DeleteImport',
($0.DeleteImportRequest value) => value.writeToBuffer(),
$0.DeleteImportResult.fromBuffer);
}
@$pb.GrpcServiceName('api.Accounts')
@@ -121,136 +114,126 @@ abstract class AccountsServiceBase extends $grpc.Service {
$core.String get $name => 'api.Accounts';
AccountsServiceBase() {
$addMethod($grpc.ServiceMethod<$0.CreateAccountRequest, $0.CreateAccountResult>(
$addMethod($grpc.ServiceMethod<$51.CreateAccountRequest, $51.CreateAccountResult>(
'CreateAccount',
createAccount_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateAccountRequest.fromBuffer(value),
($0.CreateAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetAccountRequest, $0.GetAccountResult>(
($core.List<$core.int> value) => $51.CreateAccountRequest.fromBuffer(value),
($51.CreateAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.GetAccountRequest, $51.GetAccountResult>(
'GetAccount',
getAccount_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAccountRequest.fromBuffer(value),
($0.GetAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAccountsRequest, $0.ListAccountsResult>(
($core.List<$core.int> value) => $51.GetAccountRequest.fromBuffer(value),
($51.GetAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.ListAccountsRequest, $51.ListAccountsResult>(
'ListAccounts',
listAccounts_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAccountsRequest.fromBuffer(value),
($0.ListAccountsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.EditAccountRequest, $0.EditAccountResult>(
($core.List<$core.int> value) => $51.ListAccountsRequest.fromBuffer(value),
($51.ListAccountsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.EditAccountRequest, $51.EditAccountResult>(
'EditAccount',
editAccount_Pre,
false,
false,
($core.List<$core.int> value) => $0.EditAccountRequest.fromBuffer(value),
($0.EditAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAccountRequest, $0.DeleteAccountResult>(
($core.List<$core.int> value) => $51.EditAccountRequest.fromBuffer(value),
($51.EditAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.DeleteAccountRequest, $51.DeleteAccountResult>(
'DeleteAccount',
deleteAccount_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAccountRequest.fromBuffer(value),
($0.DeleteAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.PushAccountsRequest, $0.PushAccountsResult>(
($core.List<$core.int> value) => $51.DeleteAccountRequest.fromBuffer(value),
($51.DeleteAccountResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.PushAccountsRequest, $51.PushAccountsResult>(
'PushAccounts',
pushAccounts_Pre,
false,
false,
($core.List<$core.int> value) => $0.PushAccountsRequest.fromBuffer(value),
($0.PushAccountsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AddExportRequest, $0.AddExportResult>(
($core.List<$core.int> value) => $51.PushAccountsRequest.fromBuffer(value),
($51.PushAccountsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.AddExportRequest, $51.AddExportResult>(
'AddExport',
addExport_Pre,
false,
false,
($core.List<$core.int> value) => $0.AddExportRequest.fromBuffer(value),
($0.AddExportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AddImportRequest, $0.AddImportResult>(
($core.List<$core.int> value) => $51.AddExportRequest.fromBuffer(value),
($51.AddExportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.AddImportRequest, $51.AddImportResult>(
'AddImport',
addImport_Pre,
false,
false,
($core.List<$core.int> value) => $0.AddImportRequest.fromBuffer(value),
($0.AddImportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteExportRequest, $0.DeleteExportResult>(
($core.List<$core.int> value) => $51.AddImportRequest.fromBuffer(value),
($51.AddImportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.DeleteExportRequest, $51.DeleteExportResult>(
'DeleteExport',
deleteExport_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteExportRequest.fromBuffer(value),
($0.DeleteExportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteImportRequest, $0.DeleteImportResult>(
($core.List<$core.int> value) => $51.DeleteExportRequest.fromBuffer(value),
($51.DeleteExportResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$51.DeleteImportRequest, $51.DeleteImportResult>(
'DeleteImport',
deleteImport_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteImportRequest.fromBuffer(value),
($0.DeleteImportResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $51.DeleteImportRequest.fromBuffer(value),
($51.DeleteImportResult value) => value.writeToBuffer()));
}
$async.Future<$0.CreateAccountResult> createAccount_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateAccountRequest> $request) async {
$async.Future<$51.CreateAccountResult> createAccount_Pre($grpc.ServiceCall $call, $async.Future<$51.CreateAccountRequest> $request) async {
return createAccount($call, await $request);
}
$async.Future<$0.CreateAccountResult> createAccount($grpc.ServiceCall call, $0.CreateAccountRequest request);
$async.Future<$0.GetAccountResult> getAccount_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAccountRequest> $request) async {
$async.Future<$51.GetAccountResult> getAccount_Pre($grpc.ServiceCall $call, $async.Future<$51.GetAccountRequest> $request) async {
return getAccount($call, await $request);
}
$async.Future<$0.GetAccountResult> getAccount($grpc.ServiceCall call, $0.GetAccountRequest request);
$async.Future<$0.ListAccountsResult> listAccounts_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAccountsRequest> $request) async {
$async.Future<$51.ListAccountsResult> listAccounts_Pre($grpc.ServiceCall $call, $async.Future<$51.ListAccountsRequest> $request) async {
return listAccounts($call, await $request);
}
$async.Future<$0.ListAccountsResult> listAccounts($grpc.ServiceCall call, $0.ListAccountsRequest request);
$async.Future<$0.EditAccountResult> editAccount_Pre($grpc.ServiceCall $call, $async.Future<$0.EditAccountRequest> $request) async {
$async.Future<$51.EditAccountResult> editAccount_Pre($grpc.ServiceCall $call, $async.Future<$51.EditAccountRequest> $request) async {
return editAccount($call, await $request);
}
$async.Future<$0.EditAccountResult> editAccount($grpc.ServiceCall call, $0.EditAccountRequest request);
$async.Future<$0.DeleteAccountResult> deleteAccount_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAccountRequest> $request) async {
$async.Future<$51.DeleteAccountResult> deleteAccount_Pre($grpc.ServiceCall $call, $async.Future<$51.DeleteAccountRequest> $request) async {
return deleteAccount($call, await $request);
}
$async.Future<$0.DeleteAccountResult> deleteAccount($grpc.ServiceCall call, $0.DeleteAccountRequest request);
$async.Future<$0.PushAccountsResult> pushAccounts_Pre($grpc.ServiceCall $call, $async.Future<$0.PushAccountsRequest> $request) async {
$async.Future<$51.PushAccountsResult> pushAccounts_Pre($grpc.ServiceCall $call, $async.Future<$51.PushAccountsRequest> $request) async {
return pushAccounts($call, await $request);
}
$async.Future<$0.PushAccountsResult> pushAccounts($grpc.ServiceCall call, $0.PushAccountsRequest request);
$async.Future<$0.AddExportResult> addExport_Pre($grpc.ServiceCall $call, $async.Future<$0.AddExportRequest> $request) async {
$async.Future<$51.AddExportResult> addExport_Pre($grpc.ServiceCall $call, $async.Future<$51.AddExportRequest> $request) async {
return addExport($call, await $request);
}
$async.Future<$0.AddExportResult> addExport($grpc.ServiceCall call, $0.AddExportRequest request);
$async.Future<$0.AddImportResult> addImport_Pre($grpc.ServiceCall $call, $async.Future<$0.AddImportRequest> $request) async {
$async.Future<$51.AddImportResult> addImport_Pre($grpc.ServiceCall $call, $async.Future<$51.AddImportRequest> $request) async {
return addImport($call, await $request);
}
$async.Future<$0.AddImportResult> addImport($grpc.ServiceCall call, $0.AddImportRequest request);
$async.Future<$0.DeleteExportResult> deleteExport_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteExportRequest> $request) async {
$async.Future<$51.DeleteExportResult> deleteExport_Pre($grpc.ServiceCall $call, $async.Future<$51.DeleteExportRequest> $request) async {
return deleteExport($call, await $request);
}
$async.Future<$0.DeleteExportResult> deleteExport($grpc.ServiceCall call, $0.DeleteExportRequest request);
$async.Future<$0.DeleteImportResult> deleteImport_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteImportRequest> $request) async {
$async.Future<$51.DeleteImportResult> deleteImport_Pre($grpc.ServiceCall $call, $async.Future<$51.DeleteImportRequest> $request) async {
return deleteImport($call, await $request);
}
$async.Future<$0.DeleteImportResult> deleteImport($grpc.ServiceCall call, $0.DeleteImportRequest request);
$async.Future<$51.CreateAccountResult> createAccount($grpc.ServiceCall call, $51.CreateAccountRequest request);
$async.Future<$51.GetAccountResult> getAccount($grpc.ServiceCall call, $51.GetAccountRequest request);
$async.Future<$51.ListAccountsResult> listAccounts($grpc.ServiceCall call, $51.ListAccountsRequest request);
$async.Future<$51.EditAccountResult> editAccount($grpc.ServiceCall call, $51.EditAccountRequest request);
$async.Future<$51.DeleteAccountResult> deleteAccount($grpc.ServiceCall call, $51.DeleteAccountRequest request);
$async.Future<$51.PushAccountsResult> pushAccounts($grpc.ServiceCall call, $51.PushAccountsRequest request);
$async.Future<$51.AddExportResult> addExport($grpc.ServiceCall call, $51.AddExportRequest request);
$async.Future<$51.AddImportResult> addImport($grpc.ServiceCall call, $51.AddImportRequest request);
$async.Future<$51.DeleteExportResult> deleteExport($grpc.ServiceCall call, $51.DeleteExportRequest request);
$async.Future<$51.DeleteImportResult> deleteImport($grpc.ServiceCall call, $51.DeleteImportRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from accounts.proto.
// Generated code. Do not modify.
// source: accounts.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -27,9 +26,9 @@ const CreateAccountRequest$json = {
/// Descriptor for `CreateAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAccountRequestDescriptor = $convert.base64Decode(
'ChRDcmVhdGVBY2NvdW50UmVxdWVzdBIcCgRuYW1lGAEgASgJQgi6gQEEcgIQAVIEbmFtZRIyCg'
'pwZXJtaXNzaW9uGAIgASgLMhIuYXBpLk5zY1Blcm1pc3Npb25SCnBlcm1pc3Npb24SHAoJamV0'
'U3RyZWFtGAMgASgIUglqZXRTdHJlYW06DJJBCQoH0gEEbmFtZQ==');
'ChRDcmVhdGVBY2NvdW50UmVxdWVzdBIbCgRuYW1lGAEgASgJQgf6QgRyAhABUgRuYW1lEjIKCn'
'Blcm1pc3Npb24YAiABKAsyEi5hcGkuTnNjUGVybWlzc2lvblIKcGVybWlzc2lvbhIcCglqZXRT'
'dHJlYW0YAyABKAhSCWpldFN0cmVhbToMkkEJCgfSAQRuYW1l');
@$core.Deprecated('Use createAccountResultDescriptor instead')
const CreateAccountResult$json = {
@@ -59,10 +58,10 @@ const AddExportRequest$json = {
/// Descriptor for `AddExportRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List addExportRequestDescriptor = $convert.base64Decode(
'ChBBZGRFeHBvcnRSZXF1ZXN0EioKC2FjY291bnROYW1lGAEgASgJQgi6gQEEcgIQAVILYWNjb3'
'VudE5hbWUSFgoGcHVibGljGAIgASgIUgZwdWJsaWMSFgoGc3RyZWFtGAMgASgIUgZzdHJlYW0S'
'IgoHc3ViamVjdBgEIAEoCUIIuoEBBHICEAFSB3N1YmplY3Q6HZJBGgoY0gELYWNjb3VudE5hbW'
'XSAQdzdWJqZWN0');
'ChBBZGRFeHBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2NvdW'
'50TmFtZRIWCgZwdWJsaWMYAiABKAhSBnB1YmxpYxIWCgZzdHJlYW0YAyABKAhSBnN0cmVhbRIh'
'CgdzdWJqZWN0GAQgASgJQgf6QgRyAhABUgdzdWJqZWN0Oh2SQRoKGNIBC2FjY291bnROYW1l0g'
'EHc3ViamVjdA==');
@$core.Deprecated('Use addExportResultDescriptor instead')
const AddExportResult$json = {
@@ -91,10 +90,10 @@ const AddImportRequest$json = {
/// Descriptor for `AddImportRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List addImportRequestDescriptor = $convert.base64Decode(
'ChBBZGRJbXBvcnRSZXF1ZXN0EioKC2FjY291bnROYW1lGAEgASgJQgi6gQEEcgIQAVILYWNjb3'
'VudE5hbWUSLgoNcmVtb3RlQWNjb3VudBgCIAEoCUIIuoEBBHICEAFSDXJlbW90ZUFjY291bnQS'
'IgoHc3ViamVjdBgDIAEoCUIIuoEBBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE5hbW'
'XSAQ1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
'ChBBZGRJbXBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2NvdW'
'50TmFtZRItCg1yZW1vdGVBY2NvdW50GAIgASgJQgf6QgRyAhABUg1yZW1vdGVBY2NvdW50EiEK'
'B3N1YmplY3QYAyABKAlCB/pCBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE5hbWXSAQ'
'1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
@$core.Deprecated('Use addImportResultDescriptor instead')
const AddImportResult$json = {
@@ -122,9 +121,9 @@ const DeleteExportRequest$json = {
/// Descriptor for `DeleteExportRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteExportRequestDescriptor = $convert.base64Decode(
'ChNEZWxldGVFeHBvcnRSZXF1ZXN0EioKC2FjY291bnROYW1lGAEgASgJQgi6gQEEcgIQAVILYW'
'Njb3VudE5hbWUSIgoHc3ViamVjdBgCIAEoCUIIuoEBBHICEAFSB3N1YmplY3Q6HZJBGgoY0gEL'
'YWNjb3VudE5hbWXSAQdzdWJqZWN0');
'ChNEZWxldGVFeHBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2'
'NvdW50TmFtZRIhCgdzdWJqZWN0GAIgASgJQgf6QgRyAhABUgdzdWJqZWN0Oh2SQRoKGNIBC2Fj'
'Y291bnROYW1l0gEHc3ViamVjdA==');
@$core.Deprecated('Use deleteExportResultDescriptor instead')
const DeleteExportResult$json = {
@@ -153,10 +152,10 @@ const DeleteImportRequest$json = {
/// Descriptor for `DeleteImportRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteImportRequestDescriptor = $convert.base64Decode(
'ChNEZWxldGVJbXBvcnRSZXF1ZXN0EioKC2FjY291bnROYW1lGAEgASgJQgi6gQEEcgIQAVILYW'
'Njb3VudE5hbWUSLgoNcmVtb3RlQWNjb3VudBgCIAEoCUIIuoEBBHICEAFSDXJlbW90ZUFjY291'
'bnQSIgoHc3ViamVjdBgDIAEoCUIIuoEBBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE'
'5hbWXSAQ1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
'ChNEZWxldGVJbXBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2'
'NvdW50TmFtZRItCg1yZW1vdGVBY2NvdW50GAIgASgJQgf6QgRyAhABUg1yZW1vdGVBY2NvdW50'
'EiEKB3N1YmplY3QYAyABKAlCB/pCBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE5hbW'
'XSAQ1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
@$core.Deprecated('Use deleteImportResultDescriptor instead')
const DeleteImportResult$json = {
@@ -183,8 +182,8 @@ const GetAccountRequest$json = {
/// Descriptor for `GetAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAccountRequestDescriptor = $convert.base64Decode(
'ChFHZXRBY2NvdW50UmVxdWVzdBIcCgRuYW1lGAEgASgJQgi6gQEEcgIQAVIEbmFtZToMkkEJCg'
'fSAQRuYW1l');
'ChFHZXRBY2NvdW50UmVxdWVzdBIbCgRuYW1lGAEgASgJQgf6QgRyAhABUgRuYW1lOgySQQkKB9'
'IBBG5hbWU=');
@$core.Deprecated('Use getAccountResultDescriptor instead')
const GetAccountResult$json = {
@@ -217,12 +216,12 @@ const EditAccountRequest$json = {
/// Descriptor for `EditAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List editAccountRequestDescriptor = $convert.base64Decode(
'ChJFZGl0QWNjb3VudFJlcXVlc3QSHAoEbmFtZRgBIAEoCUIIuoEBBHICEAFSBG5hbWUSMgoKcG'
'VybWlzc2lvbhgCIAEoCzISLmFwaS5Oc2NQZXJtaXNzaW9uUgpwZXJtaXNzaW9uEhgKB3JtUGVy'
'bXMYAyADKAlSB3JtUGVybXMSHAoJamV0U3RyZWFtGAQgASgIUglqZXRTdHJlYW0SIAoLZGlza1'
'N0b3JhZ2UYBSABKANSC2Rpc2tTdG9yYWdlEhgKB3N0cmVhbXMYBiABKANSB3N0cmVhbXMSHAoJ'
'Y29uc3VtZXJzGAcgASgDUgljb25zdW1lcnM6JZJBIgogMhdFbnRpdHkgZWRpdGlvbiBtZXNzYW'
'dlc9IBBG5hbWU=');
'ChJFZGl0QWNjb3VudFJlcXVlc3QSGwoEbmFtZRgBIAEoCUIH+kIEcgIQAVIEbmFtZRIyCgpwZX'
'JtaXNzaW9uGAIgASgLMhIuYXBpLk5zY1Blcm1pc3Npb25SCnBlcm1pc3Npb24SGAoHcm1QZXJt'
'cxgDIAMoCVIHcm1QZXJtcxIcCglqZXRTdHJlYW0YBCABKAhSCWpldFN0cmVhbRIgCgtkaXNrU3'
'RvcmFnZRgFIAEoA1ILZGlza1N0b3JhZ2USGAoHc3RyZWFtcxgGIAEoA1IHc3RyZWFtcxIcCglj'
'b25zdW1lcnMYByABKANSCWNvbnN1bWVyczolkkEiCiAyF0VudGl0eSBlZGl0aW9uIG1lc3NhZ2'
'Vz0gEEbmFtZQ==');
@$core.Deprecated('Use editAccountResultDescriptor instead')
const EditAccountResult$json = {
@@ -249,8 +248,8 @@ const DeleteAccountRequest$json = {
/// Descriptor for `DeleteAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAccountRequestDescriptor = $convert.base64Decode(
'ChREZWxldGVBY2NvdW50UmVxdWVzdBIqCgthY2NvdW50TmFtZRgBIAEoCUIIuoEBBHICEAFSC2'
'FjY291bnROYW1lOhOSQRAKDtIBC2FjY291bnROYW1l');
'ChREZWxldGVBY2NvdW50UmVxdWVzdBIpCgthY2NvdW50TmFtZRgBIAEoCUIH+kIEcgIQAVILYW'
'Njb3VudE5hbWU6E5JBEAoO0gELYWNjb3VudE5hbWU=');
@$core.Deprecated('Use deleteAccountResultDescriptor instead')
const DeleteAccountResult$json = {

View File

@@ -1,23 +1,22 @@
// This is a generated file - do not edit.
//
// Generated from actor.proto.
// Generated code. Do not modify.
// source: actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'partner.pb.dart' as $3;
import 'repositoryShared.pb.dart' as $1;
import 'shared.pb.dart' as $0;
import 'slotbooking.pb.dart' as $2;
import 'partner.pb.dart' as $75;
import 'repositoryShared.pb.dart' as $70;
import 'repositoryShared.pbenum.dart' as $70;
import 'shared.pb.dart' as $29;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -25,40 +24,48 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
/// Aggregation object message
class Actor extends $pb.GeneratedMessage {
factory Actor({
$0.EventHeader? lastEventHeader,
$0.EntityID? iD,
$29.EventHeader? lastEventHeader,
$29.EntityID? iD,
ActorPayload? payload,
}) {
final result = create();
if (lastEventHeader != null) result.lastEventHeader = lastEventHeader;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
final $result = create();
if (lastEventHeader != null) {
$result.lastEventHeader = lastEventHeader;
}
if (iD != null) {
$result.iD = iD;
}
if (payload != null) {
$result.payload = payload;
}
return $result;
}
Actor._();
factory Actor.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Actor.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
Actor._() : super();
factory Actor.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory Actor.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Actor', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $0.EventHeader.create)
..aOM<$0.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $0.EntityID.create)
..aOM<$29.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $29.EventHeader.create)
..aOM<$29.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $29.EntityID.create)
..aOM<ActorPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Actor clone() => Actor()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Actor copyWith(void Function(Actor) updates) => super.copyWith((message) => updates(message as Actor)) as Actor;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Actor create() => Actor._();
@$core.override
Actor createEmptyInstance() => create();
static $pb.PbList<Actor> createRepeated() => $pb.PbList<Actor>();
@$core.pragma('dart2js:noInline')
@@ -66,31 +73,31 @@ class Actor extends $pb.GeneratedMessage {
static Actor? _defaultInstance;
@$pb.TagNumber(1)
$0.EventHeader get lastEventHeader => $_getN(0);
$29.EventHeader get lastEventHeader => $_getN(0);
@$pb.TagNumber(1)
set lastEventHeader($0.EventHeader value) => $_setField(1, value);
set lastEventHeader($29.EventHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasLastEventHeader() => $_has(0);
@$pb.TagNumber(1)
void clearLastEventHeader() => $_clearField(1);
@$pb.TagNumber(1)
$0.EventHeader ensureLastEventHeader() => $_ensure(0);
$29.EventHeader ensureLastEventHeader() => $_ensure(0);
@$pb.TagNumber(2)
$0.EntityID get iD => $_getN(1);
$29.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($0.EntityID value) => $_setField(2, value);
set iD($29.EntityID v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$0.EntityID ensureID() => $_ensure(1);
$29.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
ActorPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(ActorPayload value) => $_setField(3, value);
set payload(ActorPayload v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
@@ -102,111 +109,152 @@ class Actor extends $pb.GeneratedMessage {
class ActorPayload extends $pb.GeneratedMessage {
factory ActorPayload({
$core.String? name,
$1.IdType? idType,
$core.Iterable<$0.MetadataElement>? metaData,
$1.Address? address,
$1.ActorStatusStruct? status,
$70.IdType? idType,
$core.Iterable<$29.MetadataElement>? metaData,
$70.Address? address,
$70.ActorStatusStruct? status,
$core.String? partnerID,
$1.ActorTypology? typology,
$1.ActorSnapshot? snapshot,
$70.ActorTypology? typology,
$70.ActorSnapshot? snapshot,
$core.Iterable<$core.String>? emails,
$core.Iterable<$core.String>? phones,
$core.bool? managedStock,
$core.String? additionalInformation,
$core.bool? isCarrier,
$core.Iterable<$1.CarrierService>? carrierServices,
$core.Iterable<$70.CarrierService>? carrierServices,
$core.bool? isShipToConnected,
$core.bool? isShipFromConnected,
$core.String? shipToPartnerAppID,
$core.String? shipFromPartnerAppID,
$core.Iterable<$0.AttachmentSummary>? attachments,
$core.Iterable<$29.AttachmentSummary>? attachments,
$core.int? attachmentNumber,
$core.Iterable<$0.ClaimSummary>? claims,
$core.Iterable<$29.ClaimSummary>? claims,
$core.int? claimNumber,
$core.String? photoURI,
$core.Iterable<$core.String>? connectionIdentifierPrefixes,
$core.bool? isSlotBookingEnabled,
$1.SiteAlias? siteAlias,
$2.ActorAuthorisation? appointmentConstraints,
}) {
final result = create();
if (name != null) result.name = name;
if (idType != null) result.idType = idType;
if (metaData != null) result.metaData.addAll(metaData);
if (address != null) result.address = address;
if (status != null) result.status = status;
if (partnerID != null) result.partnerID = partnerID;
if (typology != null) result.typology = typology;
if (snapshot != null) result.snapshot = snapshot;
if (emails != null) result.emails.addAll(emails);
if (phones != null) result.phones.addAll(phones);
if (managedStock != null) result.managedStock = managedStock;
if (additionalInformation != null) result.additionalInformation = additionalInformation;
if (isCarrier != null) result.isCarrier = isCarrier;
if (carrierServices != null) result.carrierServices.addAll(carrierServices);
if (isShipToConnected != null) result.isShipToConnected = isShipToConnected;
if (isShipFromConnected != null) result.isShipFromConnected = isShipFromConnected;
if (shipToPartnerAppID != null) result.shipToPartnerAppID = shipToPartnerAppID;
if (shipFromPartnerAppID != null) result.shipFromPartnerAppID = shipFromPartnerAppID;
if (attachments != null) result.attachments.addAll(attachments);
if (attachmentNumber != null) result.attachmentNumber = attachmentNumber;
if (claims != null) result.claims.addAll(claims);
if (claimNumber != null) result.claimNumber = claimNumber;
if (photoURI != null) result.photoURI = photoURI;
if (connectionIdentifierPrefixes != null) result.connectionIdentifierPrefixes.addAll(connectionIdentifierPrefixes);
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
if (siteAlias != null) result.siteAlias = siteAlias;
if (appointmentConstraints != null) result.appointmentConstraints = appointmentConstraints;
return result;
final $result = create();
if (name != null) {
$result.name = name;
}
if (idType != null) {
$result.idType = idType;
}
if (metaData != null) {
$result.metaData.addAll(metaData);
}
if (address != null) {
$result.address = address;
}
if (status != null) {
$result.status = status;
}
if (partnerID != null) {
$result.partnerID = partnerID;
}
if (typology != null) {
$result.typology = typology;
}
if (snapshot != null) {
$result.snapshot = snapshot;
}
if (emails != null) {
$result.emails.addAll(emails);
}
if (phones != null) {
$result.phones.addAll(phones);
}
if (managedStock != null) {
$result.managedStock = managedStock;
}
if (additionalInformation != null) {
$result.additionalInformation = additionalInformation;
}
if (isCarrier != null) {
$result.isCarrier = isCarrier;
}
if (carrierServices != null) {
$result.carrierServices.addAll(carrierServices);
}
if (isShipToConnected != null) {
$result.isShipToConnected = isShipToConnected;
}
if (isShipFromConnected != null) {
$result.isShipFromConnected = isShipFromConnected;
}
if (shipToPartnerAppID != null) {
$result.shipToPartnerAppID = shipToPartnerAppID;
}
if (shipFromPartnerAppID != null) {
$result.shipFromPartnerAppID = shipFromPartnerAppID;
}
if (attachments != null) {
$result.attachments.addAll(attachments);
}
if (attachmentNumber != null) {
$result.attachmentNumber = attachmentNumber;
}
if (claims != null) {
$result.claims.addAll(claims);
}
if (claimNumber != null) {
$result.claimNumber = claimNumber;
}
if (photoURI != null) {
$result.photoURI = photoURI;
}
if (connectionIdentifierPrefixes != null) {
$result.connectionIdentifierPrefixes.addAll(connectionIdentifierPrefixes);
}
return $result;
}
ActorPayload._();
factory ActorPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorPayload._() : super();
factory ActorPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..e<$1.IdType>(2, _omitFieldNames ? '' : 'IdType', $pb.PbFieldType.OE, protoName: 'IdType', defaultOrMaker: $1.IdType.IDTYPE_UNKNOWN, valueOf: $1.IdType.valueOf, enumValues: $1.IdType.values)
..pc<$0.MetadataElement>(3, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $0.MetadataElement.create)
..aOM<$1.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $1.Address.create)
..aOM<$1.ActorStatusStruct>(6, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $1.ActorStatusStruct.create)
..e<$70.IdType>(2, _omitFieldNames ? '' : 'IdType', $pb.PbFieldType.OE, protoName: 'IdType', defaultOrMaker: $70.IdType.IDTYPE_UNKNOWN, valueOf: $70.IdType.valueOf, enumValues: $70.IdType.values)
..pc<$29.MetadataElement>(3, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $29.MetadataElement.create)
..aOM<$70.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $70.Address.create)
..aOM<$70.ActorStatusStruct>(6, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $70.ActorStatusStruct.create)
..aOS(7, _omitFieldNames ? '' : 'PartnerID', protoName: 'PartnerID')
..e<$1.ActorTypology>(10, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $1.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $1.ActorTypology.valueOf, enumValues: $1.ActorTypology.values)
..aOM<$1.ActorSnapshot>(11, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $1.ActorSnapshot.create)
..e<$70.ActorTypology>(10, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $70.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $70.ActorTypology.valueOf, enumValues: $70.ActorTypology.values)
..aOM<$70.ActorSnapshot>(11, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $70.ActorSnapshot.create)
..pPS(12, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..pPS(13, _omitFieldNames ? '' : 'Phones', protoName: 'Phones')
..aOB(14, _omitFieldNames ? '' : 'ManagedStock', protoName: 'ManagedStock')
..aOS(15, _omitFieldNames ? '' : 'AdditionalInformation', protoName: 'AdditionalInformation')
..aOB(16, _omitFieldNames ? '' : 'IsCarrier', protoName: 'IsCarrier')
..pc<$1.CarrierService>(17, _omitFieldNames ? '' : 'CarrierServices', $pb.PbFieldType.PM, protoName: 'CarrierServices', subBuilder: $1.CarrierService.create)
..pc<$70.CarrierService>(17, _omitFieldNames ? '' : 'CarrierServices', $pb.PbFieldType.PM, protoName: 'CarrierServices', subBuilder: $70.CarrierService.create)
..aOB(18, _omitFieldNames ? '' : 'IsShipToConnected', protoName: 'IsShipToConnected')
..aOB(19, _omitFieldNames ? '' : 'IsShipFromConnected', protoName: 'IsShipFromConnected')
..aOS(20, _omitFieldNames ? '' : 'ShipToPartnerAppID', protoName: 'ShipToPartnerAppID')
..aOS(21, _omitFieldNames ? '' : 'ShipFromPartnerAppID', protoName: 'ShipFromPartnerAppID')
..pc<$0.AttachmentSummary>(22, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $0.AttachmentSummary.create)
..pc<$29.AttachmentSummary>(22, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $29.AttachmentSummary.create)
..a<$core.int>(23, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
..pc<$0.ClaimSummary>(24, _omitFieldNames ? '' : 'Claims', $pb.PbFieldType.PM, protoName: 'Claims', subBuilder: $0.ClaimSummary.create)
..pc<$29.ClaimSummary>(24, _omitFieldNames ? '' : 'Claims', $pb.PbFieldType.PM, protoName: 'Claims', subBuilder: $29.ClaimSummary.create)
..a<$core.int>(25, _omitFieldNames ? '' : 'ClaimNumber', $pb.PbFieldType.O3, protoName: 'ClaimNumber')
..aOS(26, _omitFieldNames ? '' : 'PhotoURI', protoName: 'PhotoURI')
..pPS(28, _omitFieldNames ? '' : 'ConnectionIdentifierPrefixes', protoName: 'ConnectionIdentifierPrefixes')
..aOB(29, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
..aOM<$1.SiteAlias>(30, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $1.SiteAlias.create)
..aOM<$2.ActorAuthorisation>(31, _omitFieldNames ? '' : 'AppointmentConstraints', protoName: 'AppointmentConstraints', subBuilder: $2.ActorAuthorisation.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorPayload clone() => ActorPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorPayload copyWith(void Function(ActorPayload) updates) => super.copyWith((message) => updates(message as ActorPayload)) as ActorPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorPayload create() => ActorPayload._();
@$core.override
ActorPayload createEmptyInstance() => create();
static $pb.PbList<ActorPayload> createRepeated() => $pb.PbList<ActorPayload>();
@$core.pragma('dart2js:noInline')
@@ -217,76 +265,76 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String value) => $_setString(0, value);
set name($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => $_clearField(1);
@$pb.TagNumber(2)
$1.IdType get idType => $_getN(1);
$70.IdType get idType => $_getN(1);
@$pb.TagNumber(2)
set idType($1.IdType value) => $_setField(2, value);
set idType($70.IdType v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasIdType() => $_has(1);
@$pb.TagNumber(2)
void clearIdType() => $_clearField(2);
@$pb.TagNumber(3)
$pb.PbList<$0.MetadataElement> get metaData => $_getList(2);
$pb.PbList<$29.MetadataElement> get metaData => $_getList(2);
@$pb.TagNumber(4)
$1.Address get address => $_getN(3);
$70.Address get address => $_getN(3);
@$pb.TagNumber(4)
set address($1.Address value) => $_setField(4, value);
set address($70.Address v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasAddress() => $_has(3);
@$pb.TagNumber(4)
void clearAddress() => $_clearField(4);
@$pb.TagNumber(4)
$1.Address ensureAddress() => $_ensure(3);
$70.Address ensureAddress() => $_ensure(3);
/// Status field is not accessible from APIs
@$pb.TagNumber(6)
$1.ActorStatusStruct get status => $_getN(4);
$70.ActorStatusStruct get status => $_getN(4);
@$pb.TagNumber(6)
set status($1.ActorStatusStruct value) => $_setField(6, value);
set status($70.ActorStatusStruct v) { $_setField(6, v); }
@$pb.TagNumber(6)
$core.bool hasStatus() => $_has(4);
@$pb.TagNumber(6)
void clearStatus() => $_clearField(6);
@$pb.TagNumber(6)
$1.ActorStatusStruct ensureStatus() => $_ensure(4);
$70.ActorStatusStruct ensureStatus() => $_ensure(4);
/// Existing PartnerID
@$pb.TagNumber(7)
$core.String get partnerID => $_getSZ(5);
@$pb.TagNumber(7)
set partnerID($core.String value) => $_setString(5, value);
set partnerID($core.String v) { $_setString(5, v); }
@$pb.TagNumber(7)
$core.bool hasPartnerID() => $_has(5);
@$pb.TagNumber(7)
void clearPartnerID() => $_clearField(7);
@$pb.TagNumber(10)
$1.ActorTypology get typology => $_getN(6);
$70.ActorTypology get typology => $_getN(6);
@$pb.TagNumber(10)
set typology($1.ActorTypology value) => $_setField(10, value);
set typology($70.ActorTypology v) { $_setField(10, v); }
@$pb.TagNumber(10)
$core.bool hasTypology() => $_has(6);
@$pb.TagNumber(10)
void clearTypology() => $_clearField(10);
@$pb.TagNumber(11)
$1.ActorSnapshot get snapshot => $_getN(7);
$70.ActorSnapshot get snapshot => $_getN(7);
@$pb.TagNumber(11)
set snapshot($1.ActorSnapshot value) => $_setField(11, value);
set snapshot($70.ActorSnapshot v) { $_setField(11, v); }
@$pb.TagNumber(11)
$core.bool hasSnapshot() => $_has(7);
@$pb.TagNumber(11)
void clearSnapshot() => $_clearField(11);
@$pb.TagNumber(11)
$1.ActorSnapshot ensureSnapshot() => $_ensure(7);
$70.ActorSnapshot ensureSnapshot() => $_ensure(7);
/// Must be a valid email address
@$pb.TagNumber(12)
@@ -299,7 +347,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(14)
$core.bool get managedStock => $_getBF(10);
@$pb.TagNumber(14)
set managedStock($core.bool value) => $_setBool(10, value);
set managedStock($core.bool v) { $_setBool(10, v); }
@$pb.TagNumber(14)
$core.bool hasManagedStock() => $_has(10);
@$pb.TagNumber(14)
@@ -308,7 +356,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(15)
$core.String get additionalInformation => $_getSZ(11);
@$pb.TagNumber(15)
set additionalInformation($core.String value) => $_setString(11, value);
set additionalInformation($core.String v) { $_setString(11, v); }
@$pb.TagNumber(15)
$core.bool hasAdditionalInformation() => $_has(11);
@$pb.TagNumber(15)
@@ -318,7 +366,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(16)
$core.bool get isCarrier => $_getBF(12);
@$pb.TagNumber(16)
set isCarrier($core.bool value) => $_setBool(12, value);
set isCarrier($core.bool v) { $_setBool(12, v); }
@$pb.TagNumber(16)
$core.bool hasIsCarrier() => $_has(12);
@$pb.TagNumber(16)
@@ -326,12 +374,12 @@ class ActorPayload extends $pb.GeneratedMessage {
/// List of carrier services
@$pb.TagNumber(17)
$pb.PbList<$1.CarrierService> get carrierServices => $_getList(13);
$pb.PbList<$70.CarrierService> get carrierServices => $_getList(13);
@$pb.TagNumber(18)
$core.bool get isShipToConnected => $_getBF(14);
@$pb.TagNumber(18)
set isShipToConnected($core.bool value) => $_setBool(14, value);
set isShipToConnected($core.bool v) { $_setBool(14, v); }
@$pb.TagNumber(18)
$core.bool hasIsShipToConnected() => $_has(14);
@$pb.TagNumber(18)
@@ -340,7 +388,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(19)
$core.bool get isShipFromConnected => $_getBF(15);
@$pb.TagNumber(19)
set isShipFromConnected($core.bool value) => $_setBool(15, value);
set isShipFromConnected($core.bool v) { $_setBool(15, v); }
@$pb.TagNumber(19)
$core.bool hasIsShipFromConnected() => $_has(15);
@$pb.TagNumber(19)
@@ -350,7 +398,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(20)
$core.String get shipToPartnerAppID => $_getSZ(16);
@$pb.TagNumber(20)
set shipToPartnerAppID($core.String value) => $_setString(16, value);
set shipToPartnerAppID($core.String v) { $_setString(16, v); }
@$pb.TagNumber(20)
$core.bool hasShipToPartnerAppID() => $_has(16);
@$pb.TagNumber(20)
@@ -360,31 +408,31 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(21)
$core.String get shipFromPartnerAppID => $_getSZ(17);
@$pb.TagNumber(21)
set shipFromPartnerAppID($core.String value) => $_setString(17, value);
set shipFromPartnerAppID($core.String v) { $_setString(17, v); }
@$pb.TagNumber(21)
$core.bool hasShipFromPartnerAppID() => $_has(17);
@$pb.TagNumber(21)
void clearShipFromPartnerAppID() => $_clearField(21);
@$pb.TagNumber(22)
$pb.PbList<$0.AttachmentSummary> get attachments => $_getList(18);
$pb.PbList<$29.AttachmentSummary> get attachments => $_getList(18);
@$pb.TagNumber(23)
$core.int get attachmentNumber => $_getIZ(19);
@$pb.TagNumber(23)
set attachmentNumber($core.int value) => $_setSignedInt32(19, value);
set attachmentNumber($core.int v) { $_setSignedInt32(19, v); }
@$pb.TagNumber(23)
$core.bool hasAttachmentNumber() => $_has(19);
@$pb.TagNumber(23)
void clearAttachmentNumber() => $_clearField(23);
@$pb.TagNumber(24)
$pb.PbList<$0.ClaimSummary> get claims => $_getList(20);
$pb.PbList<$29.ClaimSummary> get claims => $_getList(20);
@$pb.TagNumber(25)
$core.int get claimNumber => $_getIZ(21);
@$pb.TagNumber(25)
set claimNumber($core.int value) => $_setSignedInt32(21, value);
set claimNumber($core.int v) { $_setSignedInt32(21, v); }
@$pb.TagNumber(25)
$core.bool hasClaimNumber() => $_has(21);
@$pb.TagNumber(25)
@@ -393,7 +441,7 @@ class ActorPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(26)
$core.String get photoURI => $_getSZ(22);
@$pb.TagNumber(26)
set photoURI($core.String value) => $_setString(22, value);
set photoURI($core.String v) { $_setString(22, v); }
@$pb.TagNumber(26)
$core.bool hasPhotoURI() => $_has(22);
@$pb.TagNumber(26)
@@ -402,37 +450,6 @@ class ActorPayload extends $pb.GeneratedMessage {
/// Prefix used to create executionflow identifiers
@$pb.TagNumber(28)
$pb.PbList<$core.String> get connectionIdentifierPrefixes => $_getList(23);
@$pb.TagNumber(29)
$core.bool get isSlotBookingEnabled => $_getBF(24);
@$pb.TagNumber(29)
set isSlotBookingEnabled($core.bool value) => $_setBool(24, value);
@$pb.TagNumber(29)
$core.bool hasIsSlotBookingEnabled() => $_has(24);
@$pb.TagNumber(29)
void clearIsSlotBookingEnabled() => $_clearField(29);
@$pb.TagNumber(30)
$1.SiteAlias get siteAlias => $_getN(25);
@$pb.TagNumber(30)
set siteAlias($1.SiteAlias value) => $_setField(30, value);
@$pb.TagNumber(30)
$core.bool hasSiteAlias() => $_has(25);
@$pb.TagNumber(30)
void clearSiteAlias() => $_clearField(30);
@$pb.TagNumber(30)
$1.SiteAlias ensureSiteAlias() => $_ensure(25);
@$pb.TagNumber(31)
$2.ActorAuthorisation get appointmentConstraints => $_getN(26);
@$pb.TagNumber(31)
set appointmentConstraints($2.ActorAuthorisation value) => $_setField(31, value);
@$pb.TagNumber(31)
$core.bool hasAppointmentConstraints() => $_has(26);
@$pb.TagNumber(31)
void clearAppointmentConstraints() => $_clearField(31);
@$pb.TagNumber(31)
$2.ActorAuthorisation ensureAppointmentConstraints() => $_ensure(26);
}
enum ActorEnrichment_Content {
@@ -451,25 +468,41 @@ class ActorEnrichment extends $pb.GeneratedMessage {
$core.String? project,
$core.String? parentEntityName,
$core.String? parentEntityID,
$3.PartnerPayload? partner,
$75.PartnerPayload? partner,
}) {
final result = create();
if (parentEventID != null) result.parentEventID = parentEventID;
if (entityName != null) result.entityName = entityName;
if (entityRefID != null) result.entityRefID = entityRefID;
if (refFilter != null) result.refFilter = refFilter;
if (mergePath != null) result.mergePath = mergePath;
if (project != null) result.project = project;
if (parentEntityName != null) result.parentEntityName = parentEntityName;
if (parentEntityID != null) result.parentEntityID = parentEntityID;
if (partner != null) result.partner = partner;
return result;
final $result = create();
if (parentEventID != null) {
$result.parentEventID = parentEventID;
}
if (entityName != null) {
$result.entityName = entityName;
}
if (entityRefID != null) {
$result.entityRefID = entityRefID;
}
if (refFilter != null) {
$result.refFilter = refFilter;
}
if (mergePath != null) {
$result.mergePath = mergePath;
}
if (project != null) {
$result.project = project;
}
if (parentEntityName != null) {
$result.parentEntityName = parentEntityName;
}
if (parentEntityID != null) {
$result.parentEntityID = parentEntityID;
}
if (partner != null) {
$result.partner = partner;
}
return $result;
}
ActorEnrichment._();
factory ActorEnrichment.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorEnrichment.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorEnrichment._() : super();
factory ActorEnrichment.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorEnrichment.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static const $core.Map<$core.int, ActorEnrichment_Content> _ActorEnrichment_ContentByTag = {
10 : ActorEnrichment_Content.partner,
@@ -485,21 +518,25 @@ class ActorEnrichment extends $pb.GeneratedMessage {
..aOS(6, _omitFieldNames ? '' : 'Project', protoName: 'Project')
..aOS(7, _omitFieldNames ? '' : 'ParentEntityName', protoName: 'ParentEntityName')
..aOS(8, _omitFieldNames ? '' : 'ParentEntityID', protoName: 'ParentEntityID')
..aOM<$3.PartnerPayload>(10, _omitFieldNames ? '' : 'Partner', protoName: 'Partner', subBuilder: $3.PartnerPayload.create)
..aOM<$75.PartnerPayload>(10, _omitFieldNames ? '' : 'Partner', protoName: 'Partner', subBuilder: $75.PartnerPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorEnrichment clone() => ActorEnrichment()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorEnrichment copyWith(void Function(ActorEnrichment) updates) => super.copyWith((message) => updates(message as ActorEnrichment)) as ActorEnrichment;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorEnrichment create() => ActorEnrichment._();
@$core.override
ActorEnrichment createEmptyInstance() => create();
static $pb.PbList<ActorEnrichment> createRepeated() => $pb.PbList<ActorEnrichment>();
@$core.pragma('dart2js:noInline')
@@ -512,7 +549,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get parentEventID => $_getSZ(0);
@$pb.TagNumber(1)
set parentEventID($core.String value) => $_setString(0, value);
set parentEventID($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasParentEventID() => $_has(0);
@$pb.TagNumber(1)
@@ -521,7 +558,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get entityName => $_getSZ(1);
@$pb.TagNumber(2)
set entityName($core.String value) => $_setString(1, value);
set entityName($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasEntityName() => $_has(1);
@$pb.TagNumber(2)
@@ -530,7 +567,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
$core.String get entityRefID => $_getSZ(2);
@$pb.TagNumber(3)
set entityRefID($core.String value) => $_setString(2, value);
set entityRefID($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasEntityRefID() => $_has(2);
@$pb.TagNumber(3)
@@ -539,7 +576,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$core.String get refFilter => $_getSZ(3);
@$pb.TagNumber(4)
set refFilter($core.String value) => $_setString(3, value);
set refFilter($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasRefFilter() => $_has(3);
@$pb.TagNumber(4)
@@ -548,7 +585,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
$core.String get mergePath => $_getSZ(4);
@$pb.TagNumber(5)
set mergePath($core.String value) => $_setString(4, value);
set mergePath($core.String v) { $_setString(4, v); }
@$pb.TagNumber(5)
$core.bool hasMergePath() => $_has(4);
@$pb.TagNumber(5)
@@ -557,7 +594,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(6)
$core.String get project => $_getSZ(5);
@$pb.TagNumber(6)
set project($core.String value) => $_setString(5, value);
set project($core.String v) { $_setString(5, v); }
@$pb.TagNumber(6)
$core.bool hasProject() => $_has(5);
@$pb.TagNumber(6)
@@ -566,7 +603,7 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(7)
$core.String get parentEntityName => $_getSZ(6);
@$pb.TagNumber(7)
set parentEntityName($core.String value) => $_setString(6, value);
set parentEntityName($core.String v) { $_setString(6, v); }
@$pb.TagNumber(7)
$core.bool hasParentEntityName() => $_has(6);
@$pb.TagNumber(7)
@@ -575,22 +612,22 @@ class ActorEnrichment extends $pb.GeneratedMessage {
@$pb.TagNumber(8)
$core.String get parentEntityID => $_getSZ(7);
@$pb.TagNumber(8)
set parentEntityID($core.String value) => $_setString(7, value);
set parentEntityID($core.String v) { $_setString(7, v); }
@$pb.TagNumber(8)
$core.bool hasParentEntityID() => $_has(7);
@$pb.TagNumber(8)
void clearParentEntityID() => $_clearField(8);
@$pb.TagNumber(10)
$3.PartnerPayload get partner => $_getN(8);
$75.PartnerPayload get partner => $_getN(8);
@$pb.TagNumber(10)
set partner($3.PartnerPayload value) => $_setField(10, value);
set partner($75.PartnerPayload v) { $_setField(10, v); }
@$pb.TagNumber(10)
$core.bool hasPartner() => $_has(8);
@$pb.TagNumber(10)
void clearPartner() => $_clearField(10);
@$pb.TagNumber(10)
$3.PartnerPayload ensurePartner() => $_ensure(8);
$75.PartnerPayload ensurePartner() => $_ensure(8);
}
class ActorTriplet extends $pb.GeneratedMessage {
@@ -599,17 +636,21 @@ class ActorTriplet extends $pb.GeneratedMessage {
Actor? previous,
Actor? lastEvent,
}) {
final result = create();
if (current != null) result.current = current;
if (previous != null) result.previous = previous;
if (lastEvent != null) result.lastEvent = lastEvent;
return result;
final $result = create();
if (current != null) {
$result.current = current;
}
if (previous != null) {
$result.previous = previous;
}
if (lastEvent != null) {
$result.lastEvent = lastEvent;
}
return $result;
}
ActorTriplet._();
factory ActorTriplet.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorTriplet.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorTriplet._() : super();
factory ActorTriplet.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorTriplet.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorTriplet', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Actor>(1, _omitFieldNames ? '' : 'Current', protoName: 'Current', subBuilder: Actor.create)
@@ -618,17 +659,21 @@ class ActorTriplet extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorTriplet clone() => ActorTriplet()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorTriplet copyWith(void Function(ActorTriplet) updates) => super.copyWith((message) => updates(message as ActorTriplet)) as ActorTriplet;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorTriplet create() => ActorTriplet._();
@$core.override
ActorTriplet createEmptyInstance() => create();
static $pb.PbList<ActorTriplet> createRepeated() => $pb.PbList<ActorTriplet>();
@$core.pragma('dart2js:noInline')
@@ -638,7 +683,7 @@ class ActorTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
Actor get current => $_getN(0);
@$pb.TagNumber(1)
set current(Actor value) => $_setField(1, value);
set current(Actor v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasCurrent() => $_has(0);
@$pb.TagNumber(1)
@@ -649,7 +694,7 @@ class ActorTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
Actor get previous => $_getN(1);
@$pb.TagNumber(2)
set previous(Actor value) => $_setField(2, value);
set previous(Actor v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasPrevious() => $_has(1);
@$pb.TagNumber(2)
@@ -660,7 +705,7 @@ class ActorTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
Actor get lastEvent => $_getN(2);
@$pb.TagNumber(3)
set lastEvent(Actor value) => $_setField(3, value);
set lastEvent(Actor v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasLastEvent() => $_has(2);
@$pb.TagNumber(3)
@@ -670,5 +715,5 @@ class ActorTriplet extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from actor.proto.
// Generated code. Do not modify.
// source: actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actor.proto.
// Generated code. Do not modify.
// source: actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -61,109 +60,93 @@ const ActorPayload$json = {
{'1': 'ClaimNumber', '3': 25, '4': 1, '5': 5, '8': {}, '10': 'ClaimNumber'},
{'1': 'PhotoURI', '3': 26, '4': 1, '5': 9, '8': {}, '10': 'PhotoURI'},
{'1': 'ConnectionIdentifierPrefixes', '3': 28, '4': 3, '5': 9, '8': {}, '10': 'ConnectionIdentifierPrefixes'},
{'1': 'IsSlotBookingEnabled', '3': 29, '4': 1, '5': 8, '8': {}, '10': 'IsSlotBookingEnabled'},
{'1': 'SiteAlias', '3': 30, '4': 1, '5': 11, '6': '.api.SiteAlias', '8': {}, '10': 'SiteAlias'},
{'1': 'AppointmentConstraints', '3': 31, '4': 1, '5': 11, '6': '.api.ActorAuthorisation', '10': 'AppointmentConstraints'},
],
'7': {},
};
/// Descriptor for `ActorPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorPayloadDescriptor = $convert.base64Decode(
'CgxBY3RvclBheWxvYWQS1AMKBE5hbWUYASABKAlCvwOSQQwyCkFjdG9yIE5hbWW6gQEEcgIQAa'
'LCGD5Nb3ZlbWVudCxTdG9jayxFeGVjdXRpb25mbG93LEhhbmRsaW5ndW5pdCxPcmRlcixBY3Rv'
'cixUcmFja2luZ9LCGOECChAKBUFjdG9yEgVhY3RvchgBCiAKDUV4ZWN1dGlvbmZsb3cSDWV4ZW'
'N1dGlvbmZsb3cYAQoeCgxIYW5kbGluZ3VuaXQSDGhhbmRsaW5ndW5pdBgBCg4KBEl0ZW0SBGl0'
'ZW0YAQoWCghNb3ZlbWVudBIIbW92ZW1lbnQYAQoQCgVPcmRlchIFb3JkZXIYAQoUCgdQYXJ0bm'
'VyEgdwYXJ0bmVyGAEKEAoFU3RvY2sSBXN0b2NrGAEKTQoFU3RvY2sSG3N0b2NrX2V4dGVuZGVk'
'X21hdGVyaWFsaXplZConU2ltcGxlQWdncmVnYXRlRnVuY3Rpb24oYW55TGFzdCxTdHJpbmcpCk'
'IKBVN0b2NrEg5zdG9ja19leHRlbmRlZBgBKidTaW1wbGVBZ2dyZWdhdGVGdW5jdGlvbihhbnlM'
'YXN0LFN0cmluZykKFgoIVHJhY2tpbmcSCHRyYWNraW5nGAFSBE5hbWUSXAoGSWRUeXBlGAIgAS'
'gOMgsuYXBpLklkVHlwZUI3ysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTawhgTChEK'
'ASoSDHNob3J0S2V5d29yZFIGSWRUeXBlEv0BCghNZXRhRGF0YRgDIAMoCzIULmFwaS5NZXRhZG'
'F0YUVsZW1lbnRCygGSQYgBMoUBTWV0YWRhdGEgYXJlIGNoYXJhY3RlcmlzdGljcyBzcGVjaWZp'
'YyB0byB0aGUgcHJvamVjdC4gVGhleSBjYW4gYmUgb2Ygc2V2ZXJhbCBkYXRhIGZvcm0gKHN0cm'
'luZywgaW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0YW1wKcDBGAHqwRgDS2V5msIY'
'JgoOCgVPcmRlchIFb3JkZXIKFAoIVHJhY2tpbmcSCHRyYWNraW5nqsIYBUFjdG9yUghNZXRhRG'
'F0YRImCgdBZGRyZXNzGAQgASgLMgwuYXBpLkFkZHJlc3NSB0FkZHJlc3MSqQIKBlN0YXR1cxgG'
'IAEoCzIWLmFwaS5BY3RvclN0YXR1c1N0cnVjdEL4AZJBAkABuoEBBYoBAhgBmsIYtgEKEQoFT3'
'JkZXISCG1vdmVtZW50Ch4KDUV4ZWN1dGlvbmZsb3cSDWV4ZWN1dGlvbmZsb3cKHAoMSGFuZGxp'
'bmd1bml0EgxoYW5kbGluZ3VuaXQKDgoFU3RvY2sSBXN0b2NrCiQKBVN0b2NrEhtzdG9ja19leH'
'RlbmRlZF9tYXRlcmlhbGl6ZWQKFwoFU3RvY2sSDnN0b2NrX2V4dGVuZGVkChQKCFRyYWNraW5n'
'Egh0cmFja2luZ7rCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0b2NrLE1vdmVtZW50LFRyYWNraW'
'5nUgZTdGF0dXMS9wMKCVBhcnRuZXJJRBgHIAEoCULYA5JBFDISRXhpc3RpbmcgUGFydG5lcklE'
'2sEYB1BhcnRuZXKiwhgUTW92ZW1lbnQsU3RvY2ssQWN0b3LKwhgcChoKASoSFWdlbmVyYXRlZF'
'RleHQsa2V5d29yZNLCGNkCChAKBUFjdG9yEgVhY3RvchgBCh4KDUV4ZWN1dGlvbmZsb3cSDWV4'
'ZWN1dGlvbmZsb3cKHAoMSGFuZGxpbmd1bml0EgxoYW5kbGluZ3VuaXQKDgoESXRlbRIEaXRlbR'
'gBChYKCE1vdmVtZW50Eghtb3ZlbWVudBgBCg4KBU9yZGVyEgVvcmRlcgoUCgdQYXJ0bmVyEgdw'
'YXJ0bmVyGAEKEAoFU3RvY2sSBXN0b2NrGAEKTQoFU3RvY2sSG3N0b2NrX2V4dGVuZGVkX21hdG'
'VyaWFsaXplZConU2ltcGxlQWdncmVnYXRlRnVuY3Rpb24oYW55TGFzdCxTdHJpbmcpCkIKBVN0'
'b2NrEg5zdG9ja19leHRlbmRlZBgBKidTaW1wbGVBZ2dyZWdhdGVGdW5jdGlvbihhbnlMYXN0LF'
'N0cmluZykKFAoIVHJhY2tpbmcSCHRyYWNraW5n2sIYEwoRCgEqEgxzaG9ydEtleXdvcmT6whgF'
'QWN0b3JSCVBhcnRuZXJJRBI0ChVBZGRpdGlvbmFsSW5mb3JtYXRpb24YDyABKAlSFUFkZGl0aW'
'9uYWxJbmZvcm1hdGlvbhKvAgoIVHlwb2xvZ3kYCiABKA4yEi5hcGkuQWN0b3JUeXBvbG9neUL+'
'AdLCGPkBChAKBUFjdG9yEgVhY3RvchgBCiAKDUV4ZWN1dGlvbmZsb3cSDWV4ZWN1dGlvbmZsb3'
'cYAQoQCgVTdG9jaxIFc3RvY2sYAQoeCgxIYW5kbGluZ3VuaXQSDGhhbmRsaW5ndW5pdBgBCk0K'
'BVN0b2NrEhtzdG9ja19leHRlbmRlZF9tYXRlcmlhbGl6ZWQqJ1NpbXBsZUFnZ3JlZ2F0ZUZ1bm'
'N0aW9uKGFueUxhc3QsU3RyaW5nKQpCCgVTdG9jaxIOc3RvY2tfZXh0ZW5kZWQYASonU2ltcGxl'
'QWdncmVnYXRlRnVuY3Rpb24oYW55TGFzdCxTdHJpbmcpUghUeXBvbG9neRK+AgoIU25hcHNob3'
'QYCyABKAsyEi5hcGkuQWN0b3JTbmFwc2hvdEKNAprCGNkBCg4KBVN0b2NrEgVzdG9jawokCgVT'
'dG9jaxIbc3RvY2tfZXh0ZW5kZWRfbWF0ZXJpYWxpemVkChcKBVN0b2NrEg5zdG9ja19leHRlbm'
'RlZAoeCg1FeGVjdXRpb25mbG93Eg1leGVjdXRpb25mbG93ChQKCE1vdmVtZW50Eghtb3ZlbWVu'
'dAocCgxIYW5kbGluZ3VuaXQSDGhhbmRsaW5ndW5pdAoOCgVPcmRlchIFb3JkZXIKDgoFQWN0b3'
'ISBWFjdG9yChQKCFRyYWNraW5nEgh0cmFja2luZ7rCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0'
'b2NrLE1vdmVtZW50LFRyYWNraW5nUghTbmFwc2hvdBKrAgoGRW1haWxzGAwgAygJQpICkkFRMh'
'1NdXN0IGJlIGEgdmFsaWQgZW1haWwgYWRkcmVzc0owWyJKb2huLmRvZUByZWZsZXguY29tIiwg'
'IndpbGwuc21pdGhAcmVmbGV4LmNvbSJduoEBDJIBCSIHcgVgAfABAZrCGKkBCg4KBVN0b2NrEg'
'VzdG9jawokCgVTdG9jaxIbc3RvY2tfZXh0ZW5kZWRfbWF0ZXJpYWxpemVkChcKBVN0b2NrEg5z'
'dG9ja19leHRlbmRlZAoUCghNb3ZlbWVudBIIbW92ZW1lbnQKHAoMSGFuZGxpbmd1bml0EgxoYW'
'5kbGluZ3VuaXQKDgoFQWN0b3ISBWFjdG9yChQKCFRyYWNraW5nEgh0cmFja2luZ1IGRW1haWxz'
'EqMCCgZQaG9uZXMYDSADKAlCigKSQSlKJ1siMDcgMDAgMDAgMDAgMDAiLCAiKzQ5IDYgMDAgMD'
'AgMDAgMDAiXZrCGNkBCg4KBVN0b2NrEgVzdG9jawokCgVTdG9jaxIbc3RvY2tfZXh0ZW5kZWRf'
'bWF0ZXJpYWxpemVkChcKBVN0b2NrEg5zdG9ja19leHRlbmRlZAoeCg1FeGVjdXRpb25mbG93Eg'
'1leGVjdXRpb25mbG93ChQKCE1vdmVtZW50Eghtb3ZlbWVudAocCgxIYW5kbGluZ3VuaXQSDGhh'
'bmRsaW5ndW5pdAoOCgVPcmRlchIFb3JkZXIKDgoFQWN0b3ISBWFjdG9yChQKCFRyYWNraW5nEg'
'h0cmFja2luZ1IGUGhvbmVzEmsKDE1hbmFnZWRTdG9jaxgOIAEoCEJHkkESMhBDYW4gbWFuYWdl'
'IHN0b2NrusIYCFRyYWNraW5n0sIYIgogCg1FeGVjdXRpb25mbG93Eg1leGVjdXRpb25mbG93GA'
'FSDE1hbmFnZWRTdG9jaxJLCglJc0NhcnJpZXIYECABKAhCLZJBGDIWQ2FuIGJlIHVzZWQgYXMg'
'Y2FycmllcrrCGA5TdG9jayxNb3ZlbWVudFIJSXNDYXJyaWVyEtwCCg9DYXJyaWVyU2VydmljZX'
'MYESADKAsyEy5hcGkuQ2FycmllclNlcnZpY2VCnAKSQRoyGExpc3Qgb2YgY2FycmllciBzZXJ2'
'aWNlc+rBGAJJRJrCGNkBCg4KBVN0b2NrEgVzdG9jawokCgVTdG9jaxIbc3RvY2tfZXh0ZW5kZW'
'RfbWF0ZXJpYWxpemVkChcKBVN0b2NrEg5zdG9ja19leHRlbmRlZAoeCg1FeGVjdXRpb25mbG93'
'Eg1leGVjdXRpb25mbG93ChQKCE1vdmVtZW50Eghtb3ZlbWVudAocCgxIYW5kbGluZ3VuaXQSDG'
'hhbmRsaW5ndW5pdAoOCgVPcmRlchIFb3JkZXIKDgoFQWN0b3ISBWFjdG9yChQKCFRyYWNraW5n'
'Egh0cmFja2luZ7rCGBdTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IPQ2FycmllclNlcnZpY2VzEk'
'kKEUlzU2hpcFRvQ29ubmVjdGVkGBIgASgIQhu6whgXU3RvY2ssTW92ZW1lbnQsVHJhY2tpbmdS'
'EUlzU2hpcFRvQ29ubmVjdGVkEk0KE0lzU2hpcEZyb21Db25uZWN0ZWQYEyABKAhCG7rCGBdTdG'
'9jayxNb3ZlbWVudCxUcmFja2luZ1ITSXNTaGlwRnJvbUNvbm5lY3RlZBKiAQoSU2hpcFRvUGFy'
'dG5lckFwcElEGBQgASgJQnKSQR0yG011c3QgYmUgZXhpc3RpbmcgcGFydG5lciBJRLrCGBdTdG'
'9jayxNb3ZlbWVudCxUcmFja2luZ8rCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk2sIY'
'EwoRCgEqEgxzaG9ydEtleXdvcmRSElNoaXBUb1BhcnRuZXJBcHBJRBKmAQoUU2hpcEZyb21QYX'
'J0bmVyQXBwSUQYFSABKAlCcpJBHTIbTXVzdCBiZSBleGlzdGluZyBwYXJ0bmVyIElEusIYF1N0'
'b2NrLE1vdmVtZW50LFRyYWNraW5nysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTawh'
'gTChEKASoSDHNob3J0S2V5d29yZFIUU2hpcEZyb21QYXJ0bmVyQXBwSUQSsQEKC0F0dGFjaG1l'
'bnRzGBYgAygLMhYuYXBpLkF0dGFjaG1lbnRTdW1tYXJ5QneSQSAyHk51bWJlciBvZiBhdHRhY2'
'htZW50cyBwZXIgdHlwZfLBGCFBdHRhY2htZW50QWRkZWQsQXR0YWNobWVudFJlbW92ZWS6whgr'
'T3JkZXIsRXhlY3V0aW9uZmxvdyxTdG9jayxNb3ZlbWVudCxUcmFja2luZ1ILQXR0YWNobWVudH'
'MSewoQQXR0YWNobWVudE51bWJlchgXIAEoBUJPkkEdMhtUb3RhbCBudW1iZXIgb2YgYXR0YWNo'
'bWVudHO6whgrT3JkZXIsRXhlY3V0aW9uZmxvdyxTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IQQX'
'R0YWNobWVudE51bWJlchKVAQoGQ2xhaW1zGBggAygLMhEuYXBpLkNsYWltU3VtbWFyeUJqkkEb'
'MhlOdW1iZXIgb2YgY2xhaW1zIHBlciB0eXBl6sEYC0NsYWltVHlwZUlE8sEYCkNsYWltQWRkZW'
'S6whgrT3JkZXIsRXhlY3V0aW9uZmxvdyxTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IGQ2xhaW1z'
'El4KC0NsYWltTnVtYmVyGBkgASgFQjySQRgyFlRvdGFsIG51bWJlciBvZiBjbGFpbXO6whgdT3'
'JkZXIsU3RvY2ssTW92ZW1lbnQsVHJhY2tpbmdSC0NsYWltTnVtYmVyErcCCghQaG90b1VSSRga'
'IAEoCUKaApJBKUonImh0dHBzOi8vcmVmbGV4LXZpc2liaWxpdHktZm9yZXZlci5qcGci0sIY2Q'
'EKEAoFQWN0b3ISBWFjdG9yGAEKIAoNRXhlY3V0aW9uZmxvdxINZXhlY3V0aW9uZmxvdxgBChAK'
'BVN0b2NrEgVzdG9jaxgBCk0KBVN0b2NrEhtzdG9ja19leHRlbmRlZF9tYXRlcmlhbGl6ZWQqJ1'
'NpbXBsZUFnZ3JlZ2F0ZUZ1bmN0aW9uKGFueUxhc3QsU3RyaW5nKQpCCgVTdG9jaxIOc3RvY2tf'
'ZXh0ZW5kZWQYASonU2ltcGxlQWdncmVnYXRlRnVuY3Rpb24oYW55TGFzdCxTdHJpbmcp2sIYDA'
'oKCgEqEgVpbWFnZVIIUGhvdG9VUkkSXwocQ29ubmVjdGlvbklkZW50aWZpZXJQcmVmaXhlcxgc'
'IAMoCUIbusIYF1N0b2NrLE1vdmVtZW50LFRyYWNraW5nUhxDb25uZWN0aW9uSWRlbnRpZmllcl'
'ByZWZpeGVzEk8KFElzU2xvdEJvb2tpbmdFbmFibGVkGB0gASgIQhu6whgXU3RvY2ssTW92ZW1l'
'bnQsVHJhY2tpbmdSFElzU2xvdEJvb2tpbmdFbmFibGVkEkkKCVNpdGVBbGlhcxgeIAEoCzIOLm'
'FwaS5TaXRlQWxpYXNCG7rCGBdTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IJU2l0ZUFsaWFzEk8K'
'FkFwcG9pbnRtZW50Q29uc3RyYWludHMYHyABKAsyFy5hcGkuQWN0b3JBdXRob3Jpc2F0aW9uUh'
'ZBcHBvaW50bWVudENvbnN0cmFpbnRzOgySQQkKB9IBBE5hbWU=');
'CgxBY3RvclBheWxvYWQShAMKBE5hbWUYASABKAlC7wKSQQwyCkFjdG9yIE5hbWX6QgRyAhABos'
'IYPk1vdmVtZW50LFN0b2NrLEV4ZWN1dGlvbmZsb3csSGFuZGxpbmd1bml0LE9yZGVyLEFjdG9y'
'LFRyYWNraW5n0sIYkgIKEAoFQWN0b3ISBWFjdG9yGAEKIAoNRXhlY3V0aW9uZmxvdxINZXhlY3'
'V0aW9uZmxvdxgBCh4KDEhhbmRsaW5ndW5pdBIMaGFuZGxpbmd1bml0GAEKDgoESXRlbRIEaXRl'
'bRgBChYKCE1vdmVtZW50Eghtb3ZlbWVudBgBChAKBU9yZGVyEgVvcmRlchgBChQKB1BhcnRuZX'
'ISB3BhcnRuZXIYAQoQCgVTdG9jaxIFc3RvY2sYAQpCCgVTdG9jaxIOc3RvY2tfZXh0ZW5kZWQY'
'ASonU2ltcGxlQWdncmVnYXRlRnVuY3Rpb24oYW55TGFzdCxTdHJpbmcpChYKCFRyYWNraW5nEg'
'h0cmFja2luZxgBUgROYW1lElwKBklkVHlwZRgCIAEoDjILLmFwaS5JZFR5cGVCN8rCGBwKGgoB'
'KhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk2sIYEwoRCgEqEgxzaG9ydEtleXdvcmRSBklkVHlwZR'
'L9AQoITWV0YURhdGEYAyADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50QsoBkkGIATKFAU1ldGFk'
'YXRhIGFyZSBjaGFyYWN0ZXJpc3RpY3Mgc3BlY2lmaWMgdG8gdGhlIHByb2plY3QuIFRoZXkgY2'
'FuIGJlIG9mIHNldmVyYWwgZGF0YSBmb3JtIChzdHJpbmcsIGludGVnZXIsIGZsb2F0LCBib29s'
'ZWFuIG9yIHRpbWVzdGFtcCnAwRgB6sEYA0tleZrCGCYKDgoFT3JkZXISBW9yZGVyChQKCFRyYW'
'NraW5nEgh0cmFja2luZ6rCGAVBY3RvclIITWV0YURhdGESJgoHQWRkcmVzcxgEIAEoCzIMLmFw'
'aS5BZGRyZXNzUgdBZGRyZXNzEoICCgZTdGF0dXMYBiABKAsyFi5hcGkuQWN0b3JTdGF0dXNTdH'
'J1Y3RC0QGSQQJAAfpCBYoBAhgBmsIYkAEKEQoFT3JkZXISCG1vdmVtZW50Ch4KDUV4ZWN1dGlv'
'bmZsb3cSDWV4ZWN1dGlvbmZsb3cKHAoMSGFuZGxpbmd1bml0EgxoYW5kbGluZ3VuaXQKDgoFU3'
'RvY2sSBXN0b2NrChcKBVN0b2NrEg5zdG9ja19leHRlbmRlZAoUCghUcmFja2luZxIIdHJhY2tp'
'bme6whgrT3JkZXIsRXhlY3V0aW9uZmxvdyxTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IGU3RhdH'
'VzEtEDCglQYXJ0bmVySUQYByABKAlCsgOSQRQyEkV4aXN0aW5nIFBhcnRuZXJJRNrBGAdQYXJ0'
'bmVyosIYPk1vdmVtZW50LFN0b2NrLEV4ZWN1dGlvbmZsb3csSGFuZGxpbmd1bml0LE9yZGVyLE'
'FjdG9yLFRyYWNraW5nysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTSwhiSAgoQCgVB'
'Y3RvchIFYWN0b3IYAQogCg1FeGVjdXRpb25mbG93Eg1leGVjdXRpb25mbG93GAEKHgoMSGFuZG'
'xpbmd1bml0EgxoYW5kbGluZ3VuaXQYAQoOCgRJdGVtEgRpdGVtGAEKFgoITW92ZW1lbnQSCG1v'
'dmVtZW50GAEKEAoFT3JkZXISBW9yZGVyGAEKFAoHUGFydG5lchIHcGFydG5lchgBChAKBVN0b2'
'NrEgVzdG9jaxgBCkIKBVN0b2NrEg5zdG9ja19leHRlbmRlZBgBKidTaW1wbGVBZ2dyZWdhdGVG'
'dW5jdGlvbihhbnlMYXN0LFN0cmluZykKFgoIVHJhY2tpbmcSCHRyYWNraW5nGAHawhgTChEKAS'
'oSDHNob3J0S2V5d29yZFIJUGFydG5lcklEEjQKFUFkZGl0aW9uYWxJbmZvcm1hdGlvbhgPIAEo'
'CVIVQWRkaXRpb25hbEluZm9ybWF0aW9uEsABCghUeXBvbG9neRgKIAEoDjISLmFwaS5BY3Rvcl'
'R5cG9sb2d5Qo8B0sIYigEKEAoFQWN0b3ISBWFjdG9yGAEKIAoNRXhlY3V0aW9uZmxvdxINZXhl'
'Y3V0aW9uZmxvdxgBChAKBVN0b2NrEgVzdG9jaxgBCkIKBVN0b2NrEg5zdG9ja19leHRlbmRlZB'
'gBKidTaW1wbGVBZ2dyZWdhdGVGdW5jdGlvbihhbnlMYXN0LFN0cmluZylSCFR5cG9sb2d5EpgC'
'CghTbmFwc2hvdBgLIAEoCzISLmFwaS5BY3RvclNuYXBzaG90QucBmsIYswEKDgoFU3RvY2sSBX'
'N0b2NrChcKBVN0b2NrEg5zdG9ja19leHRlbmRlZAoeCg1FeGVjdXRpb25mbG93Eg1leGVjdXRp'
'b25mbG93ChQKCE1vdmVtZW50Eghtb3ZlbWVudAocCgxIYW5kbGluZ3VuaXQSDGhhbmRsaW5ndW'
'5pdAoOCgVPcmRlchIFb3JkZXIKDgoFQWN0b3ISBWFjdG9yChQKCFRyYWNraW5nEgh0cmFja2lu'
'Z7rCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0b2NrLE1vdmVtZW50LFRyYWNraW5nUghTbmFwc2'
'hvdBKEAgoGRW1haWxzGAwgAygJQusBkkFRMh1NdXN0IGJlIGEgdmFsaWQgZW1haWwgYWRkcmVz'
'c0owWyJKb2huLmRvZUByZWZsZXguY29tIiwgIndpbGwuc21pdGhAcmVmbGV4LmNvbSJd+kIMkg'
'EJIgdyBWAB8AEBmsIYgwEKDgoFU3RvY2sSBXN0b2NrChcKBVN0b2NrEg5zdG9ja19leHRlbmRl'
'ZAoUCghNb3ZlbWVudBIIbW92ZW1lbnQKHAoMSGFuZGxpbmd1bml0EgxoYW5kbGluZ3VuaXQKDg'
'oFQWN0b3ISBWFjdG9yChQKCFRyYWNraW5nEgh0cmFja2luZ1IGRW1haWxzEv0BCgZQaG9uZXMY'
'DSADKAlC5AGSQSlKJ1siMDcgMDAgMDAgMDAgMDAiLCAiKzQ5IDYgMDAgMDAgMDAgMDAiXZrCGL'
'MBCg4KBVN0b2NrEgVzdG9jawoXCgVTdG9jaxIOc3RvY2tfZXh0ZW5kZWQKHgoNRXhlY3V0aW9u'
'ZmxvdxINZXhlY3V0aW9uZmxvdwoUCghNb3ZlbWVudBIIbW92ZW1lbnQKHAoMSGFuZGxpbmd1bm'
'l0EgxoYW5kbGluZ3VuaXQKDgoFT3JkZXISBW9yZGVyCg4KBUFjdG9yEgVhY3RvcgoUCghUcmFj'
'a2luZxIIdHJhY2tpbmdSBlBob25lcxJrCgxNYW5hZ2VkU3RvY2sYDiABKAhCR5JBEjIQQ2FuIG'
'1hbmFnZSBzdG9ja7rCGAhUcmFja2luZ9LCGCIKIAoNRXhlY3V0aW9uZmxvdxINZXhlY3V0aW9u'
'ZmxvdxgBUgxNYW5hZ2VkU3RvY2sSSwoJSXNDYXJyaWVyGBAgASgIQi2SQRgyFkNhbiBiZSB1c2'
'VkIGFzIGNhcnJpZXK6whgOU3RvY2ssTW92ZW1lbnRSCUlzQ2FycmllchK2AgoPQ2FycmllclNl'
'cnZpY2VzGBEgAygLMhMuYXBpLkNhcnJpZXJTZXJ2aWNlQvYBkkEaMhhMaXN0IG9mIGNhcnJpZX'
'Igc2VydmljZXPqwRgCSUSawhizAQoOCgVTdG9jaxIFc3RvY2sKFwoFU3RvY2sSDnN0b2NrX2V4'
'dGVuZGVkCh4KDUV4ZWN1dGlvbmZsb3cSDWV4ZWN1dGlvbmZsb3cKFAoITW92ZW1lbnQSCG1vdm'
'VtZW50ChwKDEhhbmRsaW5ndW5pdBIMaGFuZGxpbmd1bml0Cg4KBU9yZGVyEgVvcmRlcgoOCgVB'
'Y3RvchIFYWN0b3IKFAoIVHJhY2tpbmcSCHRyYWNraW5nusIYF1N0b2NrLE1vdmVtZW50LFRyYW'
'NraW5nUg9DYXJyaWVyU2VydmljZXMSSQoRSXNTaGlwVG9Db25uZWN0ZWQYEiABKAhCG7rCGBdT'
'dG9jayxNb3ZlbWVudCxUcmFja2luZ1IRSXNTaGlwVG9Db25uZWN0ZWQSTQoTSXNTaGlwRnJvbU'
'Nvbm5lY3RlZBgTIAEoCEIbusIYF1N0b2NrLE1vdmVtZW50LFRyYWNraW5nUhNJc1NoaXBGcm9t'
'Q29ubmVjdGVkEqIBChJTaGlwVG9QYXJ0bmVyQXBwSUQYFCABKAlCcpJBHTIbTXVzdCBiZSBleG'
'lzdGluZyBwYXJ0bmVyIElEusIYF1N0b2NrLE1vdmVtZW50LFRyYWNraW5nysIYHAoaCgEqEhVn'
'ZW5lcmF0ZWRUZXh0LGtleXdvcmTawhgTChEKASoSDHNob3J0S2V5d29yZFISU2hpcFRvUGFydG'
'5lckFwcElEEqYBChRTaGlwRnJvbVBhcnRuZXJBcHBJRBgVIAEoCUJykkEdMhtNdXN0IGJlIGV4'
'aXN0aW5nIHBhcnRuZXIgSUS6whgXU3RvY2ssTW92ZW1lbnQsVHJhY2tpbmfKwhgcChoKASoSFW'
'dlbmVyYXRlZFRleHQsa2V5d29yZNrCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUhRTaGlwRnJvbVBh'
'cnRuZXJBcHBJRBKxAQoLQXR0YWNobWVudHMYFiADKAsyFi5hcGkuQXR0YWNobWVudFN1bW1hcn'
'lCd5JBIDIeTnVtYmVyIG9mIGF0dGFjaG1lbnRzIHBlciB0eXBl8sEYIUF0dGFjaG1lbnRBZGRl'
'ZCxBdHRhY2htZW50UmVtb3ZlZLrCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0b2NrLE1vdmVtZW'
'50LFRyYWNraW5nUgtBdHRhY2htZW50cxJ7ChBBdHRhY2htZW50TnVtYmVyGBcgASgFQk+SQR0y'
'G1RvdGFsIG51bWJlciBvZiBhdHRhY2htZW50c7rCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0b2'
'NrLE1vdmVtZW50LFRyYWNraW5nUhBBdHRhY2htZW50TnVtYmVyEpUBCgZDbGFpbXMYGCADKAsy'
'ES5hcGkuQ2xhaW1TdW1tYXJ5QmqSQRsyGU51bWJlciBvZiBjbGFpbXMgcGVyIHR5cGXqwRgLQ2'
'xhaW1UeXBlSUTywRgKQ2xhaW1BZGRlZLrCGCtPcmRlcixFeGVjdXRpb25mbG93LFN0b2NrLE1v'
'dmVtZW50LFRyYWNraW5nUgZDbGFpbXMSXgoLQ2xhaW1OdW1iZXIYGSABKAVCPJJBGDIWVG90YW'
'wgbnVtYmVyIG9mIGNsYWltc7rCGB1PcmRlcixTdG9jayxNb3ZlbWVudCxUcmFja2luZ1ILQ2xh'
'aW1OdW1iZXIS6AEKCFBob3RvVVJJGBogASgJQssBkkEpSiciaHR0cHM6Ly9yZWZsZXgtdmlzaW'
'JpbGl0eS1mb3JldmVyLmpwZyLSwhiKAQoQCgVBY3RvchIFYWN0b3IYAQogCg1FeGVjdXRpb25m'
'bG93Eg1leGVjdXRpb25mbG93GAEKEAoFU3RvY2sSBXN0b2NrGAEKQgoFU3RvY2sSDnN0b2NrX2'
'V4dGVuZGVkGAEqJ1NpbXBsZUFnZ3JlZ2F0ZUZ1bmN0aW9uKGFueUxhc3QsU3RyaW5nKdrCGAwK'
'CgoBKhIFaW1hZ2VSCFBob3RvVVJJEl8KHENvbm5lY3Rpb25JZGVudGlmaWVyUHJlZml4ZXMYHC'
'ADKAlCG7rCGBdTdG9jayxNb3ZlbWVudCxUcmFja2luZ1IcQ29ubmVjdGlvbklkZW50aWZpZXJQ'
'cmVmaXhlczoMkkEJCgfSAQROYW1l');
@$core.Deprecated('Use actorEnrichmentDescriptor instead')
const ActorEnrichment$json = {

View File

@@ -1,22 +1,20 @@
// This is a generated file - do not edit.
//
// Generated from actorAction.proto.
// Generated code. Do not modify.
// source: actorAction.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'repositoryShared.pb.dart' as $0;
import 'shared.pb.dart' as $1;
import 'slotbooking.pb.dart' as $2;
import 'repositoryShared.pb.dart' as $70;
import 'shared.pb.dart' as $29;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -26,34 +24,38 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
/// by reseting the quantity of missing stock entry for the current snapshot
class ActorCompleteSnapshotPayload extends $pb.GeneratedMessage {
factory ActorCompleteSnapshotPayload({
$0.ActorSnapshot? snapshot,
$70.ActorSnapshot? snapshot,
}) {
final result = create();
if (snapshot != null) result.snapshot = snapshot;
return result;
final $result = create();
if (snapshot != null) {
$result.snapshot = snapshot;
}
return $result;
}
ActorCompleteSnapshotPayload._();
factory ActorCompleteSnapshotPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorCompleteSnapshotPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorCompleteSnapshotPayload._() : super();
factory ActorCompleteSnapshotPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorCompleteSnapshotPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorCompleteSnapshotPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.ActorSnapshot>(1, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $0.ActorSnapshot.create)
..aOM<$70.ActorSnapshot>(1, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $70.ActorSnapshot.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorCompleteSnapshotPayload clone() => ActorCompleteSnapshotPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorCompleteSnapshotPayload copyWith(void Function(ActorCompleteSnapshotPayload) updates) => super.copyWith((message) => updates(message as ActorCompleteSnapshotPayload)) as ActorCompleteSnapshotPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorCompleteSnapshotPayload create() => ActorCompleteSnapshotPayload._();
@$core.override
ActorCompleteSnapshotPayload createEmptyInstance() => create();
static $pb.PbList<ActorCompleteSnapshotPayload> createRepeated() => $pb.PbList<ActorCompleteSnapshotPayload>();
@$core.pragma('dart2js:noInline')
@@ -61,59 +63,71 @@ class ActorCompleteSnapshotPayload extends $pb.GeneratedMessage {
static ActorCompleteSnapshotPayload? _defaultInstance;
@$pb.TagNumber(1)
$0.ActorSnapshot get snapshot => $_getN(0);
$70.ActorSnapshot get snapshot => $_getN(0);
@$pb.TagNumber(1)
set snapshot($0.ActorSnapshot value) => $_setField(1, value);
set snapshot($70.ActorSnapshot v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasSnapshot() => $_has(0);
@$pb.TagNumber(1)
void clearSnapshot() => $_clearField(1);
@$pb.TagNumber(1)
$0.ActorSnapshot ensureSnapshot() => $_ensure(0);
$70.ActorSnapshot ensureSnapshot() => $_ensure(0);
}
class ActorCompleteSnapshot extends $pb.GeneratedMessage {
factory ActorCompleteSnapshot({
$1.CommandHeader? header,
$1.EntityID? iD,
$29.CommandHeader? header,
$29.EntityID? iD,
ActorCompleteSnapshotPayload? payload,
ActorCompleteSnapshotPayload? eventPayload,
ActorCompleteSnapshotPayload? previousPayload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
if (eventPayload != null) result.eventPayload = eventPayload;
if (previousPayload != null) result.previousPayload = previousPayload;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (iD != null) {
$result.iD = iD;
}
if (payload != null) {
$result.payload = payload;
}
if (eventPayload != null) {
$result.eventPayload = eventPayload;
}
if (previousPayload != null) {
$result.previousPayload = previousPayload;
}
return $result;
}
ActorCompleteSnapshot._();
factory ActorCompleteSnapshot.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorCompleteSnapshot.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorCompleteSnapshot._() : super();
factory ActorCompleteSnapshot.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorCompleteSnapshot.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorCompleteSnapshot', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.CommandHeader.create)
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
..aOM<$29.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.CommandHeader.create)
..aOM<$29.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $29.EntityID.create)
..aOM<ActorCompleteSnapshotPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorCompleteSnapshotPayload.create)
..aOM<ActorCompleteSnapshotPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: ActorCompleteSnapshotPayload.create)
..aOM<ActorCompleteSnapshotPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: ActorCompleteSnapshotPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorCompleteSnapshot clone() => ActorCompleteSnapshot()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorCompleteSnapshot copyWith(void Function(ActorCompleteSnapshot) updates) => super.copyWith((message) => updates(message as ActorCompleteSnapshot)) as ActorCompleteSnapshot;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorCompleteSnapshot create() => ActorCompleteSnapshot._();
@$core.override
ActorCompleteSnapshot createEmptyInstance() => create();
static $pb.PbList<ActorCompleteSnapshot> createRepeated() => $pb.PbList<ActorCompleteSnapshot>();
@$core.pragma('dart2js:noInline')
@@ -121,31 +135,31 @@ class ActorCompleteSnapshot extends $pb.GeneratedMessage {
static ActorCompleteSnapshot? _defaultInstance;
@$pb.TagNumber(1)
$1.CommandHeader get header => $_getN(0);
$29.CommandHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.CommandHeader value) => $_setField(1, value);
set header($29.CommandHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.CommandHeader ensureHeader() => $_ensure(0);
$29.CommandHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$1.EntityID get iD => $_getN(1);
$29.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($1.EntityID value) => $_setField(2, value);
set iD($29.EntityID v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$1.EntityID ensureID() => $_ensure(1);
$29.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
ActorCompleteSnapshotPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(ActorCompleteSnapshotPayload value) => $_setField(3, value);
set payload(ActorCompleteSnapshotPayload v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
@@ -156,7 +170,7 @@ class ActorCompleteSnapshot extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
ActorCompleteSnapshotPayload get eventPayload => $_getN(3);
@$pb.TagNumber(4)
set eventPayload(ActorCompleteSnapshotPayload value) => $_setField(4, value);
set eventPayload(ActorCompleteSnapshotPayload v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasEventPayload() => $_has(3);
@$pb.TagNumber(4)
@@ -167,7 +181,7 @@ class ActorCompleteSnapshot extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
ActorCompleteSnapshotPayload get previousPayload => $_getN(4);
@$pb.TagNumber(5)
set previousPayload(ActorCompleteSnapshotPayload value) => $_setField(5, value);
set previousPayload(ActorCompleteSnapshotPayload v) { $_setField(5, v); }
@$pb.TagNumber(5)
$core.bool hasPreviousPayload() => $_has(4);
@$pb.TagNumber(5)
@@ -176,364 +190,6 @@ class ActorCompleteSnapshot extends $pb.GeneratedMessage {
ActorCompleteSnapshotPayload ensurePreviousPayload() => $_ensure(4);
}
///
/// SetSiteAlias : set a new entry in the SiteActor DB
class ActorSetSiteAliasPayload extends $pb.GeneratedMessage {
factory ActorSetSiteAliasPayload({
$0.SiteAlias? siteAlias,
$core.bool? isSlotBookingEnabled,
$2.ActorAuthorisation? appointmentConstraints,
$core.String? name,
}) {
final result = create();
if (siteAlias != null) result.siteAlias = siteAlias;
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
if (appointmentConstraints != null) result.appointmentConstraints = appointmentConstraints;
if (name != null) result.name = name;
return result;
}
ActorSetSiteAliasPayload._();
factory ActorSetSiteAliasPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorSetSiteAliasPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSetSiteAliasPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create)
..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
..aOM<$2.ActorAuthorisation>(3, _omitFieldNames ? '' : 'AppointmentConstraints', protoName: 'AppointmentConstraints', subBuilder: $2.ActorAuthorisation.create)
..aOS(4, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorSetSiteAliasPayload clone() => ActorSetSiteAliasPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorSetSiteAliasPayload copyWith(void Function(ActorSetSiteAliasPayload) updates) => super.copyWith((message) => updates(message as ActorSetSiteAliasPayload)) as ActorSetSiteAliasPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorSetSiteAliasPayload create() => ActorSetSiteAliasPayload._();
@$core.override
ActorSetSiteAliasPayload createEmptyInstance() => create();
static $pb.PbList<ActorSetSiteAliasPayload> createRepeated() => $pb.PbList<ActorSetSiteAliasPayload>();
@$core.pragma('dart2js:noInline')
static ActorSetSiteAliasPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSetSiteAliasPayload>(create);
static ActorSetSiteAliasPayload? _defaultInstance;
@$pb.TagNumber(1)
$0.SiteAlias get siteAlias => $_getN(0);
@$pb.TagNumber(1)
set siteAlias($0.SiteAlias value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasSiteAlias() => $_has(0);
@$pb.TagNumber(1)
void clearSiteAlias() => $_clearField(1);
@$pb.TagNumber(1)
$0.SiteAlias ensureSiteAlias() => $_ensure(0);
@$pb.TagNumber(2)
$core.bool get isSlotBookingEnabled => $_getBF(1);
@$pb.TagNumber(2)
set isSlotBookingEnabled($core.bool value) => $_setBool(1, value);
@$pb.TagNumber(2)
$core.bool hasIsSlotBookingEnabled() => $_has(1);
@$pb.TagNumber(2)
void clearIsSlotBookingEnabled() => $_clearField(2);
@$pb.TagNumber(3)
$2.ActorAuthorisation get appointmentConstraints => $_getN(2);
@$pb.TagNumber(3)
set appointmentConstraints($2.ActorAuthorisation value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasAppointmentConstraints() => $_has(2);
@$pb.TagNumber(3)
void clearAppointmentConstraints() => $_clearField(3);
@$pb.TagNumber(3)
$2.ActorAuthorisation ensureAppointmentConstraints() => $_ensure(2);
@$pb.TagNumber(4)
$core.String get name => $_getSZ(3);
@$pb.TagNumber(4)
set name($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasName() => $_has(3);
@$pb.TagNumber(4)
void clearName() => $_clearField(4);
}
class ActorSetSiteAlias extends $pb.GeneratedMessage {
factory ActorSetSiteAlias({
$1.CommandHeader? header,
$1.EntityID? iD,
ActorSetSiteAliasPayload? payload,
ActorSetSiteAliasPayload? eventPayload,
ActorSetSiteAliasPayload? previousPayload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
if (eventPayload != null) result.eventPayload = eventPayload;
if (previousPayload != null) result.previousPayload = previousPayload;
return result;
}
ActorSetSiteAlias._();
factory ActorSetSiteAlias.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorSetSiteAlias.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorSetSiteAlias', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.CommandHeader.create)
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
..aOM<ActorSetSiteAliasPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorSetSiteAliasPayload.create)
..aOM<ActorSetSiteAliasPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: ActorSetSiteAliasPayload.create)
..aOM<ActorSetSiteAliasPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: ActorSetSiteAliasPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorSetSiteAlias clone() => ActorSetSiteAlias()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorSetSiteAlias copyWith(void Function(ActorSetSiteAlias) updates) => super.copyWith((message) => updates(message as ActorSetSiteAlias)) as ActorSetSiteAlias;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorSetSiteAlias create() => ActorSetSiteAlias._();
@$core.override
ActorSetSiteAlias createEmptyInstance() => create();
static $pb.PbList<ActorSetSiteAlias> createRepeated() => $pb.PbList<ActorSetSiteAlias>();
@$core.pragma('dart2js:noInline')
static ActorSetSiteAlias getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorSetSiteAlias>(create);
static ActorSetSiteAlias? _defaultInstance;
@$pb.TagNumber(1)
$1.CommandHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.CommandHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.CommandHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$1.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($1.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$1.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
ActorSetSiteAliasPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(ActorSetSiteAliasPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
ActorSetSiteAliasPayload ensurePayload() => $_ensure(2);
@$pb.TagNumber(4)
ActorSetSiteAliasPayload get eventPayload => $_getN(3);
@$pb.TagNumber(4)
set eventPayload(ActorSetSiteAliasPayload value) => $_setField(4, value);
@$pb.TagNumber(4)
$core.bool hasEventPayload() => $_has(3);
@$pb.TagNumber(4)
void clearEventPayload() => $_clearField(4);
@$pb.TagNumber(4)
ActorSetSiteAliasPayload ensureEventPayload() => $_ensure(3);
@$pb.TagNumber(5)
ActorSetSiteAliasPayload get previousPayload => $_getN(4);
@$pb.TagNumber(5)
set previousPayload(ActorSetSiteAliasPayload value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasPreviousPayload() => $_has(4);
@$pb.TagNumber(5)
void clearPreviousPayload() => $_clearField(5);
@$pb.TagNumber(5)
ActorSetSiteAliasPayload ensurePreviousPayload() => $_ensure(4);
}
///
/// ClearSiteAlias : clear entry in the SiteActor DB
class ActorClearSiteAliasPayload extends $pb.GeneratedMessage {
factory ActorClearSiteAliasPayload({
$0.SiteAlias? siteAlias,
$core.bool? isSlotBookingEnabled,
}) {
final result = create();
if (siteAlias != null) result.siteAlias = siteAlias;
if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled;
return result;
}
ActorClearSiteAliasPayload._();
factory ActorClearSiteAliasPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorClearSiteAliasPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorClearSiteAliasPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create)
..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorClearSiteAliasPayload clone() => ActorClearSiteAliasPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorClearSiteAliasPayload copyWith(void Function(ActorClearSiteAliasPayload) updates) => super.copyWith((message) => updates(message as ActorClearSiteAliasPayload)) as ActorClearSiteAliasPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorClearSiteAliasPayload create() => ActorClearSiteAliasPayload._();
@$core.override
ActorClearSiteAliasPayload createEmptyInstance() => create();
static $pb.PbList<ActorClearSiteAliasPayload> createRepeated() => $pb.PbList<ActorClearSiteAliasPayload>();
@$core.pragma('dart2js:noInline')
static ActorClearSiteAliasPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorClearSiteAliasPayload>(create);
static ActorClearSiteAliasPayload? _defaultInstance;
@$pb.TagNumber(1)
$0.SiteAlias get siteAlias => $_getN(0);
@$pb.TagNumber(1)
set siteAlias($0.SiteAlias value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasSiteAlias() => $_has(0);
@$pb.TagNumber(1)
void clearSiteAlias() => $_clearField(1);
@$pb.TagNumber(1)
$0.SiteAlias ensureSiteAlias() => $_ensure(0);
@$pb.TagNumber(2)
$core.bool get isSlotBookingEnabled => $_getBF(1);
@$pb.TagNumber(2)
set isSlotBookingEnabled($core.bool value) => $_setBool(1, value);
@$pb.TagNumber(2)
$core.bool hasIsSlotBookingEnabled() => $_has(1);
@$pb.TagNumber(2)
void clearIsSlotBookingEnabled() => $_clearField(2);
}
class ClearSiteAlias extends $pb.GeneratedMessage {
factory ClearSiteAlias({
$1.CommandHeader? header,
$1.EntityID? iD,
ActorClearSiteAliasPayload? payload,
ActorClearSiteAliasPayload? eventPayload,
ActorClearSiteAliasPayload? previousPayload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
if (eventPayload != null) result.eventPayload = eventPayload;
if (previousPayload != null) result.previousPayload = previousPayload;
return result;
}
ClearSiteAlias._();
factory ClearSiteAlias.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClearSiteAlias.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClearSiteAlias', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.CommandHeader.create)
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
..aOM<ActorClearSiteAliasPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorClearSiteAliasPayload.create)
..aOM<ActorClearSiteAliasPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: ActorClearSiteAliasPayload.create)
..aOM<ActorClearSiteAliasPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: ActorClearSiteAliasPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClearSiteAlias clone() => ClearSiteAlias()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClearSiteAlias copyWith(void Function(ClearSiteAlias) updates) => super.copyWith((message) => updates(message as ClearSiteAlias)) as ClearSiteAlias;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClearSiteAlias create() => ClearSiteAlias._();
@$core.override
ClearSiteAlias createEmptyInstance() => create();
static $pb.PbList<ClearSiteAlias> createRepeated() => $pb.PbList<ClearSiteAlias>();
@$core.pragma('dart2js:noInline')
static ClearSiteAlias getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClearSiteAlias>(create);
static ClearSiteAlias? _defaultInstance;
@$pb.TagNumber(1)
$1.CommandHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.CommandHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.CommandHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$1.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($1.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$1.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
ActorClearSiteAliasPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(ActorClearSiteAliasPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
ActorClearSiteAliasPayload ensurePayload() => $_ensure(2);
@$pb.TagNumber(4)
ActorClearSiteAliasPayload get eventPayload => $_getN(3);
@$pb.TagNumber(4)
set eventPayload(ActorClearSiteAliasPayload value) => $_setField(4, value);
@$pb.TagNumber(4)
$core.bool hasEventPayload() => $_has(3);
@$pb.TagNumber(4)
void clearEventPayload() => $_clearField(4);
@$pb.TagNumber(4)
ActorClearSiteAliasPayload ensureEventPayload() => $_ensure(3);
@$pb.TagNumber(5)
ActorClearSiteAliasPayload get previousPayload => $_getN(4);
@$pb.TagNumber(5)
set previousPayload(ActorClearSiteAliasPayload value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasPreviousPayload() => $_has(4);
@$pb.TagNumber(5)
void clearPreviousPayload() => $_clearField(5);
@$pb.TagNumber(5)
ActorClearSiteAliasPayload ensurePreviousPayload() => $_ensure(4);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from actorAction.proto.
// Generated code. Do not modify.
// source: actorAction.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actorAction.proto.
// Generated code. Do not modify.
// source: actorAction.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -53,85 +52,3 @@ final $typed_data.Uint8List actorCompleteSnapshotDescriptor = $convert.base64Dec
'bmFwc2hvdMK7GBFzdG9jay5TbmFwc2hvdHRlZNK7GBJzdG9jayxnZXRBY3RvcklEKCnquxgRU2'
'5hcHNob3RDb21wbGV0ZWQ=');
@$core.Deprecated('Use actorSetSiteAliasPayloadDescriptor instead')
const ActorSetSiteAliasPayload$json = {
'1': 'ActorSetSiteAliasPayload',
'2': [
{'1': 'SiteAlias', '3': 1, '4': 1, '5': 11, '6': '.api.SiteAlias', '10': 'SiteAlias'},
{'1': 'IsSlotBookingEnabled', '3': 2, '4': 1, '5': 8, '10': 'IsSlotBookingEnabled'},
{'1': 'AppointmentConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ActorAuthorisation', '10': 'AppointmentConstraints'},
{'1': 'Name', '3': 4, '4': 1, '5': 9, '10': 'Name'},
],
'7': {},
};
/// Descriptor for `ActorSetSiteAliasPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSetSiteAliasPayloadDescriptor = $convert.base64Decode(
'ChhBY3RvclNldFNpdGVBbGlhc1BheWxvYWQSLAoJU2l0ZUFsaWFzGAEgASgLMg4uYXBpLlNpdG'
'VBbGlhc1IJU2l0ZUFsaWFzEjIKFElzU2xvdEJvb2tpbmdFbmFibGVkGAIgASgIUhRJc1Nsb3RC'
'b29raW5nRW5hYmxlZBJPChZBcHBvaW50bWVudENvbnN0cmFpbnRzGAMgASgLMhcuYXBpLkFjdG'
'9yQXV0aG9yaXNhdGlvblIWQXBwb2ludG1lbnRDb25zdHJhaW50cxISCgROYW1lGAQgASgJUgRO'
'YW1lOh+iuxgHQ29tbWFuZKi7GAGyuxgMU2V0U2l0ZUFsaWFz');
@$core.Deprecated('Use actorSetSiteAliasDescriptor instead')
const ActorSetSiteAlias$json = {
'1': 'ActorSetSiteAlias',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorSetSiteAliasPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ActorSetSiteAliasPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ActorSetSiteAliasPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `ActorSetSiteAlias`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSetSiteAliasDescriptor = $convert.base64Decode(
'ChFBY3RvclNldFNpdGVBbGlhcxIqCgZIZWFkZXIYASABKAsyEi5hcGkuQ29tbWFuZEhlYWRlcl'
'IGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI3CgdQYXlsb2FkGAMgASgL'
'Mh0uYXBpLkFjdG9yU2V0U2l0ZUFsaWFzUGF5bG9hZFIHUGF5bG9hZBJBCgxFdmVudFBheWxvYW'
'QYBCABKAsyHS5hcGkuQWN0b3JTZXRTaXRlQWxpYXNQYXlsb2FkUgxFdmVudFBheWxvYWQSRwoP'
'UHJldmlvdXNQYXlsb2FkGAUgASgLMh0uYXBpLkFjdG9yU2V0U2l0ZUFsaWFzUGF5bG9hZFIPUH'
'JldmlvdXNQYXlsb2FkOj6iuxgHQ29tbWFuZLK7GAxTZXRTaXRlQWxpYXPquxgfQXBwb2ludG1l'
'bnRDb25maWd1cmF0aW9uVXBkYXRlZA==');
@$core.Deprecated('Use actorClearSiteAliasPayloadDescriptor instead')
const ActorClearSiteAliasPayload$json = {
'1': 'ActorClearSiteAliasPayload',
'2': [
{'1': 'SiteAlias', '3': 1, '4': 1, '5': 11, '6': '.api.SiteAlias', '10': 'SiteAlias'},
{'1': 'IsSlotBookingEnabled', '3': 2, '4': 1, '5': 8, '10': 'IsSlotBookingEnabled'},
],
'7': {},
};
/// Descriptor for `ActorClearSiteAliasPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorClearSiteAliasPayloadDescriptor = $convert.base64Decode(
'ChpBY3RvckNsZWFyU2l0ZUFsaWFzUGF5bG9hZBIsCglTaXRlQWxpYXMYASABKAsyDi5hcGkuU2'
'l0ZUFsaWFzUglTaXRlQWxpYXMSMgoUSXNTbG90Qm9va2luZ0VuYWJsZWQYAiABKAhSFElzU2xv'
'dEJvb2tpbmdFbmFibGVkOiGiuxgHQ29tbWFuZKi7GAGyuxgOQ2xlYXJTaXRlQWxpYXM=');
@$core.Deprecated('Use clearSiteAliasDescriptor instead')
const ClearSiteAlias$json = {
'1': 'ClearSiteAlias',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorClearSiteAliasPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ActorClearSiteAliasPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ActorClearSiteAliasPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `ClearSiteAlias`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List clearSiteAliasDescriptor = $convert.base64Decode(
'Cg5DbGVhclNpdGVBbGlhcxIqCgZIZWFkZXIYASABKAsyEi5hcGkuQ29tbWFuZEhlYWRlclIGSG'
'VhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI5CgdQYXlsb2FkGAMgASgLMh8u'
'YXBpLkFjdG9yQ2xlYXJTaXRlQWxpYXNQYXlsb2FkUgdQYXlsb2FkEkMKDEV2ZW50UGF5bG9hZB'
'gEIAEoCzIfLmFwaS5BY3RvckNsZWFyU2l0ZUFsaWFzUGF5bG9hZFIMRXZlbnRQYXlsb2FkEkkK'
'D1ByZXZpb3VzUGF5bG9hZBgFIAEoCzIfLmFwaS5BY3RvckNsZWFyU2l0ZUFsaWFzUGF5bG9hZF'
'IPUHJldmlvdXNQYXlsb2FkOiiiuxgHQ29tbWFuZLK7GA5DbGVhclNpdGVBbGlhc+q7GAdEZWxl'
'dGVk');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from actorInput.proto.
// Generated code. Do not modify.
// source: actorInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actorInput.proto.
// Generated code. Do not modify.
// source: actorInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,114 +15,82 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'actorInput.pb.dart' as $0;
import 'actorInput.pb.dart' as $36;
export 'actorInput.pb.dart';
///
/// API-server services
@$pb.GrpcServiceName('api.ActorInputAPI')
class ActorInputAPIClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$created = $grpc.ClientMethod<$36.ActorCreatedRequest, $36.ActorCreatedResponse>(
'/api.ActorInputAPI/Created',
($36.ActorCreatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorCreatedResponse.fromBuffer(value));
static final _$createdv2 = $grpc.ClientMethod<$36.ActorCreatedv2Request, $36.ActorCreatedv2Response>(
'/api.ActorInputAPI/Createdv2',
($36.ActorCreatedv2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorCreatedv2Response.fromBuffer(value));
static final _$deleted = $grpc.ClientMethod<$36.ActorDeletedRequest, $36.ActorDeletedResponse>(
'/api.ActorInputAPI/Deleted',
($36.ActorDeletedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorDeletedResponse.fromBuffer(value));
static final _$snapshotCompleted = $grpc.ClientMethod<$36.ActorSnapshotCompletedRequest, $36.ActorSnapshotCompletedResponse>(
'/api.ActorInputAPI/SnapshotCompleted',
($36.ActorSnapshotCompletedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorSnapshotCompletedResponse.fromBuffer(value));
static final _$attachmentAdded = $grpc.ClientMethod<$36.ActorAttachmentAddedRequest, $36.ActorAttachmentAddedResponse>(
'/api.ActorInputAPI/AttachmentAdded',
($36.ActorAttachmentAddedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorAttachmentAddedResponse.fromBuffer(value));
static final _$attachmentRemoved = $grpc.ClientMethod<$36.ActorAttachmentRemovedRequest, $36.ActorAttachmentRemovedResponse>(
'/api.ActorInputAPI/AttachmentRemoved',
($36.ActorAttachmentRemovedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorAttachmentRemovedResponse.fromBuffer(value));
static final _$claimAdded = $grpc.ClientMethod<$36.ActorClaimAddedRequest, $36.ActorClaimAddedResponse>(
'/api.ActorInputAPI/ClaimAdded',
($36.ActorClaimAddedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorClaimAddedResponse.fromBuffer(value));
static final _$metaDataUpdated = $grpc.ClientMethod<$36.ActorMetaDataUpdatedRequest, $36.ActorMetaDataUpdatedResponse>(
'/api.ActorInputAPI/MetaDataUpdated',
($36.ActorMetaDataUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $36.ActorMetaDataUpdatedResponse.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
ActorInputAPIClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
ActorInputAPIClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ActorCreatedResponse> created($0.ActorCreatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorCreatedResponse> created($36.ActorCreatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$created, request, options: options);
}
$grpc.ResponseFuture<$0.ActorCreatedv2Response> createdv2($0.ActorCreatedv2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorCreatedv2Response> createdv2($36.ActorCreatedv2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$createdv2, request, options: options);
}
$grpc.ResponseFuture<$0.ActorDeletedResponse> deleted($0.ActorDeletedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorDeletedResponse> deleted($36.ActorDeletedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleted, request, options: options);
}
$grpc.ResponseFuture<$0.ActorSnapshotCompletedResponse> snapshotCompleted($0.ActorSnapshotCompletedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorSnapshotCompletedResponse> snapshotCompleted($36.ActorSnapshotCompletedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$snapshotCompleted, request, options: options);
}
$grpc.ResponseFuture<$0.ActorAttachmentAddedResponse> attachmentAdded($0.ActorAttachmentAddedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorAttachmentAddedResponse> attachmentAdded($36.ActorAttachmentAddedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$attachmentAdded, request, options: options);
}
$grpc.ResponseFuture<$0.ActorAttachmentRemovedResponse> attachmentRemoved($0.ActorAttachmentRemovedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorAttachmentRemovedResponse> attachmentRemoved($36.ActorAttachmentRemovedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$attachmentRemoved, request, options: options);
}
$grpc.ResponseFuture<$0.ActorClaimAddedResponse> claimAdded($0.ActorClaimAddedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorClaimAddedResponse> claimAdded($36.ActorClaimAddedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$claimAdded, request, options: options);
}
$grpc.ResponseFuture<$0.ActorMetaDataUpdatedResponse> metaDataUpdated($0.ActorMetaDataUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$36.ActorMetaDataUpdatedResponse> metaDataUpdated($36.ActorMetaDataUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$metaDataUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated($0.ActorAppointmentConfigurationUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$appointmentConfigurationUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ActorSanitisedResponse> sanitised($0.ActorSanitisedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$sanitised, request, options: options);
}
$grpc.ResponseFuture<$0.ActorCustomFieldsUpdatedResponse> customFieldsUpdated($0.ActorCustomFieldsUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$customFieldsUpdated, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.ActorCreatedRequest, $0.ActorCreatedResponse>(
'/api.ActorInputAPI/Created',
($0.ActorCreatedRequest value) => value.writeToBuffer(),
$0.ActorCreatedResponse.fromBuffer);
static final _$createdv2 = $grpc.ClientMethod<$0.ActorCreatedv2Request, $0.ActorCreatedv2Response>(
'/api.ActorInputAPI/Createdv2',
($0.ActorCreatedv2Request value) => value.writeToBuffer(),
$0.ActorCreatedv2Response.fromBuffer);
static final _$deleted = $grpc.ClientMethod<$0.ActorDeletedRequest, $0.ActorDeletedResponse>(
'/api.ActorInputAPI/Deleted',
($0.ActorDeletedRequest value) => value.writeToBuffer(),
$0.ActorDeletedResponse.fromBuffer);
static final _$snapshotCompleted = $grpc.ClientMethod<$0.ActorSnapshotCompletedRequest, $0.ActorSnapshotCompletedResponse>(
'/api.ActorInputAPI/SnapshotCompleted',
($0.ActorSnapshotCompletedRequest value) => value.writeToBuffer(),
$0.ActorSnapshotCompletedResponse.fromBuffer);
static final _$attachmentAdded = $grpc.ClientMethod<$0.ActorAttachmentAddedRequest, $0.ActorAttachmentAddedResponse>(
'/api.ActorInputAPI/AttachmentAdded',
($0.ActorAttachmentAddedRequest value) => value.writeToBuffer(),
$0.ActorAttachmentAddedResponse.fromBuffer);
static final _$attachmentRemoved = $grpc.ClientMethod<$0.ActorAttachmentRemovedRequest, $0.ActorAttachmentRemovedResponse>(
'/api.ActorInputAPI/AttachmentRemoved',
($0.ActorAttachmentRemovedRequest value) => value.writeToBuffer(),
$0.ActorAttachmentRemovedResponse.fromBuffer);
static final _$claimAdded = $grpc.ClientMethod<$0.ActorClaimAddedRequest, $0.ActorClaimAddedResponse>(
'/api.ActorInputAPI/ClaimAdded',
($0.ActorClaimAddedRequest value) => value.writeToBuffer(),
$0.ActorClaimAddedResponse.fromBuffer);
static final _$metaDataUpdated = $grpc.ClientMethod<$0.ActorMetaDataUpdatedRequest, $0.ActorMetaDataUpdatedResponse>(
'/api.ActorInputAPI/MetaDataUpdated',
($0.ActorMetaDataUpdatedRequest value) => value.writeToBuffer(),
$0.ActorMetaDataUpdatedResponse.fromBuffer);
static final _$appointmentConfigurationUpdated = $grpc.ClientMethod<$0.ActorAppointmentConfigurationUpdatedRequest, $0.ActorAppointmentConfigurationUpdatedResponse>(
'/api.ActorInputAPI/AppointmentConfigurationUpdated',
($0.ActorAppointmentConfigurationUpdatedRequest value) => value.writeToBuffer(),
$0.ActorAppointmentConfigurationUpdatedResponse.fromBuffer);
static final _$sanitised = $grpc.ClientMethod<$0.ActorSanitisedRequest, $0.ActorSanitisedResponse>(
'/api.ActorInputAPI/Sanitised',
($0.ActorSanitisedRequest value) => value.writeToBuffer(),
$0.ActorSanitisedResponse.fromBuffer);
static final _$customFieldsUpdated = $grpc.ClientMethod<$0.ActorCustomFieldsUpdatedRequest, $0.ActorCustomFieldsUpdatedResponse>(
'/api.ActorInputAPI/CustomFieldsUpdated',
($0.ActorCustomFieldsUpdatedRequest value) => value.writeToBuffer(),
$0.ActorCustomFieldsUpdatedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.ActorInputAPI')
@@ -131,149 +98,102 @@ abstract class ActorInputAPIServiceBase extends $grpc.Service {
$core.String get $name => 'api.ActorInputAPI';
ActorInputAPIServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ActorCreatedRequest, $0.ActorCreatedResponse>(
$addMethod($grpc.ServiceMethod<$36.ActorCreatedRequest, $36.ActorCreatedResponse>(
'Created',
created_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorCreatedRequest.fromBuffer(value),
($0.ActorCreatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorCreatedv2Request, $0.ActorCreatedv2Response>(
($core.List<$core.int> value) => $36.ActorCreatedRequest.fromBuffer(value),
($36.ActorCreatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorCreatedv2Request, $36.ActorCreatedv2Response>(
'Createdv2',
createdv2_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorCreatedv2Request.fromBuffer(value),
($0.ActorCreatedv2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorDeletedRequest, $0.ActorDeletedResponse>(
($core.List<$core.int> value) => $36.ActorCreatedv2Request.fromBuffer(value),
($36.ActorCreatedv2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorDeletedRequest, $36.ActorDeletedResponse>(
'Deleted',
deleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorDeletedRequest.fromBuffer(value),
($0.ActorDeletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorSnapshotCompletedRequest, $0.ActorSnapshotCompletedResponse>(
($core.List<$core.int> value) => $36.ActorDeletedRequest.fromBuffer(value),
($36.ActorDeletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorSnapshotCompletedRequest, $36.ActorSnapshotCompletedResponse>(
'SnapshotCompleted',
snapshotCompleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorSnapshotCompletedRequest.fromBuffer(value),
($0.ActorSnapshotCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorAttachmentAddedRequest, $0.ActorAttachmentAddedResponse>(
($core.List<$core.int> value) => $36.ActorSnapshotCompletedRequest.fromBuffer(value),
($36.ActorSnapshotCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorAttachmentAddedRequest, $36.ActorAttachmentAddedResponse>(
'AttachmentAdded',
attachmentAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorAttachmentAddedRequest.fromBuffer(value),
($0.ActorAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorAttachmentRemovedRequest, $0.ActorAttachmentRemovedResponse>(
($core.List<$core.int> value) => $36.ActorAttachmentAddedRequest.fromBuffer(value),
($36.ActorAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorAttachmentRemovedRequest, $36.ActorAttachmentRemovedResponse>(
'AttachmentRemoved',
attachmentRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorAttachmentRemovedRequest.fromBuffer(value),
($0.ActorAttachmentRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorClaimAddedRequest, $0.ActorClaimAddedResponse>(
($core.List<$core.int> value) => $36.ActorAttachmentRemovedRequest.fromBuffer(value),
($36.ActorAttachmentRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorClaimAddedRequest, $36.ActorClaimAddedResponse>(
'ClaimAdded',
claimAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorClaimAddedRequest.fromBuffer(value),
($0.ActorClaimAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorMetaDataUpdatedRequest, $0.ActorMetaDataUpdatedResponse>(
($core.List<$core.int> value) => $36.ActorClaimAddedRequest.fromBuffer(value),
($36.ActorClaimAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$36.ActorMetaDataUpdatedRequest, $36.ActorMetaDataUpdatedResponse>(
'MetaDataUpdated',
metaDataUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorMetaDataUpdatedRequest.fromBuffer(value),
($0.ActorMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorAppointmentConfigurationUpdatedRequest, $0.ActorAppointmentConfigurationUpdatedResponse>(
'AppointmentConfigurationUpdated',
appointmentConfigurationUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorAppointmentConfigurationUpdatedRequest.fromBuffer(value),
($0.ActorAppointmentConfigurationUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorSanitisedRequest, $0.ActorSanitisedResponse>(
'Sanitised',
sanitised_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorSanitisedRequest.fromBuffer(value),
($0.ActorSanitisedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorCustomFieldsUpdatedRequest, $0.ActorCustomFieldsUpdatedResponse>(
'CustomFieldsUpdated',
customFieldsUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorCustomFieldsUpdatedRequest.fromBuffer(value),
($0.ActorCustomFieldsUpdatedResponse value) => value.writeToBuffer()));
($core.List<$core.int> value) => $36.ActorMetaDataUpdatedRequest.fromBuffer(value),
($36.ActorMetaDataUpdatedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.ActorCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCreatedRequest> $request) async {
$async.Future<$36.ActorCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorCreatedRequest> $request) async {
return created($call, await $request);
}
$async.Future<$0.ActorCreatedResponse> created($grpc.ServiceCall call, $0.ActorCreatedRequest request);
$async.Future<$0.ActorCreatedv2Response> createdv2_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCreatedv2Request> $request) async {
$async.Future<$36.ActorCreatedv2Response> createdv2_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorCreatedv2Request> $request) async {
return createdv2($call, await $request);
}
$async.Future<$0.ActorCreatedv2Response> createdv2($grpc.ServiceCall call, $0.ActorCreatedv2Request request);
$async.Future<$0.ActorDeletedResponse> deleted_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorDeletedRequest> $request) async {
$async.Future<$36.ActorDeletedResponse> deleted_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorDeletedRequest> $request) async {
return deleted($call, await $request);
}
$async.Future<$0.ActorDeletedResponse> deleted($grpc.ServiceCall call, $0.ActorDeletedRequest request);
$async.Future<$0.ActorSnapshotCompletedResponse> snapshotCompleted_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorSnapshotCompletedRequest> $request) async {
$async.Future<$36.ActorSnapshotCompletedResponse> snapshotCompleted_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorSnapshotCompletedRequest> $request) async {
return snapshotCompleted($call, await $request);
}
$async.Future<$0.ActorSnapshotCompletedResponse> snapshotCompleted($grpc.ServiceCall call, $0.ActorSnapshotCompletedRequest request);
$async.Future<$0.ActorAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorAttachmentAddedRequest> $request) async {
$async.Future<$36.ActorAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorAttachmentAddedRequest> $request) async {
return attachmentAdded($call, await $request);
}
$async.Future<$0.ActorAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $0.ActorAttachmentAddedRequest request);
$async.Future<$0.ActorAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorAttachmentRemovedRequest> $request) async {
$async.Future<$36.ActorAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorAttachmentRemovedRequest> $request) async {
return attachmentRemoved($call, await $request);
}
$async.Future<$0.ActorAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $0.ActorAttachmentRemovedRequest request);
$async.Future<$0.ActorClaimAddedResponse> claimAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorClaimAddedRequest> $request) async {
$async.Future<$36.ActorClaimAddedResponse> claimAdded_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorClaimAddedRequest> $request) async {
return claimAdded($call, await $request);
}
$async.Future<$0.ActorClaimAddedResponse> claimAdded($grpc.ServiceCall call, $0.ActorClaimAddedRequest request);
$async.Future<$0.ActorMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorMetaDataUpdatedRequest> $request) async {
$async.Future<$36.ActorMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall $call, $async.Future<$36.ActorMetaDataUpdatedRequest> $request) async {
return metaDataUpdated($call, await $request);
}
$async.Future<$0.ActorMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $0.ActorMetaDataUpdatedRequest request);
$async.Future<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorAppointmentConfigurationUpdatedRequest> $request) async {
return appointmentConfigurationUpdated($call, await $request);
}
$async.Future<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated($grpc.ServiceCall call, $0.ActorAppointmentConfigurationUpdatedRequest request);
$async.Future<$0.ActorSanitisedResponse> sanitised_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorSanitisedRequest> $request) async {
return sanitised($call, await $request);
}
$async.Future<$0.ActorSanitisedResponse> sanitised($grpc.ServiceCall call, $0.ActorSanitisedRequest request);
$async.Future<$0.ActorCustomFieldsUpdatedResponse> customFieldsUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCustomFieldsUpdatedRequest> $request) async {
return customFieldsUpdated($call, await $request);
}
$async.Future<$0.ActorCustomFieldsUpdatedResponse> customFieldsUpdated($grpc.ServiceCall call, $0.ActorCustomFieldsUpdatedRequest request);
$async.Future<$36.ActorCreatedResponse> created($grpc.ServiceCall call, $36.ActorCreatedRequest request);
$async.Future<$36.ActorCreatedv2Response> createdv2($grpc.ServiceCall call, $36.ActorCreatedv2Request request);
$async.Future<$36.ActorDeletedResponse> deleted($grpc.ServiceCall call, $36.ActorDeletedRequest request);
$async.Future<$36.ActorSnapshotCompletedResponse> snapshotCompleted($grpc.ServiceCall call, $36.ActorSnapshotCompletedRequest request);
$async.Future<$36.ActorAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $36.ActorAttachmentAddedRequest request);
$async.Future<$36.ActorAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $36.ActorAttachmentRemovedRequest request);
$async.Future<$36.ActorClaimAddedResponse> claimAdded($grpc.ServiceCall call, $36.ActorClaimAddedRequest request);
$async.Future<$36.ActorMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $36.ActorMetaDataUpdatedRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actorInput.proto.
// Generated code. Do not modify.
// source: actorInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -52,23 +51,23 @@ final $typed_data.Uint8List actorCreatedPayloadDescriptor = $convert.base64Decod
'oJUGFydG5lcklEGAYgASgJQiKSQRQyEkV4aXN0aW5nIFBhcnRuZXJJRNrBGAdQYXJ0bmVyUglQ'
'YXJ0bmVySUQSNAoVQWRkaXRpb25hbEluZm9ybWF0aW9uGA8gASgJUhVBZGRpdGlvbmFsSW5mb3'
'JtYXRpb24SLgoIVHlwb2xvZ3kYCiABKA4yEi5hcGkuQWN0b3JUeXBvbG9neVIIVHlwb2xvZ3kS'
'fAoGRW1haWxzGAwgAygJQmSSQVEyHU11c3QgYmUgYSB2YWxpZCBlbWFpbCBhZGRyZXNzSjBbIk'
'pvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl26gQEMkgEJIgdy'
'BWAB8AEBUgZFbWFpbHMSQwoGUGhvbmVzGA0gAygJQiuSQShKJlsiMDYgMDAgMDAgMDAgMDAiLC'
'AiKzQ5IDAwIDAwMDAgMDAwMCJdUgZQaG9uZXMSOQoMTWFuYWdlZFN0b2NrGA4gASgIQhWSQRIy'
'EENhbiBtYW5hZ2Ugc3RvY2tSDE1hbmFnZWRTdG9jaxI5CglJc0NhcnJpZXIYECABKAhCG5JBGD'
'IWQ2FuIGJlIHVzZWQgYXMgY2FycmllclIJSXNDYXJyaWVyEmIKD0NhcnJpZXJTZXJ2aWNlcxgR'
'IAMoCzITLmFwaS5DYXJyaWVyU2VydmljZUIjkkEaMhhMaXN0IG9mIGNhcnJpZXIgc2VydmljZX'
'PqwRgCSURSD0NhcnJpZXJTZXJ2aWNlcxIsChFJc1NoaXBUb0Nvbm5lY3RlZBgSIAEoCFIRSXNT'
'aGlwVG9Db25uZWN0ZWQSMAoTSXNTaGlwRnJvbUNvbm5lY3RlZBgTIAEoCFITSXNTaGlwRnJvbU'
'Nvbm5lY3RlZBJQChJTaGlwVG9QYXJ0bmVyQXBwSUQYFCABKAlCIJJBHTIbTXVzdCBiZSBleGlz'
'dGluZyBwYXJ0bmVyIElEUhJTaGlwVG9QYXJ0bmVyQXBwSUQSVAoUU2hpcEZyb21QYXJ0bmVyQX'
'BwSUQYFSABKAlCIJJBHTIbTXVzdCBiZSBleGlzdGluZyBwYXJ0bmVyIElEUhRTaGlwRnJvbVBh'
'cnRuZXJBcHBJRBJYCghQaG90b1VSSRgaIAEoCUI8kkEpSiciaHR0cHM6Ly9yZWZsZXgtdmlzaW'
'JpbGl0eS1mb3JldmVyLmpwZyLawhgMCgoKASoSBWltYWdlUghQaG90b1VSSRJeChxDb25uZWN0'
'aW9uSWRlbnRpZmllclByZWZpeGVzGBwgAygJQhq6gQEWkgETIhFyDzINXlthLXpBLVowLTldKl'
'IcQ29ubmVjdGlvbklkZW50aWZpZXJQcmVmaXhlczoskkERCg8yDUV2ZW50IFBheWxvYWSiuxgF'
'RXZlbnSouxgBursYB0NyZWF0ZWQ=');
'ewoGRW1haWxzGAwgAygJQmOSQVEyHU11c3QgYmUgYSB2YWxpZCBlbWFpbCBhZGRyZXNzSjBbIk'
'pvaG4uZG9lQHJlZmxleC5jb20iLCAid2lsbC5zbWl0aEByZWZsZXguY29tIl36QgySAQkiB3IF'
'YAHwAQFSBkVtYWlscxJDCgZQaG9uZXMYDSADKAlCK5JBKEomWyIwNiAwMCAwMCAwMCAwMCIsIC'
'IrNDkgMDAgMDAwMCAwMDAwIl1SBlBob25lcxI5CgxNYW5hZ2VkU3RvY2sYDiABKAhCFZJBEjIQ'
'Q2FuIG1hbmFnZSBzdG9ja1IMTWFuYWdlZFN0b2NrEjkKCUlzQ2FycmllchgQIAEoCEIbkkEYMh'
'ZDYW4gYmUgdXNlZCBhcyBjYXJyaWVyUglJc0NhcnJpZXISYgoPQ2FycmllclNlcnZpY2VzGBEg'
'AygLMhMuYXBpLkNhcnJpZXJTZXJ2aWNlQiOSQRoyGExpc3Qgb2YgY2FycmllciBzZXJ2aWNlc+'
'rBGAJJRFIPQ2FycmllclNlcnZpY2VzEiwKEUlzU2hpcFRvQ29ubmVjdGVkGBIgASgIUhFJc1No'
'aXBUb0Nvbm5lY3RlZBIwChNJc1NoaXBGcm9tQ29ubmVjdGVkGBMgASgIUhNJc1NoaXBGcm9tQ2'
'9ubmVjdGVkElAKElNoaXBUb1BhcnRuZXJBcHBJRBgUIAEoCUIgkkEdMhtNdXN0IGJlIGV4aXN0'
'aW5nIHBhcnRuZXIgSURSElNoaXBUb1BhcnRuZXJBcHBJRBJUChRTaGlwRnJvbVBhcnRuZXJBcH'
'BJRBgVIAEoCUIgkkEdMhtNdXN0IGJlIGV4aXN0aW5nIHBhcnRuZXIgSURSFFNoaXBGcm9tUGFy'
'dG5lckFwcElEElgKCFBob3RvVVJJGBogASgJQjySQSlKJyJodHRwczovL3JlZmxleC12aXNpYm'
'lsaXR5LWZvcmV2ZXIuanBnItrCGAwKCgoBKhIFaW1hZ2VSCFBob3RvVVJJEl0KHENvbm5lY3Rp'
'b25JZGVudGlmaWVyUHJlZml4ZXMYHCADKAlCGfpCFpIBEyIRcg8yDV5bYS16QS1aMC05XSpSHE'
'Nvbm5lY3Rpb25JZGVudGlmaWVyUHJlZml4ZXM6LJJBEQoPMg1FdmVudCBQYXlsb2FkorsYBUV2'
'ZW50qLsYAbq7GAdDcmVhdGVk');
@$core.Deprecated('Use actorCreatedEventDescriptor instead')
const ActorCreatedEvent$json = {
@@ -83,11 +82,11 @@ const ActorCreatedEvent$json = {
/// Descriptor for `ActorCreatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCreatedEventDescriptor = $convert.base64Decode(
'ChFBY3RvckNyZWF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCb'
'qBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFS'
'AklEEj0KB1BheWxvYWQYAyABKAsyGC5hcGkuQWN0b3JDcmVhdGVkUGF5bG9hZEIJuoEBBYoBAh'
'ABUgdQYXlsb2FkOliSQSwKKtIBBkhlYWRlctIBCEVudGl0eUlE0gETQWN0b3JDcmVhdGVkUGF5'
'bG9hZKK7GAVFdmVudLq7GAdDcmVhdGVk2rsYEWNoZWNrUGFydG5lckFwcElk');
'ChFBY3RvckNyZWF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCP'
'pCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhABUgJJ'
'RBI8CgdQYXlsb2FkGAMgASgLMhguYXBpLkFjdG9yQ3JlYXRlZFBheWxvYWRCCPpCBYoBAhABUg'
'dQYXlsb2FkOliSQSwKKtIBBkhlYWRlctIBCEVudGl0eUlE0gETQWN0b3JDcmVhdGVkUGF5bG9h'
'ZKK7GAVFdmVudLq7GAdDcmVhdGVk2rsYEWNoZWNrUGFydG5lckFwcElk');
@$core.Deprecated('Use actorCreatedRequestDescriptor instead')
const ActorCreatedRequest$json = {
@@ -102,11 +101,11 @@ const ActorCreatedRequest$json = {
/// Descriptor for `ActorCreatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCreatedRequestDescriptor = $convert.base64Decode(
'ChNBY3RvckNyZWF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURC'
'CbqBAQWKAQIQAVICSUQSPQoHUGF5bG9hZBgDIAEoCzIYLmFwaS5BY3RvckNyZWF0ZWRQYXlsb2'
'FkQgm6gQEFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsY'
'B1JlcXVlc3S6uxgHQ3JlYXRlZA==');
'ChNBY3RvckNyZWF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
'+kIFigECEAFSAklEEjwKB1BheWxvYWQYAyABKAsyGC5hcGkuQWN0b3JDcmVhdGVkUGF5bG9hZE'
'II+kIFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1Jl'
'cXVlc3S6uxgHQ3JlYXRlZA==');
@$core.Deprecated('Use actorCreatedResponseDescriptor instead')
const ActorCreatedResponse$json = {
@@ -152,15 +151,15 @@ final $typed_data.Uint8List actorCreatedv2PayloadDescriptor = $convert.base64Dec
'9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerB'
'GANLZXlSCE1ldGFEYXRhEiYKB0FkZHJlc3MYBCABKAsyDC5hcGkuQWRkcmVzc1IHQWRkcmVzcx'
'I0ChVBZGRpdGlvbmFsSW5mb3JtYXRpb24YDyABKAlSFUFkZGl0aW9uYWxJbmZvcm1hdGlvbhIu'
'CghUeXBvbG9neRgKIAEoDjISLmFwaS5BY3RvclR5cG9sb2d5UghUeXBvbG9neRJ8CgZFbWFpbH'
'MYDCADKAlCZJJBUTIdTXVzdCBiZSBhIHZhbGlkIGVtYWlsIGFkZHJlc3NKMFsiSm9obi5kb2VA'
'cmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQHJlZmxleC5jb20iXbqBAQySAQkiB3IFYAHwAQFSBk'
'VtYWlscxJDCgZQaG9uZXMYDSADKAlCK5JBKEomWyIwNiAwMCAwMCAwMCAwMCIsICIrNDkgMDAg'
'MDAwMCAwMDAwIl1SBlBob25lcxI5CglJc0NhcnJpZXIYECABKAhCG5JBGDIWQ2FuIGJlIHVzZW'
'QgYXMgY2FycmllclIJSXNDYXJyaWVyEmIKD0NhcnJpZXJTZXJ2aWNlcxgRIAMoCzITLmFwaS5D'
'YXJyaWVyU2VydmljZUIjkkEaMhhMaXN0IG9mIGNhcnJpZXIgc2VydmljZXPqwRgCSURSD0Nhcn'
'JpZXJTZXJ2aWNlczoukkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYCUNyZWF0'
'ZWR2Mg==');
'CghUeXBvbG9neRgKIAEoDjISLmFwaS5BY3RvclR5cG9sb2d5UghUeXBvbG9neRJ7CgZFbWFpbH'
'MYDCADKAlCY5JBUTIdTXVzdCBiZSBhIHZhbGlkIGVtYWlsIGFkZHJlc3NKMFsiSm9obi5kb2VA'
'cmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQHJlZmxleC5jb20iXfpCDJIBCSIHcgVgAfABAVIGRW'
'1haWxzEkMKBlBob25lcxgNIAMoCUIrkkEoSiZbIjA2IDAwIDAwIDAwIDAwIiwgIis0OSAwMCAw'
'MDAwIDAwMDAiXVIGUGhvbmVzEjkKCUlzQ2FycmllchgQIAEoCEIbkkEYMhZDYW4gYmUgdXNlZC'
'BhcyBjYXJyaWVyUglJc0NhcnJpZXISYgoPQ2FycmllclNlcnZpY2VzGBEgAygLMhMuYXBpLkNh'
'cnJpZXJTZXJ2aWNlQiOSQRoyGExpc3Qgb2YgY2FycmllciBzZXJ2aWNlc+rBGAJJRFIPQ2Fycm'
'llclNlcnZpY2VzOi6SQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgJQ3JlYXRl'
'ZHYy');
@$core.Deprecated('Use actorCreatedv2EventDescriptor instead')
const ActorCreatedv2Event$json = {
@@ -175,10 +174,10 @@ const ActorCreatedv2Event$json = {
/// Descriptor for `ActorCreatedv2Event`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCreatedv2EventDescriptor = $convert.base64Decode(
'ChNBY3RvckNyZWF0ZWR2MkV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'IJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQ'
'AVICSUQSPwoHUGF5bG9hZBgDIAEoCzIaLmFwaS5BY3RvckNyZWF0ZWR2MlBheWxvYWRCCbqBAQ'
'WKAQIQAVIHUGF5bG9hZDoWorsYBUV2ZW50ursYCUNyZWF0ZWR2Mg==');
'ChNBY3RvckNyZWF0ZWR2MkV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'II+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIFigECEAFS'
'AklEEj4KB1BheWxvYWQYAyABKAsyGi5hcGkuQWN0b3JDcmVhdGVkdjJQYXlsb2FkQgj6QgWKAQ'
'IQAVIHUGF5bG9hZDoWorsYBUV2ZW50ursYCUNyZWF0ZWR2Mg==');
@$core.Deprecated('Use actorCreatedv2RequestDescriptor instead')
const ActorCreatedv2Request$json = {
@@ -193,11 +192,11 @@ const ActorCreatedv2Request$json = {
/// Descriptor for `ActorCreatedv2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCreatedv2RequestDescriptor = $convert.base64Decode(
'ChVBY3RvckNyZWF0ZWR2MlJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REIJuoEBBYoBAhABUgJJRBI/CgdQYXlsb2FkGAMgASgLMhouYXBpLkFjdG9yQ3JlYXRlZHYyUG'
'F5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
'ZKK7GAdSZXF1ZXN0ursYCUNyZWF0ZWR2Mg==');
'ChVBY3RvckNyZWF0ZWR2MlJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlE'
'Qgj6QgWKAQIQAVICSUQSPgoHUGF5bG9hZBgDIAEoCzIaLmFwaS5BY3RvckNyZWF0ZWR2MlBheW'
'xvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7'
'GAdSZXF1ZXN0ursYCUNyZWF0ZWR2Mg==');
@$core.Deprecated('Use actorCreatedv2ResponseDescriptor instead')
const ActorCreatedv2Response$json = {
@@ -241,8 +240,8 @@ const ActorDeletedEvent$json = {
final $typed_data.Uint8List actorDeletedEventDescriptor = $convert.base64Decode(
'ChFBY3RvckRlbGV0ZWRFdmVudBIoCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSBk'
'hlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSMgoHUGF5bG9hZBgDIAEoCzIY'
'LmFwaS5BY3RvckRlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOiSiuxgFRXZlbnS6uxgHRGVsZXRlZN'
'q7GAxjaGVja0RlbGV0ZWQ=');
'LmFwaS5BY3RvckRlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOhSiuxgFRXZlbnS6uxgHRGVsZXRlZA'
'==');
@$core.Deprecated('Use actorDeletedRequestDescriptor instead')
const ActorDeletedRequest$json = {
@@ -289,9 +288,9 @@ const ActorSnapshotCompletedPayload$json = {
/// Descriptor for `ActorSnapshotCompletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSnapshotCompletedPayloadDescriptor = $convert.base64Decode(
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUGF5bG9hZBI5CghTbmFwc2hvdBgBIAEoCzISLmFwaS'
'5BY3RvclNuYXBzaG90Qgm6gQEFigECEAFSCFNuYXBzaG90OkSSQQ0KC9IBCFNuYXBzaG90orsY'
'BUV2ZW50qLsYAbq7GBFTbmFwc2hvdENvbXBsZXRlZNq7GA5yZWplY3RTbmFwc2hvdA==');
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUGF5bG9hZBI4CghTbmFwc2hvdBgBIAEoCzISLmFwaS'
'5BY3RvclNuYXBzaG90Qgj6QgWKAQIQAVIIU25hcHNob3Q6RJJBDQoL0gEIU25hcHNob3SiuxgF'
'RXZlbnSouxgBursYEVNuYXBzaG90Q29tcGxldGVk2rsYDlJlamVjdFNuYXBzaG90');
@$core.Deprecated('Use actorSnapshotCompletedEventDescriptor instead')
const ActorSnapshotCompletedEvent$json = {
@@ -306,11 +305,11 @@ const ActorSnapshotCompletedEvent$json = {
/// Descriptor for `ActorSnapshotCompletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSnapshotCompletedEventDescriptor = $convert.base64Decode(
'ChtBY3RvclNuYXBzaG90Q29tcGxldGVkRXZlbnQSMwoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIJ'
'uoEBBYoBAhABUgJJRBJHCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yU25hcHNob3RDb21wbG'
'V0ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6HqK7GAVFdmVudLq7GBFTbmFwc2hvdENv'
'bXBsZXRlZA==');
'ChtBY3RvclNuYXBzaG90Q29tcGxldGVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5BY3RvclNuYXBzaG90Q29tcGxldG'
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6HqK7GAVFdmVudLq7GBFTbmFwc2hvdENvbXBs'
'ZXRlZA==');
@$core.Deprecated('Use actorSnapshotCompletedRequestDescriptor instead')
const ActorSnapshotCompletedRequest$json = {
@@ -325,11 +324,11 @@ const ActorSnapshotCompletedRequest$json = {
/// Descriptor for `ActorSnapshotCompletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSnapshotCompletedRequestDescriptor = $convert.base64Decode(
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBp'
'LkVudGl0eUlEQgm6gQEFigECEAFSAklEEkcKB1BheWxvYWQYAyABKAsyIi5hcGkuQWN0b3JTbm'
'Fwc2hvdENvbXBsZXRlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFk'
'ZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFTbmFwc2hvdENvbXBsZXRlZA==');
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yU25hcH'
'Nob3RDb21wbGV0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFTbmFwc2hvdENvbXBsZXRlZA==');
@$core.Deprecated('Use actorSnapshotCompletedResponseDescriptor instead')
const ActorSnapshotCompletedResponse$json = {
@@ -375,11 +374,11 @@ const ActorAttachmentAddedEvent$json = {
/// Descriptor for `ActorAttachmentAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAttachmentAddedEventDescriptor = $convert.base64Decode(
'ChlBY3RvckF0dGFjaG1lbnRBZGRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqB'
'AQWKAQIQAVICSUQSRQoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3RvckF0dGFjaG1lbnRBZGRlZF'
'BheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRl'
'ZNq7GA1hZGRBdHRhY2htZW50');
'ChlBY3RvckF0dGFjaG1lbnRBZGRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQWN0b3JBdHRhY2htZW50QWRkZWRQYX'
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRlZNq7'
'GA1hZGRBdHRhY2htZW50');
@$core.Deprecated('Use actorAttachmentAddedRequestDescriptor instead')
const ActorAttachmentAddedRequest$json = {
@@ -394,11 +393,11 @@ const ActorAttachmentAddedRequest$json = {
/// Descriptor for `ActorAttachmentAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAttachmentAddedRequestDescriptor = $convert.base64Decode(
'ChtBY3RvckF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5F'
'bnRpdHlJREIJuoEBBYoBAhABUgJJRBJFCgdQYXlsb2FkGAMgASgLMiAuYXBpLkFjdG9yQXR0YW'
'NobWVudEFkZGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIB'
'AklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
'ChtBY3RvckF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3RvckF0dGFjaG'
'1lbnRBZGRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
@$core.Deprecated('Use actorAttachmentAddedResponseDescriptor instead')
const ActorAttachmentAddedResponse$json = {
@@ -445,11 +444,11 @@ const ActorAttachmentRemovedEvent$json = {
/// Descriptor for `ActorAttachmentRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAttachmentRemovedEventDescriptor = $convert.base64Decode(
'ChtBY3RvckF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMwoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIJ'
'uoEBBYoBAhABUgJJRBJHCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yQXR0YWNobWVudFJlbW'
'92ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50'
'UmVtb3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
'ChtBY3RvckF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5BY3RvckF0dGFjaG1lbnRSZW1vdm'
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50UmVt'
'b3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
@$core.Deprecated('Use actorAttachmentRemovedRequestDescriptor instead')
const ActorAttachmentRemovedRequest$json = {
@@ -464,11 +463,11 @@ const ActorAttachmentRemovedRequest$json = {
/// Descriptor for `ActorAttachmentRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAttachmentRemovedRequestDescriptor = $convert.base64Decode(
'Ch1BY3RvckF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBp'
'LkVudGl0eUlEQgm6gQEFigECEAFSAklEEkcKB1BheWxvYWQYAyABKAsyIi5hcGkuQWN0b3JBdH'
'RhY2htZW50UmVtb3ZlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFk'
'ZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
'Ch1BY3RvckF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yQXR0YW'
'NobWVudFJlbW92ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
@$core.Deprecated('Use actorAttachmentRemovedResponseDescriptor instead')
const ActorAttachmentRemovedResponse$json = {
@@ -514,10 +513,10 @@ const ActorClaimAddedEvent$json = {
/// Descriptor for `ActorClaimAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorClaimAddedEventDescriptor = $convert.base64Decode(
'ChRBY3RvckNsYWltQWRkZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZX'
'JCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigEC'
'EAFSAklEEkAKB1BheWxvYWQYAyABKAsyGy5hcGkuQWN0b3JDbGFpbUFkZGVkUGF5bG9hZEIJuo'
'EBBYoBAhABUgdQYXlsb2FkOiOiuxgFRXZlbnS6uxgKQ2xhaW1BZGRlZNq7GAhhZGRDbGFpbQ==');
'ChRBY3RvckNsYWltQWRkZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZX'
'JCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhAB'
'UgJJRBI/CgdQYXlsb2FkGAMgASgLMhsuYXBpLkFjdG9yQ2xhaW1BZGRlZFBheWxvYWRCCPpCBY'
'oBAhABUgdQYXlsb2FkOiOiuxgFRXZlbnS6uxgKQ2xhaW1BZGRlZNq7GAhhZGRDbGFpbQ==');
@$core.Deprecated('Use actorClaimAddedRequestDescriptor instead')
const ActorClaimAddedRequest$json = {
@@ -532,11 +531,11 @@ const ActorClaimAddedRequest$json = {
/// Descriptor for `ActorClaimAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorClaimAddedRequestDescriptor = $convert.base64Decode(
'ChZBY3RvckNsYWltQWRkZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5'
'SURCCbqBAQWKAQIQAVICSUQSQAoHUGF5bG9hZBgDIAEoCzIbLmFwaS5BY3RvckNsYWltQWRkZW'
'RQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6NpJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXls'
'b2FkorsYB1JlcXVlc3S6uxgKQ2xhaW1BZGRlZA==');
'ChZBY3RvckNsYWltQWRkZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REII+kIFigECEAFSAklEEj8KB1BheWxvYWQYAyABKAsyGy5hcGkuQWN0b3JDbGFpbUFkZGVkUG'
'F5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6NpJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2Fk'
'orsYB1JlcXVlc3S6uxgKQ2xhaW1BZGRlZA==');
@$core.Deprecated('Use actorClaimAddedResponseDescriptor instead')
const ActorClaimAddedResponse$json = {
@@ -584,11 +583,10 @@ const ActorMetaDataUpdatedEvent$json = {
/// Descriptor for `ActorMetaDataUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorMetaDataUpdatedEventDescriptor = $convert.base64Decode(
'ChlBY3Rvck1ldGFEYXRhVXBkYXRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqB'
'AQWKAQIQAVICSUQSRQoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3Rvck1ldGFEYXRhVXBkYXRlZF'
'BheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDocorsYBUV2ZW50ursYD01ldGFEYXRhVXBkYXRl'
'ZA==');
'ChlBY3Rvck1ldGFEYXRhVXBkYXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQWN0b3JNZXRhRGF0YVVwZGF0ZWRQYX'
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDocorsYBUV2ZW50ursYD01ldGFEYXRhVXBkYXRlZA==');
@$core.Deprecated('Use actorMetaDataUpdatedRequestDescriptor instead')
const ActorMetaDataUpdatedRequest$json = {
@@ -603,11 +601,11 @@ const ActorMetaDataUpdatedRequest$json = {
/// Descriptor for `ActorMetaDataUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorMetaDataUpdatedRequestDescriptor = $convert.base64Decode(
'ChtBY3Rvck1ldGFEYXRhVXBkYXRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5F'
'bnRpdHlJREIJuoEBBYoBAhABUgJJRBJFCgdQYXlsb2FkGAMgASgLMiAuYXBpLkFjdG9yTWV0YU'
'RhdGFVcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIB'
'AklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD01ldGFEYXRhVXBkYXRlZA==');
'ChtBY3Rvck1ldGFEYXRhVXBkYXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3Rvck1ldGFEYX'
'RhVXBkYXRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD01ldGFEYXRhVXBkYXRlZA==');
@$core.Deprecated('Use actorMetaDataUpdatedResponseDescriptor instead')
const ActorMetaDataUpdatedResponse$json = {
@@ -625,207 +623,3 @@ final $typed_data.Uint8List actorMetaDataUpdatedResponseDescriptor = $convert.ba
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
'CFJlc3BvbnNlursYD01ldGFEYXRhVXBkYXRlZA==');
@$core.Deprecated('Use actorAppointmentConfigurationUpdatedPayloadDescriptor instead')
const ActorAppointmentConfigurationUpdatedPayload$json = {
'1': 'ActorAppointmentConfigurationUpdatedPayload',
'2': [
{'1': 'IsSlotBookingEnabled', '3': 1, '4': 1, '5': 8, '10': 'IsSlotBookingEnabled'},
{'1': 'SiteAlias', '3': 2, '4': 1, '5': 11, '6': '.api.SiteAlias', '10': 'SiteAlias'},
{'1': 'AppointmentConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ActorAuthorisation', '10': 'AppointmentConstraints'},
],
'7': {},
};
/// Descriptor for `ActorAppointmentConfigurationUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAppointmentConfigurationUpdatedPayloadDescriptor = $convert.base64Decode(
'CitBY3RvckFwcG9pbnRtZW50Q29uZmlndXJhdGlvblVwZGF0ZWRQYXlsb2FkEjIKFElzU2xvdE'
'Jvb2tpbmdFbmFibGVkGAEgASgIUhRJc1Nsb3RCb29raW5nRW5hYmxlZBIsCglTaXRlQWxpYXMY'
'AiABKAsyDi5hcGkuU2l0ZUFsaWFzUglTaXRlQWxpYXMSTwoWQXBwb2ludG1lbnRDb25zdHJhaW'
'50cxgDIAEoCzIXLmFwaS5BY3RvckF1dGhvcmlzYXRpb25SFkFwcG9pbnRtZW50Q29uc3RyYWlu'
'dHM6MKK7GAVFdmVudKi7GAG6uxgfQXBwb2ludG1lbnRDb25maWd1cmF0aW9uVXBkYXRlZA==');
@$core.Deprecated('Use actorAppointmentConfigurationUpdatedEventDescriptor instead')
const ActorAppointmentConfigurationUpdatedEvent$json = {
'1': 'ActorAppointmentConfigurationUpdatedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorAppointmentConfigurationUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorAppointmentConfigurationUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAppointmentConfigurationUpdatedEventDescriptor = $convert.base64Decode(
'CilBY3RvckFwcG9pbnRtZW50Q29uZmlndXJhdGlvblVwZGF0ZWRFdmVudBIzCgZIZWFkZXIYAS'
'ABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0u'
'YXBpLkVudGl0eUlEQgm6gQEFigECEAFSAklEElUKB1BheWxvYWQYAyABKAsyMC5hcGkuQWN0b3'
'JBcHBvaW50bWVudENvbmZpZ3VyYXRpb25VcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXls'
'b2FkOiyiuxgFRXZlbnS6uxgfQXBwb2ludG1lbnRDb25maWd1cmF0aW9uVXBkYXRlZA==');
@$core.Deprecated('Use actorAppointmentConfigurationUpdatedRequestDescriptor instead')
const ActorAppointmentConfigurationUpdatedRequest$json = {
'1': 'ActorAppointmentConfigurationUpdatedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorAppointmentConfigurationUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorAppointmentConfigurationUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAppointmentConfigurationUpdatedRequestDescriptor = $convert.base64Decode(
'CitBY3RvckFwcG9pbnRtZW50Q29uZmlndXJhdGlvblVwZGF0ZWRSZXF1ZXN0EjwKBkhlYWRlch'
'gBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoC'
'SUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQAVICSUQSVQoHUGF5bG9hZBgDIAEoCz'
'IwLmFwaS5BY3RvckFwcG9pbnRtZW50Q29uZmlndXJhdGlvblVwZGF0ZWRQYXlsb2FkQgm6gQEF'
'igECEAFSB1BheWxvYWQ6S5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3'
'S6uxgfQXBwb2ludG1lbnRDb25maWd1cmF0aW9uVXBkYXRlZA==');
@$core.Deprecated('Use actorAppointmentConfigurationUpdatedResponseDescriptor instead')
const ActorAppointmentConfigurationUpdatedResponse$json = {
'1': 'ActorAppointmentConfigurationUpdatedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `ActorAppointmentConfigurationUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAppointmentConfigurationUpdatedResponseDescriptor = $convert.base64Decode(
'CixBY3RvckFwcG9pbnRtZW50Q29uZmlndXJhdGlvblVwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZX'
'IYASABKAsyEy5hcGkuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5F'
'bnRpdHlJRFICSUQ6L6K7GAhSZXNwb25zZbq7GB9BcHBvaW50bWVudENvbmZpZ3VyYXRpb25VcG'
'RhdGVk');
@$core.Deprecated('Use actorSanitisedPayloadDescriptor instead')
const ActorSanitisedPayload$json = {
'1': 'ActorSanitisedPayload',
'7': {},
};
/// Descriptor for `ActorSanitisedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSanitisedPayloadDescriptor = $convert.base64Decode(
'ChVBY3RvclNhbml0aXNlZFBheWxvYWQ6GqK7GAVFdmVudKi7GAG6uxgJU2FuaXRpc2Vk');
@$core.Deprecated('Use actorSanitisedEventDescriptor instead')
const ActorSanitisedEvent$json = {
'1': 'ActorSanitisedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorSanitisedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorSanitisedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSanitisedEventDescriptor = $convert.base64Decode(
'ChNBY3RvclNhbml0aXNlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'IJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQ'
'AVICSUQSPwoHUGF5bG9hZBgDIAEoCzIaLmFwaS5BY3RvclNhbml0aXNlZFBheWxvYWRCCbqBAQ'
'WKAQIQAVIHUGF5bG9hZDoiorsYBUV2ZW50ursYCVNhbml0aXNlZMq7GAhzYW5pdGlzZQ==');
@$core.Deprecated('Use actorSanitisedRequestDescriptor instead')
const ActorSanitisedRequest$json = {
'1': 'ActorSanitisedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorSanitisedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorSanitisedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSanitisedRequestDescriptor = $convert.base64Decode(
'ChVBY3RvclNhbml0aXNlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REIJuoEBBYoBAhABUgJJRBI/CgdQYXlsb2FkGAMgASgLMhouYXBpLkFjdG9yU2FuaXRpc2VkUG'
'F5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
'ZKK7GAdSZXF1ZXN0ursYCVNhbml0aXNlZA==');
@$core.Deprecated('Use actorSanitisedResponseDescriptor instead')
const ActorSanitisedResponse$json = {
'1': 'ActorSanitisedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `ActorSanitisedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorSanitisedResponseDescriptor = $convert.base64Decode(
'ChZBY3RvclNhbml0aXNlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZXNwb25zZU'
'hlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoZorsYCFJlc3Bv'
'bnNlursYCVNhbml0aXNlZA==');
@$core.Deprecated('Use actorCustomFieldsUpdatedPayloadDescriptor instead')
const ActorCustomFieldsUpdatedPayload$json = {
'1': 'ActorCustomFieldsUpdatedPayload',
'7': {},
};
/// Descriptor for `ActorCustomFieldsUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCustomFieldsUpdatedPayloadDescriptor = $convert.base64Decode(
'Ch9BY3RvckN1c3RvbUZpZWxkc1VwZGF0ZWRQYXlsb2FkOiSiuxgFRXZlbnSouxgBursYE0N1c3'
'RvbUZpZWxkc1VwZGF0ZWQ=');
@$core.Deprecated('Use actorCustomFieldsUpdatedEventDescriptor instead')
const ActorCustomFieldsUpdatedEvent$json = {
'1': 'ActorCustomFieldsUpdatedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorCustomFieldsUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorCustomFieldsUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCustomFieldsUpdatedEventDescriptor = $convert.base64Decode(
'Ch1BY3RvckN1c3RvbUZpZWxkc1VwZGF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRX'
'ZlbnRIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlE'
'Qgm6gQEFigECEAFSAklEEkkKB1BheWxvYWQYAyABKAsyJC5hcGkuQWN0b3JDdXN0b21GaWVsZH'
'NVcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOiCiuxgFRXZlbnS6uxgTQ3VzdG9t'
'RmllbGRzVXBkYXRlZA==');
@$core.Deprecated('Use actorCustomFieldsUpdatedRequestDescriptor instead')
const ActorCustomFieldsUpdatedRequest$json = {
'1': 'ActorCustomFieldsUpdatedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorCustomFieldsUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ActorCustomFieldsUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCustomFieldsUpdatedRequestDescriptor = $convert.base64Decode(
'Ch9BY3RvckN1c3RvbUZpZWxkc1VwZGF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS'
'5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5h'
'cGkuRW50aXR5SURCCbqBAQWKAQIQAVICSUQSSQoHUGF5bG9hZBgDIAEoCzIkLmFwaS5BY3Rvck'
'N1c3RvbUZpZWxkc1VwZGF0ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6P5JBGgoY0gEG'
'SGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgTQ3VzdG9tRmllbGRzVXBkYXRlZA'
'==');
@$core.Deprecated('Use actorCustomFieldsUpdatedResponseDescriptor instead')
const ActorCustomFieldsUpdatedResponse$json = {
'1': 'ActorCustomFieldsUpdatedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `ActorCustomFieldsUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorCustomFieldsUpdatedResponseDescriptor = $convert.base64Decode(
'CiBBY3RvckN1c3RvbUZpZWxkc1VwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcG'
'kuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6'
'I6K7GAhSZXNwb25zZbq7GBNDdXN0b21GaWVsZHNVcGRhdGVk');

View File

@@ -1,60 +1,62 @@
// This is a generated file - do not edit.
//
// Generated from actorQuery.proto.
// Generated code. Do not modify.
// source: actorQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'actor.pb.dart' as $2;
import 'shared.pb.dart' as $1;
import 'actor.pb.dart' as $78;
import 'shared.pb.dart' as $29;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
class ActorByIdQuery extends $pb.GeneratedMessage {
factory ActorByIdQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.QueryEntityID>? iDs,
ActorQueryOptions? options,
$29.QueryProjectHeader? header,
$core.Iterable<$29.EntityID>? iDs,
}) {
final result = create();
if (header != null) result.header = header;
if (iDs != null) result.iDs.addAll(iDs);
if (options != null) result.options = options;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (iDs != null) {
$result.iDs.addAll(iDs);
}
return $result;
}
ActorByIdQuery._();
factory ActorByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByIdQuery._() : super();
factory ActorByIdQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByIdQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.QueryEntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.QueryEntityID.create)
..aOM<ActorQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ActorQueryOptions.create)
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..pc<$29.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $29.EntityID.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByIdQuery clone() => ActorByIdQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByIdQuery copyWith(void Function(ActorByIdQuery) updates) => super.copyWith((message) => updates(message as ActorByIdQuery)) as ActorByIdQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByIdQuery create() => ActorByIdQuery._();
@$core.override
ActorByIdQuery createEmptyInstance() => create();
static $pb.PbList<ActorByIdQuery> createRepeated() => $pb.PbList<ActorByIdQuery>();
@$core.pragma('dart2js:noInline')
@@ -62,64 +64,59 @@ class ActorByIdQuery extends $pb.GeneratedMessage {
static ActorByIdQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$1.QueryEntityID> get iDs => $_getList(1);
@$pb.TagNumber(3)
ActorQueryOptions get options => $_getN(2);
@$pb.TagNumber(3)
set options(ActorQueryOptions value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasOptions() => $_has(2);
@$pb.TagNumber(3)
void clearOptions() => $_clearField(3);
@$pb.TagNumber(3)
ActorQueryOptions ensureOptions() => $_ensure(2);
$pb.PbList<$29.EntityID> get iDs => $_getList(1);
}
class ActorByIdResult extends $pb.GeneratedMessage {
factory ActorByIdResult({
$1.ResultHeader? header,
$core.Iterable<$2.Actor>? objects,
$29.ResultHeader? header,
$core.Iterable<$78.Actor>? objects,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (objects != null) {
$result.objects.addAll(objects);
}
return $result;
}
ActorByIdResult._();
factory ActorByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByIdResult._() : super();
factory ActorByIdResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByIdResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByIdResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$2.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $2.Actor.create)
..aOM<$29.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.ResultHeader.create)
..pc<$78.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $78.Actor.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByIdResult clone() => ActorByIdResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByIdResult copyWith(void Function(ActorByIdResult) updates) => super.copyWith((message) => updates(message as ActorByIdResult)) as ActorByIdResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByIdResult create() => ActorByIdResult._();
@$core.override
ActorByIdResult createEmptyInstance() => create();
static $pb.PbList<ActorByIdResult> createRepeated() => $pb.PbList<ActorByIdResult>();
@$core.pragma('dart2js:noInline')
@@ -127,68 +124,69 @@ class ActorByIdResult extends $pb.GeneratedMessage {
static ActorByIdResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
$29.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
set header($29.ResultHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
$29.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$2.Actor> get objects => $_getList(1);
$pb.PbList<$78.Actor> get objects => $_getList(1);
}
class ActorByFilterQuery extends $pb.GeneratedMessage {
factory ActorByFilterQuery({
$1.QueryProjectHeader? header,
$29.QueryProjectHeader? header,
$core.String? limitFilter,
$core.String? queryContext,
$core.Iterable<$1.BlockFilter>? blockFilters,
ActorQueryOptions? options,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
$core.Iterable<$29.BlockFilter>? blockFilters,
}) {
final result = create();
if (header != null) result.header = header;
if (limitFilter != null) result.limitFilter = limitFilter;
if (queryContext != null) result.queryContext = queryContext;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (options != null) result.options = options;
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (limitFilter != null) {
$result.limitFilter = limitFilter;
}
if (queryContext != null) {
$result.queryContext = queryContext;
}
if (blockFilters != null) {
$result.blockFilters.addAll(blockFilters);
}
return $result;
}
ActorByFilterQuery._();
factory ActorByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByFilterQuery._() : super();
factory ActorByFilterQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByFilterQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..pc<$1.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..aOM<ActorQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ActorQueryOptions.create)
..e<$1.EntityType>(8, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(9, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..pc<$29.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $29.BlockFilter.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByFilterQuery clone() => ActorByFilterQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByFilterQuery copyWith(void Function(ActorByFilterQuery) updates) => super.copyWith((message) => updates(message as ActorByFilterQuery)) as ActorByFilterQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByFilterQuery create() => ActorByFilterQuery._();
@$core.override
ActorByFilterQuery createEmptyInstance() => create();
static $pb.PbList<ActorByFilterQuery> createRepeated() => $pb.PbList<ActorByFilterQuery>();
@$core.pragma('dart2js:noInline')
@@ -196,21 +194,21 @@ class ActorByFilterQuery extends $pb.GeneratedMessage {
static ActorByFilterQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
/// Number of maximum result
@$pb.TagNumber(4)
$core.String get limitFilter => $_getSZ(1);
@$pb.TagNumber(4)
set limitFilter($core.String value) => $_setString(1, value);
set limitFilter($core.String v) { $_setString(1, v); }
@$pb.TagNumber(4)
$core.bool hasLimitFilter() => $_has(1);
@$pb.TagNumber(4)
@@ -219,82 +217,61 @@ class ActorByFilterQuery extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(5)
set queryContext($core.String value) => $_setString(2, value);
set queryContext($core.String v) { $_setString(2, v); }
@$pb.TagNumber(5)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(5)
void clearQueryContext() => $_clearField(5);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
@$pb.TagNumber(6)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
@$pb.TagNumber(7)
ActorQueryOptions get options => $_getN(4);
@$pb.TagNumber(7)
set options(ActorQueryOptions value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasOptions() => $_has(4);
@$pb.TagNumber(7)
void clearOptions() => $_clearField(7);
@$pb.TagNumber(7)
ActorQueryOptions ensureOptions() => $_ensure(4);
@$pb.TagNumber(8)
$1.EntityType get usageContextEntity => $_getN(5);
@$pb.TagNumber(8)
set usageContextEntity($1.EntityType value) => $_setField(8, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextEntity() => $_has(5);
@$pb.TagNumber(8)
void clearUsageContextEntity() => $_clearField(8);
@$pb.TagNumber(9)
$core.String get usageContextPath => $_getSZ(6);
@$pb.TagNumber(9)
set usageContextPath($core.String value) => $_setString(6, value);
@$pb.TagNumber(9)
$core.bool hasUsageContextPath() => $_has(6);
@$pb.TagNumber(9)
void clearUsageContextPath() => $_clearField(9);
$pb.PbList<$29.BlockFilter> get blockFilters => $_getList(3);
}
class ActorByFilterResult extends $pb.GeneratedMessage {
factory ActorByFilterResult({
$1.ResultHeader? header,
$core.Iterable<$2.Actor>? objects,
$29.ResultHeader? header,
$core.Iterable<$78.Actor>? objects,
$core.String? queryContext,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
if (queryContext != null) result.queryContext = queryContext;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (objects != null) {
$result.objects.addAll(objects);
}
if (queryContext != null) {
$result.queryContext = queryContext;
}
return $result;
}
ActorByFilterResult._();
factory ActorByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByFilterResult._() : super();
factory ActorByFilterResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByFilterResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$2.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $2.Actor.create)
..aOM<$29.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.ResultHeader.create)
..pc<$78.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $78.Actor.create)
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByFilterResult clone() => ActorByFilterResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByFilterResult copyWith(void Function(ActorByFilterResult) updates) => super.copyWith((message) => updates(message as ActorByFilterResult)) as ActorByFilterResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByFilterResult create() => ActorByFilterResult._();
@$core.override
ActorByFilterResult createEmptyInstance() => create();
static $pb.PbList<ActorByFilterResult> createRepeated() => $pb.PbList<ActorByFilterResult>();
@$core.pragma('dart2js:noInline')
@@ -302,111 +279,73 @@ class ActorByFilterResult extends $pb.GeneratedMessage {
static ActorByFilterResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
$29.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
set header($29.ResultHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
$29.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$2.Actor> get objects => $_getList(1);
$pb.PbList<$78.Actor> get objects => $_getList(1);
@$pb.TagNumber(3)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(3)
set queryContext($core.String value) => $_setString(2, value);
set queryContext($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(3)
void clearQueryContext() => $_clearField(3);
}
class ActorQueryOptions extends $pb.GeneratedMessage {
factory ActorQueryOptions({
$core.Iterable<$core.String>? only,
}) {
final result = create();
if (only != null) result.only.addAll(only);
return result;
}
ActorQueryOptions._();
factory ActorQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pPS(1, _omitFieldNames ? '' : 'Only', protoName: 'Only')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorQueryOptions clone() => ActorQueryOptions()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ActorQueryOptions copyWith(void Function(ActorQueryOptions) updates) => super.copyWith((message) => updates(message as ActorQueryOptions)) as ActorQueryOptions;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorQueryOptions create() => ActorQueryOptions._();
@$core.override
ActorQueryOptions createEmptyInstance() => create();
static $pb.PbList<ActorQueryOptions> createRepeated() => $pb.PbList<ActorQueryOptions>();
@$core.pragma('dart2js:noInline')
static ActorQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorQueryOptions>(create);
static ActorQueryOptions? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$core.String> get only => $_getList(0);
}
class ActorByMatchQuery extends $pb.GeneratedMessage {
factory ActorByMatchQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.BlockFilter>? blockFilters,
$core.Iterable<$1.MatchField>? matchFields,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
$29.QueryProjectHeader? header,
$core.Iterable<$29.BlockFilter>? blockFilters,
$core.Iterable<$29.MatchField>? matchFields,
}) {
final result = create();
if (header != null) result.header = header;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (matchFields != null) result.matchFields.addAll(matchFields);
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (blockFilters != null) {
$result.blockFilters.addAll(blockFilters);
}
if (matchFields != null) {
$result.matchFields.addAll(matchFields);
}
return $result;
}
ActorByMatchQuery._();
factory ActorByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByMatchQuery._() : super();
factory ActorByMatchQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByMatchQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..pc<$1.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $1.MatchField.create)
..e<$1.EntityType>(7, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(8, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..pc<$29.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $29.BlockFilter.create)
..pc<$29.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $29.MatchField.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByMatchQuery clone() => ActorByMatchQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByMatchQuery copyWith(void Function(ActorByMatchQuery) updates) => super.copyWith((message) => updates(message as ActorByMatchQuery)) as ActorByMatchQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByMatchQuery create() => ActorByMatchQuery._();
@$core.override
ActorByMatchQuery createEmptyInstance() => create();
static $pb.PbList<ActorByMatchQuery> createRepeated() => $pb.PbList<ActorByMatchQuery>();
@$core.pragma('dart2js:noInline')
@@ -414,73 +353,59 @@ class ActorByMatchQuery extends $pb.GeneratedMessage {
static ActorByMatchQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
@$pb.TagNumber(5)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(1);
$pb.PbList<$29.BlockFilter> get blockFilters => $_getList(1);
/// MatchField list structure, for FindMatching query
@$pb.TagNumber(6)
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
@$pb.TagNumber(7)
$1.EntityType get usageContextEntity => $_getN(3);
@$pb.TagNumber(7)
set usageContextEntity($1.EntityType value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasUsageContextEntity() => $_has(3);
@$pb.TagNumber(7)
void clearUsageContextEntity() => $_clearField(7);
@$pb.TagNumber(8)
$core.String get usageContextPath => $_getSZ(4);
@$pb.TagNumber(8)
set usageContextPath($core.String value) => $_setString(4, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextPath() => $_has(4);
@$pb.TagNumber(8)
void clearUsageContextPath() => $_clearField(8);
$pb.PbList<$29.MatchField> get matchFields => $_getList(2);
}
class ActorByMatchResult extends $pb.GeneratedMessage {
factory ActorByMatchResult({
$core.Iterable<$1.MatchFieldResult>? matchResults,
$core.Iterable<$29.MatchFieldResult>? matchResults,
}) {
final result = create();
if (matchResults != null) result.matchResults.addAll(matchResults);
return result;
final $result = create();
if (matchResults != null) {
$result.matchResults.addAll(matchResults);
}
return $result;
}
ActorByMatchResult._();
factory ActorByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ActorByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ActorByMatchResult._() : super();
factory ActorByMatchResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ActorByMatchResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$1.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $1.MatchFieldResult.create)
..pc<$29.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $29.MatchFieldResult.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ActorByMatchResult clone() => ActorByMatchResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ActorByMatchResult copyWith(void Function(ActorByMatchResult) updates) => super.copyWith((message) => updates(message as ActorByMatchResult)) as ActorByMatchResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ActorByMatchResult create() => ActorByMatchResult._();
@$core.override
ActorByMatchResult createEmptyInstance() => create();
static $pb.PbList<ActorByMatchResult> createRepeated() => $pb.PbList<ActorByMatchResult>();
@$core.pragma('dart2js:noInline')
@@ -488,9 +413,9 @@ class ActorByMatchResult extends $pb.GeneratedMessage {
static ActorByMatchResult? _defaultInstance;
@$pb.TagNumber(2)
$pb.PbList<$1.MatchFieldResult> get matchResults => $_getList(0);
$pb.PbList<$29.MatchFieldResult> get matchResults => $_getList(0);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from actorQuery.proto.
// Generated code. Do not modify.
// source: actorQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actorQuery.proto.
// Generated code. Do not modify.
// source: actorQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,73 +15,67 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'actorQuery.pb.dart' as $0;
import 'shared.pb.dart' as $1;
import 'actorQuery.pb.dart' as $28;
import 'shared.pb.dart' as $29;
export 'actorQuery.pb.dart';
@$pb.GrpcServiceName('api.ActorQuery')
class ActorQueryClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$getByIds = $grpc.ClientMethod<$28.ActorByIdQuery, $28.ActorByIdResult>(
'/api.ActorQuery/GetByIds',
($28.ActorByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $28.ActorByIdResult.fromBuffer(value));
static final _$find = $grpc.ClientMethod<$28.ActorByFilterQuery, $28.ActorByFilterResult>(
'/api.ActorQuery/Find',
($28.ActorByFilterQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $28.ActorByFilterResult.fromBuffer(value));
static final _$findMatchingFieldValues = $grpc.ClientMethod<$28.ActorByMatchQuery, $28.ActorByMatchResult>(
'/api.ActorQuery/FindMatchingFieldValues',
($28.ActorByMatchQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $28.ActorByMatchResult.fromBuffer(value));
static final _$findMatchingFieldElements = $grpc.ClientMethod<$29.ElementByMatchQuery, $29.ElementByMatchResult>(
'/api.ActorQuery/FindMatchingFieldElements',
($29.ElementByMatchQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ElementByMatchResult.fromBuffer(value));
static final _$extract = $grpc.ClientMethod<$29.ExtractQuery, $29.ExtractResult>(
'/api.ActorQuery/Extract',
($29.ExtractQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ExtractResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'/api.ActorQuery/CountLines',
($29.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.CountLinesResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
ActorQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
ActorQueryClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ActorByIdResult> getByIds($0.ActorByIdQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$28.ActorByIdResult> getByIds($28.ActorByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$0.ActorByFilterResult> find($0.ActorByFilterQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$28.ActorByFilterResult> find($28.ActorByFilterQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$find, request, options: options);
}
$grpc.ResponseFuture<$0.ActorByMatchResult> findMatchingFieldValues($0.ActorByMatchQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$28.ActorByMatchResult> findMatchingFieldValues($28.ActorByMatchQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
}
$grpc.ResponseFuture<$1.ElementByMatchResult> findMatchingFieldElements($1.ElementByMatchQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.ElementByMatchResult> findMatchingFieldElements($29.ElementByMatchQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
}
$grpc.ResponseFuture<$1.ExtractResult> extract($1.ExtractQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.ExtractResult> extract($29.ExtractQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$extract, request, options: options);
}
$grpc.ResponseFuture<$1.CountLinesResult> countLines($1.CountLinesQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.CountLinesResult> countLines($29.CountLinesQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$countLines, request, options: options);
}
// method descriptors
static final _$getByIds = $grpc.ClientMethod<$0.ActorByIdQuery, $0.ActorByIdResult>(
'/api.ActorQuery/GetByIds',
($0.ActorByIdQuery value) => value.writeToBuffer(),
$0.ActorByIdResult.fromBuffer);
static final _$find = $grpc.ClientMethod<$0.ActorByFilterQuery, $0.ActorByFilterResult>(
'/api.ActorQuery/Find',
($0.ActorByFilterQuery value) => value.writeToBuffer(),
$0.ActorByFilterResult.fromBuffer);
static final _$findMatchingFieldValues = $grpc.ClientMethod<$0.ActorByMatchQuery, $0.ActorByMatchResult>(
'/api.ActorQuery/FindMatchingFieldValues',
($0.ActorByMatchQuery value) => value.writeToBuffer(),
$0.ActorByMatchResult.fromBuffer);
static final _$findMatchingFieldElements = $grpc.ClientMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
'/api.ActorQuery/FindMatchingFieldElements',
($1.ElementByMatchQuery value) => value.writeToBuffer(),
$1.ElementByMatchResult.fromBuffer);
static final _$extract = $grpc.ClientMethod<$1.ExtractQuery, $1.ExtractResult>(
'/api.ActorQuery/Extract',
($1.ExtractQuery value) => value.writeToBuffer(),
$1.ExtractResult.fromBuffer);
static final _$countLines = $grpc.ClientMethod<$1.CountLinesQuery, $1.CountLinesResult>(
'/api.ActorQuery/CountLines',
($1.CountLinesQuery value) => value.writeToBuffer(),
$1.CountLinesResult.fromBuffer);
}
@$pb.GrpcServiceName('api.ActorQuery')
@@ -90,84 +83,78 @@ abstract class ActorQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.ActorQuery';
ActorQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ActorByIdQuery, $0.ActorByIdResult>(
$addMethod($grpc.ServiceMethod<$28.ActorByIdQuery, $28.ActorByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorByIdQuery.fromBuffer(value),
($0.ActorByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorByFilterQuery, $0.ActorByFilterResult>(
($core.List<$core.int> value) => $28.ActorByIdQuery.fromBuffer(value),
($28.ActorByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$28.ActorByFilterQuery, $28.ActorByFilterResult>(
'Find',
find_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorByFilterQuery.fromBuffer(value),
($0.ActorByFilterResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorByMatchQuery, $0.ActorByMatchResult>(
($core.List<$core.int> value) => $28.ActorByFilterQuery.fromBuffer(value),
($28.ActorByFilterResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$28.ActorByMatchQuery, $28.ActorByMatchResult>(
'FindMatchingFieldValues',
findMatchingFieldValues_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorByMatchQuery.fromBuffer(value),
($0.ActorByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
($core.List<$core.int> value) => $28.ActorByMatchQuery.fromBuffer(value),
($28.ActorByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.ElementByMatchQuery, $29.ElementByMatchResult>(
'FindMatchingFieldElements',
findMatchingFieldElements_Pre,
false,
false,
($core.List<$core.int> value) => $1.ElementByMatchQuery.fromBuffer(value),
($1.ElementByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ExtractQuery, $1.ExtractResult>(
($core.List<$core.int> value) => $29.ElementByMatchQuery.fromBuffer(value),
($29.ElementByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.ExtractQuery, $29.ExtractResult>(
'Extract',
extract_Pre,
false,
false,
($core.List<$core.int> value) => $1.ExtractQuery.fromBuffer(value),
($1.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CountLinesQuery, $1.CountLinesResult>(
($core.List<$core.int> value) => $29.ExtractQuery.fromBuffer(value),
($29.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
($1.CountLinesResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $29.CountLinesQuery.fromBuffer(value),
($29.CountLinesResult value) => value.writeToBuffer()));
}
$async.Future<$0.ActorByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorByIdQuery> $request) async {
$async.Future<$28.ActorByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$28.ActorByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$0.ActorByIdResult> getByIds($grpc.ServiceCall call, $0.ActorByIdQuery request);
$async.Future<$0.ActorByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorByFilterQuery> $request) async {
$async.Future<$28.ActorByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$28.ActorByFilterQuery> $request) async {
return find($call, await $request);
}
$async.Future<$0.ActorByFilterResult> find($grpc.ServiceCall call, $0.ActorByFilterQuery request);
$async.Future<$0.ActorByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorByMatchQuery> $request) async {
$async.Future<$28.ActorByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$28.ActorByMatchQuery> $request) async {
return findMatchingFieldValues($call, await $request);
}
$async.Future<$0.ActorByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $0.ActorByMatchQuery request);
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$1.ElementByMatchQuery> $request) async {
$async.Future<$29.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$29.ElementByMatchQuery> $request) async {
return findMatchingFieldElements($call, await $request);
}
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $1.ElementByMatchQuery request);
$async.Future<$1.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$1.ExtractQuery> $request) async {
$async.Future<$29.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$29.ExtractQuery> $request) async {
return extract($call, await $request);
}
$async.Future<$1.ExtractResult> extract($grpc.ServiceCall call, $1.ExtractQuery request);
$async.Future<$1.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$1.CountLinesQuery> $request) async {
$async.Future<$29.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$29.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
$async.Future<$28.ActorByIdResult> getByIds($grpc.ServiceCall call, $28.ActorByIdQuery request);
$async.Future<$28.ActorByFilterResult> find($grpc.ServiceCall call, $28.ActorByFilterQuery request);
$async.Future<$28.ActorByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $28.ActorByMatchQuery request);
$async.Future<$29.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $29.ElementByMatchQuery request);
$async.Future<$29.ExtractResult> extract($grpc.ServiceCall call, $29.ExtractQuery request);
$async.Future<$29.CountLinesResult> countLines($grpc.ServiceCall call, $29.CountLinesQuery request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from actorQuery.proto.
// Generated code. Do not modify.
// source: actorQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -19,18 +18,16 @@ const ActorByIdQuery$json = {
'1': 'ActorByIdQuery',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.QueryEntityID', '8': {}, '10': 'IDs'},
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ActorQueryOptions', '10': 'Options'},
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
],
'7': {},
};
/// Descriptor for `ActorByIdQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorByIdQueryDescriptor = $convert.base64Decode(
'Cg5BY3RvckJ5SWRRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
'VyQgm6gQEFigECEAFSBkhlYWRlchIvCgNJRHMYAiADKAsyEi5hcGkuUXVlcnlFbnRpdHlJREIJ'
'uoEBBZIBAggBUgNJRHMSMAoHT3B0aW9ucxgDIAEoCzIWLmFwaS5BY3RvclF1ZXJ5T3B0aW9uc1'
'IHT3B0aW9uczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
'Cg5BY3RvckJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
@$core.Deprecated('Use actorByIdResultDescriptor instead')
const ActorByIdResult$json = {
@@ -56,29 +53,17 @@ const ActorByFilterQuery$json = {
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
{'1': 'BlockFilters', '3': 6, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'Options', '3': 7, '4': 1, '5': 11, '6': '.api.ActorQueryOptions', '10': 'Options'},
{'1': 'UsageContextEntity', '3': 8, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `ActorByFilterQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorByFilterQueryDescriptor = $convert.base64Decode(
'ChJBY3RvckJ5RmlsdGVyUXVlcnkSPQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
'hlYWRlckIMkkEAuoEBBYoBAhABUgZIZWFkZXISRgoLbGltaXRGaWx0ZXIYBCABKAlCJJJBITIY'
'TnVtYmVyIG9mIG1heGltdW0gcmVzdWx0SgUiNTAwIlILbGltaXRGaWx0ZXISIgoMcXVlcnlDb2'
'50ZXh0GAUgASgJUgxxdWVyeUNvbnRleHQSNAoMQmxvY2tGaWx0ZXJzGAYgAygLMhAuYXBpLkJs'
'b2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSMAoHT3B0aW9ucxgHIAEoCzIWLmFwaS5BY3RvclF1ZX'
'J5T3B0aW9uc1IHT3B0aW9ucxLDAgoSVXNhZ2VDb250ZXh0RW50aXR5GAggASgOMg8uYXBpLkVu'
'dGl0eVR5cGVCgQKSQf0BMlxPcHRpb25hbCA6IEVudGl0eSB0byBhcHBseSB0aGUgcmVzdHJpY3'
'Rpb24gcnVsZXMgKG9uIHRoZSBwYXRoIGRlZmluZWQgd2l0aCBVc2FnZUNvbnRleHRQYXRoKUqc'
'ASJGb3IgQWN0b3IsIHRvIGxpbWl0IHRoZSByZXN1bHRzIGFjY29yZGluZyB0byBPcmRlciBTaG'
'lwRnJvbSByZXN0cmljdGlvbiBydWxlcywgZGVmaW5lIFVzYWdlQ29udGV4dEVudGl0eSB0byBP'
'cmRlciBhbmQgVXNhZ2VDb250ZXh0UGF0aCB0byBQYXlsb2FkLlNoaXBGcm9tIlISVXNhZ2VDb2'
'50ZXh0RW50aXR5EoQBChBVc2FnZUNvbnRleHRQYXRoGAkgASgJQliSQVUyU09wdGlvbmFsIDog'
'UGF0aCBvZiByZXN0cmljdGlvbiBydWxlIHRvIGFwcGx5IChVc2FnZUNvbnRleHRFbnRpdHkgc2'
'hvdWxkIGJlIGRlZmluZWQpUhBVc2FnZUNvbnRleHRQYXRoOg6SQQsKCdIBBkhlYWRlcg==');
'ChJBY3RvckJ5RmlsdGVyUXVlcnkSPAoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
@$core.Deprecated('Use actorByFilterResultDescriptor instead')
const ActorByFilterResult$json = {
@@ -96,21 +81,6 @@ final $typed_data.Uint8List actorByFilterResultDescriptor = $convert.base64Decod
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkFjdG9yUgdPYmplY3RzEiIKDHF1ZXJ5'
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
@$core.Deprecated('Use actorQueryOptionsDescriptor instead')
const ActorQueryOptions$json = {
'1': 'ActorQueryOptions',
'2': [
{'1': 'Only', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'Only'},
],
};
/// Descriptor for `ActorQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorQueryOptionsDescriptor = $convert.base64Decode(
'ChFBY3RvclF1ZXJ5T3B0aW9ucxKZAQoET25seRgBIAMoCUKEAZJBgAEyTE9wdGlvbmFsIDogTG'
'lzdCBvZiBmaWVsZHMgdG8gaW5jbHVkZSBpbiB0aGUgcmVzcG9uc2UgZm9yIGVhY2ggcmV0dXJu'
'ZWQgQWN0b3JKMFsiSUQuUmVmSUQiLCAiUGF5bG9hZC5OYW1lIiwgIlBheWxvYWQuTGluZXMuSU'
'QiXVIET25seQ==');
@$core.Deprecated('Use actorByMatchQueryDescriptor instead')
const ActorByMatchQuery$json = {
'1': 'ActorByMatchQuery',
@@ -118,27 +88,17 @@ const ActorByMatchQuery$json = {
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'BlockFilters', '3': 5, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'MatchFields', '3': 6, '4': 3, '5': 11, '6': '.api.MatchField', '8': {}, '10': 'MatchFields'},
{'1': 'UsageContextEntity', '3': 7, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `ActorByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorByMatchQueryDescriptor = $convert.base64Decode(
'ChFBY3RvckJ5TWF0Y2hRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQgm6gQEFigECEAFSBkhlYWRlchI0CgxCbG9ja0ZpbHRlcnMYBSADKAsyEC5hcGkuQmxv'
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxJpCgtNYXRjaEZpZWxkcxgGIAMoCzIPLmFwaS5NYXRjaE'
'ZpZWxkQjaSQTMyMU1hdGNoRmllbGQgbGlzdCBzdHJ1Y3R1cmUsIGZvciBGaW5kTWF0Y2hpbmcg'
'cXVlcnlSC01hdGNoRmllbGRzEsMCChJVc2FnZUNvbnRleHRFbnRpdHkYByABKA4yDy5hcGkuRW'
'50aXR5VHlwZUKBApJB/QEyXE9wdGlvbmFsIDogRW50aXR5IHRvIGFwcGx5IHRoZSByZXN0cmlj'
'dGlvbiBydWxlcyAob24gdGhlIHBhdGggZGVmaW5lZCB3aXRoIFVzYWdlQ29udGV4dFBhdGgpSp'
'wBIkZvciBBY3RvciwgdG8gbGltaXQgdGhlIHJlc3VsdHMgYWNjb3JkaW5nIHRvIE9yZGVyIFNo'
'aXBGcm9tIHJlc3RyaWN0aW9uIHJ1bGVzLCBkZWZpbmUgVXNhZ2VDb250ZXh0RW50aXR5IHRvIE'
'9yZGVyIGFuZCBVc2FnZUNvbnRleHRQYXRoIHRvIFBheWxvYWQuU2hpcEZyb20iUhJVc2FnZUNv'
'bnRleHRFbnRpdHkShAEKEFVzYWdlQ29udGV4dFBhdGgYCCABKAlCWJJBVTJTT3B0aW9uYWwgOi'
'BQYXRoIG9mIHJlc3RyaWN0aW9uIHJ1bGUgdG8gYXBwbHkgKFVzYWdlQ29udGV4dEVudGl0eSBz'
'aG91bGQgYmUgZGVmaW5lZClSEFVzYWdlQ29udGV4dFBhdGg6DpJBCwoJ0gEGSGVhZGVy');
'ChFBY3RvckJ5TWF0Y2hRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgFIAMoCzIQLmFwaS5CbG9j'
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEmkKC01hdGNoRmllbGRzGAYgAygLMg8uYXBpLk1hdGNoRm'
'llbGRCNpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZSwgZm9yIEZpbmRNYXRjaGluZyBx'
'dWVyeVILTWF0Y2hGaWVsZHM6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use actorByMatchResultDescriptor instead')
const ActorByMatchResult$json = {

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from adaptiveCard.proto.
// Generated code. Do not modify.
// source: adaptiveCard.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -21,16 +20,18 @@ class AdaptiveCard extends $pb.GeneratedMessage {
$core.String? name,
$core.String? template,
}) {
final result = create();
if (name != null) result.name = name;
if (template != null) result.template = template;
return result;
final $result = create();
if (name != null) {
$result.name = name;
}
if (template != null) {
$result.template = template;
}
return $result;
}
AdaptiveCard._();
factory AdaptiveCard.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdaptiveCard.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdaptiveCard._() : super();
factory AdaptiveCard.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdaptiveCard.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdaptiveCard', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
@@ -38,17 +39,21 @@ class AdaptiveCard extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdaptiveCard clone() => AdaptiveCard()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdaptiveCard copyWith(void Function(AdaptiveCard) updates) => super.copyWith((message) => updates(message as AdaptiveCard)) as AdaptiveCard;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdaptiveCard create() => AdaptiveCard._();
@$core.override
AdaptiveCard createEmptyInstance() => create();
static $pb.PbList<AdaptiveCard> createRepeated() => $pb.PbList<AdaptiveCard>();
@$core.pragma('dart2js:noInline')
@@ -58,7 +63,7 @@ class AdaptiveCard extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String value) => $_setString(0, value);
set name($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
@@ -67,7 +72,7 @@ class AdaptiveCard extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get template => $_getSZ(1);
@$pb.TagNumber(2)
set template($core.String value) => $_setString(1, value);
set template($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasTemplate() => $_has(1);
@$pb.TagNumber(2)
@@ -76,27 +81,29 @@ class AdaptiveCard extends $pb.GeneratedMessage {
class ListAdaptiveCardRequest extends $pb.GeneratedMessage {
factory ListAdaptiveCardRequest() => create();
ListAdaptiveCardRequest._();
factory ListAdaptiveCardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAdaptiveCardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ListAdaptiveCardRequest._() : super();
factory ListAdaptiveCardRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ListAdaptiveCardRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAdaptiveCardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ListAdaptiveCardRequest clone() => ListAdaptiveCardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ListAdaptiveCardRequest copyWith(void Function(ListAdaptiveCardRequest) updates) => super.copyWith((message) => updates(message as ListAdaptiveCardRequest)) as ListAdaptiveCardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAdaptiveCardRequest create() => ListAdaptiveCardRequest._();
@$core.override
ListAdaptiveCardRequest createEmptyInstance() => create();
static $pb.PbList<ListAdaptiveCardRequest> createRepeated() => $pb.PbList<ListAdaptiveCardRequest>();
@$core.pragma('dart2js:noInline')
@@ -108,32 +115,36 @@ class ListAdaptiveCardResult extends $pb.GeneratedMessage {
factory ListAdaptiveCardResult({
$core.Iterable<AdaptiveCard>? adaptiveCards,
}) {
final result = create();
if (adaptiveCards != null) result.adaptiveCards.addAll(adaptiveCards);
return result;
final $result = create();
if (adaptiveCards != null) {
$result.adaptiveCards.addAll(adaptiveCards);
}
return $result;
}
ListAdaptiveCardResult._();
factory ListAdaptiveCardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAdaptiveCardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ListAdaptiveCardResult._() : super();
factory ListAdaptiveCardResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ListAdaptiveCardResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAdaptiveCardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<AdaptiveCard>(1, _omitFieldNames ? '' : 'AdaptiveCards', $pb.PbFieldType.PM, protoName: 'AdaptiveCards', subBuilder: AdaptiveCard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ListAdaptiveCardResult clone() => ListAdaptiveCardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ListAdaptiveCardResult copyWith(void Function(ListAdaptiveCardResult) updates) => super.copyWith((message) => updates(message as ListAdaptiveCardResult)) as ListAdaptiveCardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAdaptiveCardResult create() => ListAdaptiveCardResult._();
@$core.override
ListAdaptiveCardResult createEmptyInstance() => create();
static $pb.PbList<ListAdaptiveCardResult> createRepeated() => $pb.PbList<ListAdaptiveCardResult>();
@$core.pragma('dart2js:noInline')
@@ -148,32 +159,36 @@ class GetAdaptiveCardRequest extends $pb.GeneratedMessage {
factory GetAdaptiveCardRequest({
$core.String? name,
}) {
final result = create();
if (name != null) result.name = name;
return result;
final $result = create();
if (name != null) {
$result.name = name;
}
return $result;
}
GetAdaptiveCardRequest._();
factory GetAdaptiveCardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetAdaptiveCardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
GetAdaptiveCardRequest._() : super();
factory GetAdaptiveCardRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory GetAdaptiveCardRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAdaptiveCardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
GetAdaptiveCardRequest clone() => GetAdaptiveCardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
GetAdaptiveCardRequest copyWith(void Function(GetAdaptiveCardRequest) updates) => super.copyWith((message) => updates(message as GetAdaptiveCardRequest)) as GetAdaptiveCardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetAdaptiveCardRequest create() => GetAdaptiveCardRequest._();
@$core.override
GetAdaptiveCardRequest createEmptyInstance() => create();
static $pb.PbList<GetAdaptiveCardRequest> createRepeated() => $pb.PbList<GetAdaptiveCardRequest>();
@$core.pragma('dart2js:noInline')
@@ -183,7 +198,7 @@ class GetAdaptiveCardRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String value) => $_setString(0, value);
set name($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
@@ -194,32 +209,36 @@ class GetAdaptiveCardResult extends $pb.GeneratedMessage {
factory GetAdaptiveCardResult({
AdaptiveCard? adaptiveCard,
}) {
final result = create();
if (adaptiveCard != null) result.adaptiveCard = adaptiveCard;
return result;
final $result = create();
if (adaptiveCard != null) {
$result.adaptiveCard = adaptiveCard;
}
return $result;
}
GetAdaptiveCardResult._();
factory GetAdaptiveCardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetAdaptiveCardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
GetAdaptiveCardResult._() : super();
factory GetAdaptiveCardResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory GetAdaptiveCardResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAdaptiveCardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<AdaptiveCard>(1, _omitFieldNames ? '' : 'AdaptiveCard', protoName: 'AdaptiveCard', subBuilder: AdaptiveCard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
GetAdaptiveCardResult clone() => GetAdaptiveCardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
GetAdaptiveCardResult copyWith(void Function(GetAdaptiveCardResult) updates) => super.copyWith((message) => updates(message as GetAdaptiveCardResult)) as GetAdaptiveCardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetAdaptiveCardResult create() => GetAdaptiveCardResult._();
@$core.override
GetAdaptiveCardResult createEmptyInstance() => create();
static $pb.PbList<GetAdaptiveCardResult> createRepeated() => $pb.PbList<GetAdaptiveCardResult>();
@$core.pragma('dart2js:noInline')
@@ -229,7 +248,7 @@ class GetAdaptiveCardResult extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
AdaptiveCard get adaptiveCard => $_getN(0);
@$pb.TagNumber(1)
set adaptiveCard(AdaptiveCard value) => $_setField(1, value);
set adaptiveCard(AdaptiveCard v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasAdaptiveCard() => $_has(0);
@$pb.TagNumber(1)
@@ -243,16 +262,18 @@ class CreateAdaptiveCardRequest extends $pb.GeneratedMessage {
$core.String? template,
$core.String? name,
}) {
final result = create();
if (template != null) result.template = template;
if (name != null) result.name = name;
return result;
final $result = create();
if (template != null) {
$result.template = template;
}
if (name != null) {
$result.name = name;
}
return $result;
}
CreateAdaptiveCardRequest._();
factory CreateAdaptiveCardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateAdaptiveCardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
CreateAdaptiveCardRequest._() : super();
factory CreateAdaptiveCardRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory CreateAdaptiveCardRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAdaptiveCardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Template', protoName: 'Template')
@@ -260,17 +281,21 @@ class CreateAdaptiveCardRequest extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
CreateAdaptiveCardRequest clone() => CreateAdaptiveCardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
CreateAdaptiveCardRequest copyWith(void Function(CreateAdaptiveCardRequest) updates) => super.copyWith((message) => updates(message as CreateAdaptiveCardRequest)) as CreateAdaptiveCardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateAdaptiveCardRequest create() => CreateAdaptiveCardRequest._();
@$core.override
CreateAdaptiveCardRequest createEmptyInstance() => create();
static $pb.PbList<CreateAdaptiveCardRequest> createRepeated() => $pb.PbList<CreateAdaptiveCardRequest>();
@$core.pragma('dart2js:noInline')
@@ -280,7 +305,7 @@ class CreateAdaptiveCardRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get template => $_getSZ(0);
@$pb.TagNumber(1)
set template($core.String value) => $_setString(0, value);
set template($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasTemplate() => $_has(0);
@$pb.TagNumber(1)
@@ -289,7 +314,7 @@ class CreateAdaptiveCardRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
set name($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
@@ -300,32 +325,36 @@ class CreateAdaptiveCardResult extends $pb.GeneratedMessage {
factory CreateAdaptiveCardResult({
AdaptiveCard? adaptiveCard,
}) {
final result = create();
if (adaptiveCard != null) result.adaptiveCard = adaptiveCard;
return result;
final $result = create();
if (adaptiveCard != null) {
$result.adaptiveCard = adaptiveCard;
}
return $result;
}
CreateAdaptiveCardResult._();
factory CreateAdaptiveCardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateAdaptiveCardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
CreateAdaptiveCardResult._() : super();
factory CreateAdaptiveCardResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory CreateAdaptiveCardResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAdaptiveCardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<AdaptiveCard>(1, _omitFieldNames ? '' : 'AdaptiveCard', protoName: 'AdaptiveCard', subBuilder: AdaptiveCard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
CreateAdaptiveCardResult clone() => CreateAdaptiveCardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
CreateAdaptiveCardResult copyWith(void Function(CreateAdaptiveCardResult) updates) => super.copyWith((message) => updates(message as CreateAdaptiveCardResult)) as CreateAdaptiveCardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateAdaptiveCardResult create() => CreateAdaptiveCardResult._();
@$core.override
CreateAdaptiveCardResult createEmptyInstance() => create();
static $pb.PbList<CreateAdaptiveCardResult> createRepeated() => $pb.PbList<CreateAdaptiveCardResult>();
@$core.pragma('dart2js:noInline')
@@ -335,7 +364,7 @@ class CreateAdaptiveCardResult extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
AdaptiveCard get adaptiveCard => $_getN(0);
@$pb.TagNumber(1)
set adaptiveCard(AdaptiveCard value) => $_setField(1, value);
set adaptiveCard(AdaptiveCard v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasAdaptiveCard() => $_has(0);
@$pb.TagNumber(1)
@@ -348,32 +377,36 @@ class UpdateAdaptiveCardRequest extends $pb.GeneratedMessage {
factory UpdateAdaptiveCardRequest({
AdaptiveCard? adaptiveCard,
}) {
final result = create();
if (adaptiveCard != null) result.adaptiveCard = adaptiveCard;
return result;
final $result = create();
if (adaptiveCard != null) {
$result.adaptiveCard = adaptiveCard;
}
return $result;
}
UpdateAdaptiveCardRequest._();
factory UpdateAdaptiveCardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateAdaptiveCardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
UpdateAdaptiveCardRequest._() : super();
factory UpdateAdaptiveCardRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory UpdateAdaptiveCardRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAdaptiveCardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<AdaptiveCard>(1, _omitFieldNames ? '' : 'AdaptiveCard', protoName: 'AdaptiveCard', subBuilder: AdaptiveCard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
UpdateAdaptiveCardRequest clone() => UpdateAdaptiveCardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
UpdateAdaptiveCardRequest copyWith(void Function(UpdateAdaptiveCardRequest) updates) => super.copyWith((message) => updates(message as UpdateAdaptiveCardRequest)) as UpdateAdaptiveCardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateAdaptiveCardRequest create() => UpdateAdaptiveCardRequest._();
@$core.override
UpdateAdaptiveCardRequest createEmptyInstance() => create();
static $pb.PbList<UpdateAdaptiveCardRequest> createRepeated() => $pb.PbList<UpdateAdaptiveCardRequest>();
@$core.pragma('dart2js:noInline')
@@ -383,7 +416,7 @@ class UpdateAdaptiveCardRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
AdaptiveCard get adaptiveCard => $_getN(0);
@$pb.TagNumber(1)
set adaptiveCard(AdaptiveCard value) => $_setField(1, value);
set adaptiveCard(AdaptiveCard v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasAdaptiveCard() => $_has(0);
@$pb.TagNumber(1)
@@ -396,32 +429,36 @@ class UpdateAdaptiveCardResult extends $pb.GeneratedMessage {
factory UpdateAdaptiveCardResult({
AdaptiveCard? adaptiveCard,
}) {
final result = create();
if (adaptiveCard != null) result.adaptiveCard = adaptiveCard;
return result;
final $result = create();
if (adaptiveCard != null) {
$result.adaptiveCard = adaptiveCard;
}
return $result;
}
UpdateAdaptiveCardResult._();
factory UpdateAdaptiveCardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory UpdateAdaptiveCardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
UpdateAdaptiveCardResult._() : super();
factory UpdateAdaptiveCardResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory UpdateAdaptiveCardResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAdaptiveCardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<AdaptiveCard>(1, _omitFieldNames ? '' : 'AdaptiveCard', protoName: 'AdaptiveCard', subBuilder: AdaptiveCard.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
UpdateAdaptiveCardResult clone() => UpdateAdaptiveCardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
UpdateAdaptiveCardResult copyWith(void Function(UpdateAdaptiveCardResult) updates) => super.copyWith((message) => updates(message as UpdateAdaptiveCardResult)) as UpdateAdaptiveCardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static UpdateAdaptiveCardResult create() => UpdateAdaptiveCardResult._();
@$core.override
UpdateAdaptiveCardResult createEmptyInstance() => create();
static $pb.PbList<UpdateAdaptiveCardResult> createRepeated() => $pb.PbList<UpdateAdaptiveCardResult>();
@$core.pragma('dart2js:noInline')
@@ -431,7 +468,7 @@ class UpdateAdaptiveCardResult extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
AdaptiveCard get adaptiveCard => $_getN(0);
@$pb.TagNumber(1)
set adaptiveCard(AdaptiveCard value) => $_setField(1, value);
set adaptiveCard(AdaptiveCard v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasAdaptiveCard() => $_has(0);
@$pb.TagNumber(1)
@@ -444,32 +481,36 @@ class DeleteAdaptiveCardRequest extends $pb.GeneratedMessage {
factory DeleteAdaptiveCardRequest({
$core.String? name,
}) {
final result = create();
if (name != null) result.name = name;
return result;
final $result = create();
if (name != null) {
$result.name = name;
}
return $result;
}
DeleteAdaptiveCardRequest._();
factory DeleteAdaptiveCardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAdaptiveCardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
DeleteAdaptiveCardRequest._() : super();
factory DeleteAdaptiveCardRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory DeleteAdaptiveCardRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAdaptiveCardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
DeleteAdaptiveCardRequest clone() => DeleteAdaptiveCardRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
DeleteAdaptiveCardRequest copyWith(void Function(DeleteAdaptiveCardRequest) updates) => super.copyWith((message) => updates(message as DeleteAdaptiveCardRequest)) as DeleteAdaptiveCardRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAdaptiveCardRequest create() => DeleteAdaptiveCardRequest._();
@$core.override
DeleteAdaptiveCardRequest createEmptyInstance() => create();
static $pb.PbList<DeleteAdaptiveCardRequest> createRepeated() => $pb.PbList<DeleteAdaptiveCardRequest>();
@$core.pragma('dart2js:noInline')
@@ -479,7 +520,7 @@ class DeleteAdaptiveCardRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String value) => $_setString(0, value);
set name($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
@@ -488,27 +529,29 @@ class DeleteAdaptiveCardRequest extends $pb.GeneratedMessage {
class DeleteAdaptiveCardResult extends $pb.GeneratedMessage {
factory DeleteAdaptiveCardResult() => create();
DeleteAdaptiveCardResult._();
factory DeleteAdaptiveCardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAdaptiveCardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
DeleteAdaptiveCardResult._() : super();
factory DeleteAdaptiveCardResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory DeleteAdaptiveCardResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAdaptiveCardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
DeleteAdaptiveCardResult clone() => DeleteAdaptiveCardResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
DeleteAdaptiveCardResult copyWith(void Function(DeleteAdaptiveCardResult) updates) => super.copyWith((message) => updates(message as DeleteAdaptiveCardResult)) as DeleteAdaptiveCardResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAdaptiveCardResult create() => DeleteAdaptiveCardResult._();
@$core.override
DeleteAdaptiveCardResult createEmptyInstance() => create();
static $pb.PbList<DeleteAdaptiveCardResult> createRepeated() => $pb.PbList<DeleteAdaptiveCardResult>();
@$core.pragma('dart2js:noInline')
@@ -517,5 +560,5 @@ class DeleteAdaptiveCardResult extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from adaptiveCard.proto.
// Generated code. Do not modify.
// source: adaptiveCard.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from adaptiveCard.proto.
// Generated code. Do not modify.
// source: adaptiveCard.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,64 +15,58 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'adaptiveCard.pb.dart' as $0;
import 'adaptiveCard.pb.dart' as $49;
export 'adaptiveCard.pb.dart';
@$pb.GrpcServiceName('api.AdaptiveCardService')
class AdaptiveCardServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$get = $grpc.ClientMethod<$49.GetAdaptiveCardRequest, $49.GetAdaptiveCardResult>(
'/api.AdaptiveCardService/Get',
($49.GetAdaptiveCardRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $49.GetAdaptiveCardResult.fromBuffer(value));
static final _$list = $grpc.ClientMethod<$49.ListAdaptiveCardRequest, $49.ListAdaptiveCardResult>(
'/api.AdaptiveCardService/List',
($49.ListAdaptiveCardRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $49.ListAdaptiveCardResult.fromBuffer(value));
static final _$create = $grpc.ClientMethod<$49.CreateAdaptiveCardRequest, $49.CreateAdaptiveCardResult>(
'/api.AdaptiveCardService/Create',
($49.CreateAdaptiveCardRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $49.CreateAdaptiveCardResult.fromBuffer(value));
static final _$update = $grpc.ClientMethod<$49.UpdateAdaptiveCardRequest, $49.UpdateAdaptiveCardResult>(
'/api.AdaptiveCardService/Update',
($49.UpdateAdaptiveCardRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $49.UpdateAdaptiveCardResult.fromBuffer(value));
static final _$delete = $grpc.ClientMethod<$49.DeleteAdaptiveCardRequest, $49.DeleteAdaptiveCardResult>(
'/api.AdaptiveCardService/Delete',
($49.DeleteAdaptiveCardRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $49.DeleteAdaptiveCardResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AdaptiveCardServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
AdaptiveCardServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.GetAdaptiveCardResult> get($0.GetAdaptiveCardRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$49.GetAdaptiveCardResult> get($49.GetAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$get, request, options: options);
}
$grpc.ResponseFuture<$0.ListAdaptiveCardResult> list($0.ListAdaptiveCardRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$49.ListAdaptiveCardResult> list($49.ListAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$list, request, options: options);
}
$grpc.ResponseFuture<$0.CreateAdaptiveCardResult> create($0.CreateAdaptiveCardRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$49.CreateAdaptiveCardResult> create($49.CreateAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$create, request, options: options);
}
$grpc.ResponseFuture<$0.UpdateAdaptiveCardResult> update($0.UpdateAdaptiveCardRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$49.UpdateAdaptiveCardResult> update($49.UpdateAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$update, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAdaptiveCardResult> delete($0.DeleteAdaptiveCardRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$49.DeleteAdaptiveCardResult> delete($49.DeleteAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$delete, request, options: options);
}
// method descriptors
static final _$get = $grpc.ClientMethod<$0.GetAdaptiveCardRequest, $0.GetAdaptiveCardResult>(
'/api.AdaptiveCardService/Get',
($0.GetAdaptiveCardRequest value) => value.writeToBuffer(),
$0.GetAdaptiveCardResult.fromBuffer);
static final _$list = $grpc.ClientMethod<$0.ListAdaptiveCardRequest, $0.ListAdaptiveCardResult>(
'/api.AdaptiveCardService/List',
($0.ListAdaptiveCardRequest value) => value.writeToBuffer(),
$0.ListAdaptiveCardResult.fromBuffer);
static final _$create = $grpc.ClientMethod<$0.CreateAdaptiveCardRequest, $0.CreateAdaptiveCardResult>(
'/api.AdaptiveCardService/Create',
($0.CreateAdaptiveCardRequest value) => value.writeToBuffer(),
$0.CreateAdaptiveCardResult.fromBuffer);
static final _$update = $grpc.ClientMethod<$0.UpdateAdaptiveCardRequest, $0.UpdateAdaptiveCardResult>(
'/api.AdaptiveCardService/Update',
($0.UpdateAdaptiveCardRequest value) => value.writeToBuffer(),
$0.UpdateAdaptiveCardResult.fromBuffer);
static final _$delete = $grpc.ClientMethod<$0.DeleteAdaptiveCardRequest, $0.DeleteAdaptiveCardResult>(
'/api.AdaptiveCardService/Delete',
($0.DeleteAdaptiveCardRequest value) => value.writeToBuffer(),
$0.DeleteAdaptiveCardResult.fromBuffer);
}
@$pb.GrpcServiceName('api.AdaptiveCardService')
@@ -81,71 +74,66 @@ abstract class AdaptiveCardServiceBase extends $grpc.Service {
$core.String get $name => 'api.AdaptiveCardService';
AdaptiveCardServiceBase() {
$addMethod($grpc.ServiceMethod<$0.GetAdaptiveCardRequest, $0.GetAdaptiveCardResult>(
$addMethod($grpc.ServiceMethod<$49.GetAdaptiveCardRequest, $49.GetAdaptiveCardResult>(
'Get',
get_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAdaptiveCardRequest.fromBuffer(value),
($0.GetAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAdaptiveCardRequest, $0.ListAdaptiveCardResult>(
($core.List<$core.int> value) => $49.GetAdaptiveCardRequest.fromBuffer(value),
($49.GetAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$49.ListAdaptiveCardRequest, $49.ListAdaptiveCardResult>(
'List',
list_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAdaptiveCardRequest.fromBuffer(value),
($0.ListAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.CreateAdaptiveCardRequest, $0.CreateAdaptiveCardResult>(
($core.List<$core.int> value) => $49.ListAdaptiveCardRequest.fromBuffer(value),
($49.ListAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$49.CreateAdaptiveCardRequest, $49.CreateAdaptiveCardResult>(
'Create',
create_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateAdaptiveCardRequest.fromBuffer(value),
($0.CreateAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateAdaptiveCardRequest, $0.UpdateAdaptiveCardResult>(
($core.List<$core.int> value) => $49.CreateAdaptiveCardRequest.fromBuffer(value),
($49.CreateAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$49.UpdateAdaptiveCardRequest, $49.UpdateAdaptiveCardResult>(
'Update',
update_Pre,
false,
false,
($core.List<$core.int> value) => $0.UpdateAdaptiveCardRequest.fromBuffer(value),
($0.UpdateAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAdaptiveCardRequest, $0.DeleteAdaptiveCardResult>(
($core.List<$core.int> value) => $49.UpdateAdaptiveCardRequest.fromBuffer(value),
($49.UpdateAdaptiveCardResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$49.DeleteAdaptiveCardRequest, $49.DeleteAdaptiveCardResult>(
'Delete',
delete_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAdaptiveCardRequest.fromBuffer(value),
($0.DeleteAdaptiveCardResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $49.DeleteAdaptiveCardRequest.fromBuffer(value),
($49.DeleteAdaptiveCardResult value) => value.writeToBuffer()));
}
$async.Future<$0.GetAdaptiveCardResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAdaptiveCardRequest> $request) async {
$async.Future<$49.GetAdaptiveCardResult> get_Pre($grpc.ServiceCall $call, $async.Future<$49.GetAdaptiveCardRequest> $request) async {
return get($call, await $request);
}
$async.Future<$0.GetAdaptiveCardResult> get($grpc.ServiceCall call, $0.GetAdaptiveCardRequest request);
$async.Future<$0.ListAdaptiveCardResult> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAdaptiveCardRequest> $request) async {
$async.Future<$49.ListAdaptiveCardResult> list_Pre($grpc.ServiceCall $call, $async.Future<$49.ListAdaptiveCardRequest> $request) async {
return list($call, await $request);
}
$async.Future<$0.ListAdaptiveCardResult> list($grpc.ServiceCall call, $0.ListAdaptiveCardRequest request);
$async.Future<$0.CreateAdaptiveCardResult> create_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateAdaptiveCardRequest> $request) async {
$async.Future<$49.CreateAdaptiveCardResult> create_Pre($grpc.ServiceCall $call, $async.Future<$49.CreateAdaptiveCardRequest> $request) async {
return create($call, await $request);
}
$async.Future<$0.CreateAdaptiveCardResult> create($grpc.ServiceCall call, $0.CreateAdaptiveCardRequest request);
$async.Future<$0.UpdateAdaptiveCardResult> update_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateAdaptiveCardRequest> $request) async {
$async.Future<$49.UpdateAdaptiveCardResult> update_Pre($grpc.ServiceCall $call, $async.Future<$49.UpdateAdaptiveCardRequest> $request) async {
return update($call, await $request);
}
$async.Future<$0.UpdateAdaptiveCardResult> update($grpc.ServiceCall call, $0.UpdateAdaptiveCardRequest request);
$async.Future<$0.DeleteAdaptiveCardResult> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAdaptiveCardRequest> $request) async {
$async.Future<$49.DeleteAdaptiveCardResult> delete_Pre($grpc.ServiceCall $call, $async.Future<$49.DeleteAdaptiveCardRequest> $request) async {
return delete($call, await $request);
}
$async.Future<$0.DeleteAdaptiveCardResult> delete($grpc.ServiceCall call, $0.DeleteAdaptiveCardRequest request);
$async.Future<$49.GetAdaptiveCardResult> get($grpc.ServiceCall call, $49.GetAdaptiveCardRequest request);
$async.Future<$49.ListAdaptiveCardResult> list($grpc.ServiceCall call, $49.ListAdaptiveCardRequest request);
$async.Future<$49.CreateAdaptiveCardResult> create($grpc.ServiceCall call, $49.CreateAdaptiveCardRequest request);
$async.Future<$49.UpdateAdaptiveCardResult> update($grpc.ServiceCall call, $49.UpdateAdaptiveCardRequest request);
$async.Future<$49.DeleteAdaptiveCardResult> delete($grpc.ServiceCall call, $49.DeleteAdaptiveCardRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from adaptiveCard.proto.
// Generated code. Do not modify.
// source: adaptiveCard.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -60,8 +59,8 @@ const GetAdaptiveCardRequest$json = {
/// Descriptor for `GetAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAdaptiveCardRequestDescriptor = $convert.base64Decode(
'ChZHZXRBZGFwdGl2ZUNhcmRSZXF1ZXN0EkAKBE5hbWUYASABKAlCLJJBITIfTmFtZSBvZiB0aG'
'UgQWRhcHRpdmVDYXJkIHRvIGdldLqBAQRyAhABUgROYW1l');
'ChZHZXRBZGFwdGl2ZUNhcmRSZXF1ZXN0Ej8KBE5hbWUYASABKAlCK5JBITIfTmFtZSBvZiB0aG'
'UgQWRhcHRpdmVDYXJkIHRvIGdldPpCBHICEAFSBE5hbWU=');
@$core.Deprecated('Use getAdaptiveCardResultDescriptor instead')
const GetAdaptiveCardResult$json = {
@@ -87,10 +86,10 @@ const CreateAdaptiveCardRequest$json = {
/// Descriptor for `CreateAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAdaptiveCardRequestDescriptor = $convert.base64Decode(
'ChlDcmVhdGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkkKCFRlbXBsYXRlGAEgASgJQi2SQSIyIFRlbX'
'BsYXRlIG9mIHRoZSBuZXcgQWRhcHRpdmVDYXJkuoEBBHICEAFSCFRlbXBsYXRlEkYKBE5hbWUY'
'AiABKAlCMpJBJzIlTmFtZSBvZiB0aGUgbmV3IEFkYXB0aXZlQ2FyZC4gVW5pcXVlLrqBAQRyAh'
'ABUgROYW1l');
'ChlDcmVhdGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkgKCFRlbXBsYXRlGAEgASgJQiySQSIyIFRlbX'
'BsYXRlIG9mIHRoZSBuZXcgQWRhcHRpdmVDYXJk+kIEcgIQAVIIVGVtcGxhdGUSRQoETmFtZRgC'
'IAEoCUIxkkEnMiVOYW1lIG9mIHRoZSBuZXcgQWRhcHRpdmVDYXJkLiBVbmlxdWUu+kIEcgIQAV'
'IETmFtZQ==');
@$core.Deprecated('Use createAdaptiveCardResultDescriptor instead')
const CreateAdaptiveCardResult$json = {
@@ -141,8 +140,8 @@ const DeleteAdaptiveCardRequest$json = {
/// Descriptor for `DeleteAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAdaptiveCardRequestDescriptor = $convert.base64Decode(
'ChlEZWxldGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkMKBE5hbWUYASABKAlCL5JBJDIiTmFtZSBvZi'
'B0aGUgQWRhcHRpdmVDYXJkIHRvIGRlbGV0ZbqBAQRyAhABUgROYW1l');
'ChlEZWxldGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkIKBE5hbWUYASABKAlCLpJBJDIiTmFtZSBvZi'
'B0aGUgQWRhcHRpdmVDYXJkIHRvIGRlbGV0ZfpCBHICEAFSBE5hbWU=');
@$core.Deprecated('Use deleteAdaptiveCardResultDescriptor instead')
const DeleteAdaptiveCardResult$json = {

View File

@@ -1,20 +1,20 @@
// This is a generated file - do not edit.
//
// Generated from admin-actor.proto.
// Generated code. Do not modify.
// source: admin-actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'repositoryShared.pb.dart' as $0;
import 'repositoryShared.pb.dart' as $70;
import 'repositoryShared.pbenum.dart' as $70;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -24,51 +24,69 @@ class AdminActor extends $pb.GeneratedMessage {
$core.String? name,
$core.String? organisationID,
$core.String? partnerID,
$0.Address? address,
$0.ActorContact? contact,
$0.ActorTypology? typology,
$70.Address? address,
$70.ActorContact? contact,
$70.ActorTypology? typology,
$core.String? additionalInformation,
}) {
final result = create();
if (iD != null) result.iD = iD;
if (name != null) result.name = name;
if (organisationID != null) result.organisationID = organisationID;
if (partnerID != null) result.partnerID = partnerID;
if (address != null) result.address = address;
if (contact != null) result.contact = contact;
if (typology != null) result.typology = typology;
if (additionalInformation != null) result.additionalInformation = additionalInformation;
return result;
final $result = create();
if (iD != null) {
$result.iD = iD;
}
if (name != null) {
$result.name = name;
}
if (organisationID != null) {
$result.organisationID = organisationID;
}
if (partnerID != null) {
$result.partnerID = partnerID;
}
if (address != null) {
$result.address = address;
}
if (contact != null) {
$result.contact = contact;
}
if (typology != null) {
$result.typology = typology;
}
if (additionalInformation != null) {
$result.additionalInformation = additionalInformation;
}
return $result;
}
AdminActor._();
factory AdminActor.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdminActor.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdminActor._() : super();
factory AdminActor.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdminActor.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdminActor', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..aOS(4, _omitFieldNames ? '' : 'PartnerID', protoName: 'PartnerID')
..aOM<$0.Address>(6, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $0.Address.create)
..aOM<$0.ActorContact>(7, _omitFieldNames ? '' : 'Contact', protoName: 'Contact', subBuilder: $0.ActorContact.create)
..e<$0.ActorTypology>(8, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $0.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $0.ActorTypology.valueOf, enumValues: $0.ActorTypology.values)
..aOM<$70.Address>(6, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $70.Address.create)
..aOM<$70.ActorContact>(7, _omitFieldNames ? '' : 'Contact', protoName: 'Contact', subBuilder: $70.ActorContact.create)
..e<$70.ActorTypology>(8, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $70.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $70.ActorTypology.valueOf, enumValues: $70.ActorTypology.values)
..aOS(9, _omitFieldNames ? '' : 'AdditionalInformation', protoName: 'AdditionalInformation')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdminActor clone() => AdminActor()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdminActor copyWith(void Function(AdminActor) updates) => super.copyWith((message) => updates(message as AdminActor)) as AdminActor;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdminActor create() => AdminActor._();
@$core.override
AdminActor createEmptyInstance() => create();
static $pb.PbList<AdminActor> createRepeated() => $pb.PbList<AdminActor>();
@$core.pragma('dart2js:noInline')
@@ -78,7 +96,7 @@ class AdminActor extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get iD => $_getSZ(0);
@$pb.TagNumber(1)
set iD($core.String value) => $_setString(0, value);
set iD($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasID() => $_has(0);
@$pb.TagNumber(1)
@@ -87,7 +105,7 @@ class AdminActor extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
set name($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
@@ -96,7 +114,7 @@ class AdminActor extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
$core.String get organisationID => $_getSZ(2);
@$pb.TagNumber(3)
set organisationID($core.String value) => $_setString(2, value);
set organisationID($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasOrganisationID() => $_has(2);
@$pb.TagNumber(3)
@@ -105,38 +123,38 @@ class AdminActor extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$core.String get partnerID => $_getSZ(3);
@$pb.TagNumber(4)
set partnerID($core.String value) => $_setString(3, value);
set partnerID($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasPartnerID() => $_has(3);
@$pb.TagNumber(4)
void clearPartnerID() => $_clearField(4);
@$pb.TagNumber(6)
$0.Address get address => $_getN(4);
$70.Address get address => $_getN(4);
@$pb.TagNumber(6)
set address($0.Address value) => $_setField(6, value);
set address($70.Address v) { $_setField(6, v); }
@$pb.TagNumber(6)
$core.bool hasAddress() => $_has(4);
@$pb.TagNumber(6)
void clearAddress() => $_clearField(6);
@$pb.TagNumber(6)
$0.Address ensureAddress() => $_ensure(4);
$70.Address ensureAddress() => $_ensure(4);
@$pb.TagNumber(7)
$0.ActorContact get contact => $_getN(5);
$70.ActorContact get contact => $_getN(5);
@$pb.TagNumber(7)
set contact($0.ActorContact value) => $_setField(7, value);
set contact($70.ActorContact v) { $_setField(7, v); }
@$pb.TagNumber(7)
$core.bool hasContact() => $_has(5);
@$pb.TagNumber(7)
void clearContact() => $_clearField(7);
@$pb.TagNumber(7)
$0.ActorContact ensureContact() => $_ensure(5);
$70.ActorContact ensureContact() => $_ensure(5);
@$pb.TagNumber(8)
$0.ActorTypology get typology => $_getN(6);
$70.ActorTypology get typology => $_getN(6);
@$pb.TagNumber(8)
set typology($0.ActorTypology value) => $_setField(8, value);
set typology($70.ActorTypology v) { $_setField(8, v); }
@$pb.TagNumber(8)
$core.bool hasTypology() => $_has(6);
@$pb.TagNumber(8)
@@ -145,7 +163,7 @@ class AdminActor extends $pb.GeneratedMessage {
@$pb.TagNumber(9)
$core.String get additionalInformation => $_getSZ(7);
@$pb.TagNumber(9)
set additionalInformation($core.String value) => $_setString(7, value);
set additionalInformation($core.String v) { $_setString(7, v); }
@$pb.TagNumber(9)
$core.bool hasAdditionalInformation() => $_has(7);
@$pb.TagNumber(9)
@@ -153,5 +171,5 @@ class AdminActor extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from admin-actor.proto.
// Generated code. Do not modify.
// source: admin-actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from admin-actor.proto.
// Generated code. Do not modify.
// source: admin-actor.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -32,12 +31,12 @@ const AdminActor$json = {
/// Descriptor for `AdminActor`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List adminActorDescriptor = $convert.base64Decode(
'CgpBZG1pbkFjdG9yEhgKAklEGAEgASgJQgi6gQEEcgIQAVICSUQSHAoETmFtZRgCIAEoCUIIuo'
'EBBHICEAFSBE5hbWUSMAoOT3JnYW5pc2F0aW9uSUQYAyABKAlCCLqBAQRyAhABUg5Pcmdhbmlz'
'YXRpb25JRBIcCglQYXJ0bmVySUQYBCABKAlSCVBhcnRuZXJJRBIxCgdBZGRyZXNzGAYgASgLMg'
'wuYXBpLkFkZHJlc3NCCbqBAQWKAQIQAVIHQWRkcmVzcxI2CgdDb250YWN0GAcgASgLMhEuYXBp'
'LkFjdG9yQ29udGFjdEIJuoEBBYoBAhABUgdDb250YWN0Ei4KCFR5cG9sb2d5GAggASgOMhIuYX'
'BpLkFjdG9yVHlwb2xvZ3lSCFR5cG9sb2d5EjQKFUFkZGl0aW9uYWxJbmZvcm1hdGlvbhgJIAEo'
'CVIVQWRkaXRpb25hbEluZm9ybWF0aW9uOiKSQR8KHdIBAklE0gEETmFtZdIBDk9yZ2FuaXNhdG'
'lvbklE');
'CgpBZG1pbkFjdG9yEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBIbCgROYW1lGAIgASgJQgf6Qg'
'RyAhABUgROYW1lEi8KDk9yZ2FuaXNhdGlvbklEGAMgASgJQgf6QgRyAhABUg5PcmdhbmlzYXRp'
'b25JRBIcCglQYXJ0bmVySUQYBCABKAlSCVBhcnRuZXJJRBIwCgdBZGRyZXNzGAYgASgLMgwuYX'
'BpLkFkZHJlc3NCCPpCBYoBAhABUgdBZGRyZXNzEjUKB0NvbnRhY3QYByABKAsyES5hcGkuQWN0'
'b3JDb250YWN0Qgj6QgWKAQIQAVIHQ29udGFjdBIuCghUeXBvbG9neRgIIAEoDjISLmFwaS5BY3'
'RvclR5cG9sb2d5UghUeXBvbG9neRI0ChVBZGRpdGlvbmFsSW5mb3JtYXRpb24YCSABKAlSFUFk'
'ZGl0aW9uYWxJbmZvcm1hdGlvbjoikkEfCh3SAQJJRNIBBE5hbWXSAQ5PcmdhbmlzYXRpb25JRA'
'==');

View File

@@ -1,21 +1,20 @@
// This is a generated file - do not edit.
//
// Generated from admin-partner.proto.
// Generated code. Do not modify.
// source: admin-partner.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'admin-actor.pb.dart' as $1;
import 'repositoryShared.pb.dart' as $0;
import 'admin-actor.pb.dart' as $72;
import 'repositoryShared.pb.dart' as $70;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -24,52 +23,70 @@ class AdminPartner extends $pb.GeneratedMessage {
$core.String? iD,
$core.String? name,
$core.String? legalStructure,
$0.Address? address,
$70.Address? address,
$core.String? organisationID,
$core.Iterable<$core.String>? actorIDs,
$core.Iterable<$1.AdminActor>? actors,
$core.Iterable<$72.AdminActor>? actors,
$core.String? photoURI,
}) {
final result = create();
if (iD != null) result.iD = iD;
if (name != null) result.name = name;
if (legalStructure != null) result.legalStructure = legalStructure;
if (address != null) result.address = address;
if (organisationID != null) result.organisationID = organisationID;
if (actorIDs != null) result.actorIDs.addAll(actorIDs);
if (actors != null) result.actors.addAll(actors);
if (photoURI != null) result.photoURI = photoURI;
return result;
final $result = create();
if (iD != null) {
$result.iD = iD;
}
if (name != null) {
$result.name = name;
}
if (legalStructure != null) {
$result.legalStructure = legalStructure;
}
if (address != null) {
$result.address = address;
}
if (organisationID != null) {
$result.organisationID = organisationID;
}
if (actorIDs != null) {
$result.actorIDs.addAll(actorIDs);
}
if (actors != null) {
$result.actors.addAll(actors);
}
if (photoURI != null) {
$result.photoURI = photoURI;
}
return $result;
}
AdminPartner._();
factory AdminPartner.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdminPartner.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdminPartner._() : super();
factory AdminPartner.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdminPartner.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdminPartner', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
..aOS(3, _omitFieldNames ? '' : 'LegalStructure', protoName: 'LegalStructure')
..aOM<$0.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $0.Address.create)
..aOM<$70.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $70.Address.create)
..aOS(5, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..pPS(6, _omitFieldNames ? '' : 'ActorIDs', protoName: 'ActorIDs')
..pc<$1.AdminActor>(7, _omitFieldNames ? '' : 'Actors', $pb.PbFieldType.PM, protoName: 'Actors', subBuilder: $1.AdminActor.create)
..pc<$72.AdminActor>(7, _omitFieldNames ? '' : 'Actors', $pb.PbFieldType.PM, protoName: 'Actors', subBuilder: $72.AdminActor.create)
..aOS(8, _omitFieldNames ? '' : 'PhotoURI', protoName: 'PhotoURI')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdminPartner clone() => AdminPartner()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdminPartner copyWith(void Function(AdminPartner) updates) => super.copyWith((message) => updates(message as AdminPartner)) as AdminPartner;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdminPartner create() => AdminPartner._();
@$core.override
AdminPartner createEmptyInstance() => create();
static $pb.PbList<AdminPartner> createRepeated() => $pb.PbList<AdminPartner>();
@$core.pragma('dart2js:noInline')
@@ -79,7 +96,7 @@ class AdminPartner extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get iD => $_getSZ(0);
@$pb.TagNumber(1)
set iD($core.String value) => $_setString(0, value);
set iD($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasID() => $_has(0);
@$pb.TagNumber(1)
@@ -88,7 +105,7 @@ class AdminPartner extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get name => $_getSZ(1);
@$pb.TagNumber(2)
set name($core.String value) => $_setString(1, value);
set name($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasName() => $_has(1);
@$pb.TagNumber(2)
@@ -97,27 +114,27 @@ class AdminPartner extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
$core.String get legalStructure => $_getSZ(2);
@$pb.TagNumber(3)
set legalStructure($core.String value) => $_setString(2, value);
set legalStructure($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasLegalStructure() => $_has(2);
@$pb.TagNumber(3)
void clearLegalStructure() => $_clearField(3);
@$pb.TagNumber(4)
$0.Address get address => $_getN(3);
$70.Address get address => $_getN(3);
@$pb.TagNumber(4)
set address($0.Address value) => $_setField(4, value);
set address($70.Address v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasAddress() => $_has(3);
@$pb.TagNumber(4)
void clearAddress() => $_clearField(4);
@$pb.TagNumber(4)
$0.Address ensureAddress() => $_ensure(3);
$70.Address ensureAddress() => $_ensure(3);
@$pb.TagNumber(5)
$core.String get organisationID => $_getSZ(4);
@$pb.TagNumber(5)
set organisationID($core.String value) => $_setString(4, value);
set organisationID($core.String v) { $_setString(4, v); }
@$pb.TagNumber(5)
$core.bool hasOrganisationID() => $_has(4);
@$pb.TagNumber(5)
@@ -129,12 +146,12 @@ class AdminPartner extends $pb.GeneratedMessage {
/// In not accepted / Out Actors are returned
@$pb.TagNumber(7)
$pb.PbList<$1.AdminActor> get actors => $_getList(6);
$pb.PbList<$72.AdminActor> get actors => $_getList(6);
@$pb.TagNumber(8)
$core.String get photoURI => $_getSZ(7);
@$pb.TagNumber(8)
set photoURI($core.String value) => $_setString(7, value);
set photoURI($core.String v) { $_setString(7, v); }
@$pb.TagNumber(8)
$core.bool hasPhotoURI() => $_has(7);
@$pb.TagNumber(8)
@@ -142,5 +159,5 @@ class AdminPartner extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from admin-partner.proto.
// Generated code. Do not modify.
// source: admin-partner.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from admin-partner.proto.
// Generated code. Do not modify.
// source: admin-partner.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -32,12 +31,12 @@ const AdminPartner$json = {
/// Descriptor for `AdminPartner`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List adminPartnerDescriptor = $convert.base64Decode(
'CgxBZG1pblBhcnRuZXISGAoCSUQYASABKAlCCLqBAQRyAhABUgJJRBIcCgROYW1lGAIgASgJQg'
'i6gQEEcgIQAVIETmFtZRImCg5MZWdhbFN0cnVjdHVyZRgDIAEoCVIOTGVnYWxTdHJ1Y3R1cmUS'
'MQoHQWRkcmVzcxgEIAEoCzIMLmFwaS5BZGRyZXNzQgm6gQEFigECEAFSB0FkZHJlc3MSMAoOT3'
'JnYW5pc2F0aW9uSUQYBSABKAlCCLqBAQRyAhABUg5PcmdhbmlzYXRpb25JRBIlCghBY3RvcklE'
'cxgGIAMoCUIJuoEBBZIBAhgBUghBY3RvcklEcxInCgZBY3RvcnMYByADKAsyDy5hcGkuQWRtaW'
'5BY3RvclIGQWN0b3JzEkgKCFBob3RvVVJJGAggASgJQiySQSlKJyJodHRwczovL3JlZmxleC12'
'aXNpYmlsaXR5LWZvcmV2ZXIuanBnIlIIUGhvdG9VUkk6LJJBKQon0gECSUTSAQROYW1l0gEHQW'
'RkcmVzc9IBDk9yZ2FuaXNhdGlvbklE');
'CgxBZG1pblBhcnRuZXISFwoCSUQYASABKAlCB/pCBHICEAFSAklEEhsKBE5hbWUYAiABKAlCB/'
'pCBHICEAFSBE5hbWUSJgoOTGVnYWxTdHJ1Y3R1cmUYAyABKAlSDkxlZ2FsU3RydWN0dXJlEjAK'
'B0FkZHJlc3MYBCABKAsyDC5hcGkuQWRkcmVzc0II+kIFigECEAFSB0FkZHJlc3MSLwoOT3JnYW'
'5pc2F0aW9uSUQYBSABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklEEiQKCEFjdG9ySURzGAYg'
'AygJQgj6QgWSAQIYAVIIQWN0b3JJRHMSJwoGQWN0b3JzGAcgAygLMg8uYXBpLkFkbWluQWN0b3'
'JSBkFjdG9ycxJICghQaG90b1VSSRgIIAEoCUIskkEpSiciaHR0cHM6Ly9yZWZsZXgtdmlzaWJp'
'bGl0eS1mb3JldmVyLmpwZyJSCFBob3RvVVJJOiySQSkKJ9IBAklE0gEETmFtZdIBB0FkZHJlc3'
'PSAQ5PcmdhbmlzYXRpb25JRA==');

View File

@@ -1,20 +1,19 @@
// This is a generated file - do not edit.
//
// Generated from adminConnection.proto.
// Generated code. Do not modify.
// source: adminConnection.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'shared.pb.dart' as $1;
import 'shared.pb.dart' as $29;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -24,17 +23,21 @@ class AdminConnection extends $pb.GeneratedMessage {
$core.String? uriStartApi,
$core.Iterable<ArgElement>? argsUriStart,
}) {
final result = create();
if (iD != null) result.iD = iD;
if (uriStartApi != null) result.uriStartApi = uriStartApi;
if (argsUriStart != null) result.argsUriStart.addAll(argsUriStart);
return result;
final $result = create();
if (iD != null) {
$result.iD = iD;
}
if (uriStartApi != null) {
$result.uriStartApi = uriStartApi;
}
if (argsUriStart != null) {
$result.argsUriStart.addAll(argsUriStart);
}
return $result;
}
AdminConnection._();
factory AdminConnection.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdminConnection.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdminConnection._() : super();
factory AdminConnection.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdminConnection.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdminConnection', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
@@ -43,17 +46,21 @@ class AdminConnection extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdminConnection clone() => AdminConnection()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdminConnection copyWith(void Function(AdminConnection) updates) => super.copyWith((message) => updates(message as AdminConnection)) as AdminConnection;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdminConnection create() => AdminConnection._();
@$core.override
AdminConnection createEmptyInstance() => create();
static $pb.PbList<AdminConnection> createRepeated() => $pb.PbList<AdminConnection>();
@$core.pragma('dart2js:noInline')
@@ -63,7 +70,7 @@ class AdminConnection extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get iD => $_getSZ(0);
@$pb.TagNumber(1)
set iD($core.String value) => $_setString(0, value);
set iD($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasID() => $_has(0);
@$pb.TagNumber(1)
@@ -72,7 +79,7 @@ class AdminConnection extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get uriStartApi => $_getSZ(1);
@$pb.TagNumber(2)
set uriStartApi($core.String value) => $_setString(1, value);
set uriStartApi($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasUriStartApi() => $_has(1);
@$pb.TagNumber(2)
@@ -85,36 +92,42 @@ class AdminConnection extends $pb.GeneratedMessage {
class ArgElement extends $pb.GeneratedMessage {
factory ArgElement({
$core.String? key,
$1.ValueType? value,
$29.ValueType? value,
}) {
final result = create();
if (key != null) result.key = key;
if (value != null) result.value = value;
return result;
final $result = create();
if (key != null) {
$result.key = key;
}
if (value != null) {
$result.value = value;
}
return $result;
}
ArgElement._();
factory ArgElement.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ArgElement.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ArgElement._() : super();
factory ArgElement.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ArgElement.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ArgElement', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Key', protoName: 'Key')
..aOM<$1.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $1.ValueType.create)
..aOM<$29.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $29.ValueType.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ArgElement clone() => ArgElement()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ArgElement copyWith(void Function(ArgElement) updates) => super.copyWith((message) => updates(message as ArgElement)) as ArgElement;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ArgElement create() => ArgElement._();
@$core.override
ArgElement createEmptyInstance() => create();
static $pb.PbList<ArgElement> createRepeated() => $pb.PbList<ArgElement>();
@$core.pragma('dart2js:noInline')
@@ -124,22 +137,22 @@ class ArgElement extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get key => $_getSZ(0);
@$pb.TagNumber(1)
set key($core.String value) => $_setString(0, value);
set key($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasKey() => $_has(0);
@$pb.TagNumber(1)
void clearKey() => $_clearField(1);
@$pb.TagNumber(2)
$1.ValueType get value => $_getN(1);
$29.ValueType get value => $_getN(1);
@$pb.TagNumber(2)
set value($1.ValueType value) => $_setField(2, value);
set value($29.ValueType v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasValue() => $_has(1);
@$pb.TagNumber(2)
void clearValue() => $_clearField(2);
@$pb.TagNumber(2)
$1.ValueType ensureValue() => $_ensure(1);
$29.ValueType ensureValue() => $_ensure(1);
}
class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
@@ -148,17 +161,21 @@ class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
$core.String? uriStartApi,
$core.Iterable<ArgElement>? argsUriStart,
}) {
final result = create();
if (iD != null) result.iD = iD;
if (uriStartApi != null) result.uriStartApi = uriStartApi;
if (argsUriStart != null) result.argsUriStart.addAll(argsUriStart);
return result;
final $result = create();
if (iD != null) {
$result.iD = iD;
}
if (uriStartApi != null) {
$result.uriStartApi = uriStartApi;
}
if (argsUriStart != null) {
$result.argsUriStart.addAll(argsUriStart);
}
return $result;
}
RegisterConnectionManagerRequest._();
factory RegisterConnectionManagerRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory RegisterConnectionManagerRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
RegisterConnectionManagerRequest._() : super();
factory RegisterConnectionManagerRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory RegisterConnectionManagerRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterConnectionManagerRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
@@ -167,17 +184,21 @@ class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegisterConnectionManagerRequest clone() => RegisterConnectionManagerRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegisterConnectionManagerRequest copyWith(void Function(RegisterConnectionManagerRequest) updates) => super.copyWith((message) => updates(message as RegisterConnectionManagerRequest)) as RegisterConnectionManagerRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegisterConnectionManagerRequest create() => RegisterConnectionManagerRequest._();
@$core.override
RegisterConnectionManagerRequest createEmptyInstance() => create();
static $pb.PbList<RegisterConnectionManagerRequest> createRepeated() => $pb.PbList<RegisterConnectionManagerRequest>();
@$core.pragma('dart2js:noInline')
@@ -187,7 +208,7 @@ class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get iD => $_getSZ(0);
@$pb.TagNumber(1)
set iD($core.String value) => $_setString(0, value);
set iD($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasID() => $_has(0);
@$pb.TagNumber(1)
@@ -196,7 +217,7 @@ class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get uriStartApi => $_getSZ(1);
@$pb.TagNumber(2)
set uriStartApi($core.String value) => $_setString(1, value);
set uriStartApi($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasUriStartApi() => $_has(1);
@$pb.TagNumber(2)
@@ -208,27 +229,29 @@ class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
class RegisterConnectionManagerResult extends $pb.GeneratedMessage {
factory RegisterConnectionManagerResult() => create();
RegisterConnectionManagerResult._();
factory RegisterConnectionManagerResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory RegisterConnectionManagerResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
RegisterConnectionManagerResult._() : super();
factory RegisterConnectionManagerResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory RegisterConnectionManagerResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterConnectionManagerResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
RegisterConnectionManagerResult clone() => RegisterConnectionManagerResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
RegisterConnectionManagerResult copyWith(void Function(RegisterConnectionManagerResult) updates) => super.copyWith((message) => updates(message as RegisterConnectionManagerResult)) as RegisterConnectionManagerResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static RegisterConnectionManagerResult create() => RegisterConnectionManagerResult._();
@$core.override
RegisterConnectionManagerResult createEmptyInstance() => create();
static $pb.PbList<RegisterConnectionManagerResult> createRepeated() => $pb.PbList<RegisterConnectionManagerResult>();
@$core.pragma('dart2js:noInline')
@@ -238,27 +261,29 @@ class RegisterConnectionManagerResult extends $pb.GeneratedMessage {
class ListConnectionManagerRequest extends $pb.GeneratedMessage {
factory ListConnectionManagerRequest() => create();
ListConnectionManagerRequest._();
factory ListConnectionManagerRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListConnectionManagerRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ListConnectionManagerRequest._() : super();
factory ListConnectionManagerRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ListConnectionManagerRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListConnectionManagerRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ListConnectionManagerRequest clone() => ListConnectionManagerRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ListConnectionManagerRequest copyWith(void Function(ListConnectionManagerRequest) updates) => super.copyWith((message) => updates(message as ListConnectionManagerRequest)) as ListConnectionManagerRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListConnectionManagerRequest create() => ListConnectionManagerRequest._();
@$core.override
ListConnectionManagerRequest createEmptyInstance() => create();
static $pb.PbList<ListConnectionManagerRequest> createRepeated() => $pb.PbList<ListConnectionManagerRequest>();
@$core.pragma('dart2js:noInline')
@@ -270,32 +295,36 @@ class ListConnectionManagerResult extends $pb.GeneratedMessage {
factory ListConnectionManagerResult({
$core.Iterable<AdminConnection>? results,
}) {
final result = create();
if (results != null) result.results.addAll(results);
return result;
final $result = create();
if (results != null) {
$result.results.addAll(results);
}
return $result;
}
ListConnectionManagerResult._();
factory ListConnectionManagerResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListConnectionManagerResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ListConnectionManagerResult._() : super();
factory ListConnectionManagerResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ListConnectionManagerResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListConnectionManagerResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<AdminConnection>(1, _omitFieldNames ? '' : 'Results', $pb.PbFieldType.PM, protoName: 'Results', subBuilder: AdminConnection.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ListConnectionManagerResult clone() => ListConnectionManagerResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ListConnectionManagerResult copyWith(void Function(ListConnectionManagerResult) updates) => super.copyWith((message) => updates(message as ListConnectionManagerResult)) as ListConnectionManagerResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListConnectionManagerResult create() => ListConnectionManagerResult._();
@$core.override
ListConnectionManagerResult createEmptyInstance() => create();
static $pb.PbList<ListConnectionManagerResult> createRepeated() => $pb.PbList<ListConnectionManagerResult>();
@$core.pragma('dart2js:noInline')
@@ -307,5 +336,5 @@ class ListConnectionManagerResult extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from adminConnection.proto.
// Generated code. Do not modify.
// source: adminConnection.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from adminConnection.proto.
// Generated code. Do not modify.
// source: adminConnection.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,40 +15,34 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'adminConnection.pb.dart' as $0;
import 'adminConnection.pb.dart' as $2;
export 'adminConnection.pb.dart';
@$pb.GrpcServiceName('api.AdminConnectionService')
class AdminConnectionServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$registerConnectionManager = $grpc.ClientMethod<$2.RegisterConnectionManagerRequest, $2.RegisterConnectionManagerResult>(
'/api.AdminConnectionService/RegisterConnectionManager',
($2.RegisterConnectionManagerRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $2.RegisterConnectionManagerResult.fromBuffer(value));
static final _$listConnectionManager = $grpc.ClientMethod<$2.ListConnectionManagerRequest, $2.ListConnectionManagerResult>(
'/api.AdminConnectionService/ListConnectionManager',
($2.ListConnectionManagerRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $2.ListConnectionManagerResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AdminConnectionServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
AdminConnectionServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.RegisterConnectionManagerResult> registerConnectionManager($0.RegisterConnectionManagerRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$2.RegisterConnectionManagerResult> registerConnectionManager($2.RegisterConnectionManagerRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$registerConnectionManager, request, options: options);
}
$grpc.ResponseFuture<$0.ListConnectionManagerResult> listConnectionManager($0.ListConnectionManagerRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$2.ListConnectionManagerResult> listConnectionManager($2.ListConnectionManagerRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$listConnectionManager, request, options: options);
}
// method descriptors
static final _$registerConnectionManager = $grpc.ClientMethod<$0.RegisterConnectionManagerRequest, $0.RegisterConnectionManagerResult>(
'/api.AdminConnectionService/RegisterConnectionManager',
($0.RegisterConnectionManagerRequest value) => value.writeToBuffer(),
$0.RegisterConnectionManagerResult.fromBuffer);
static final _$listConnectionManager = $grpc.ClientMethod<$0.ListConnectionManagerRequest, $0.ListConnectionManagerResult>(
'/api.AdminConnectionService/ListConnectionManager',
($0.ListConnectionManagerRequest value) => value.writeToBuffer(),
$0.ListConnectionManagerResult.fromBuffer);
}
@$pb.GrpcServiceName('api.AdminConnectionService')
@@ -57,32 +50,30 @@ abstract class AdminConnectionServiceBase extends $grpc.Service {
$core.String get $name => 'api.AdminConnectionService';
AdminConnectionServiceBase() {
$addMethod($grpc.ServiceMethod<$0.RegisterConnectionManagerRequest, $0.RegisterConnectionManagerResult>(
$addMethod($grpc.ServiceMethod<$2.RegisterConnectionManagerRequest, $2.RegisterConnectionManagerResult>(
'RegisterConnectionManager',
registerConnectionManager_Pre,
false,
false,
($core.List<$core.int> value) => $0.RegisterConnectionManagerRequest.fromBuffer(value),
($0.RegisterConnectionManagerResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListConnectionManagerRequest, $0.ListConnectionManagerResult>(
($core.List<$core.int> value) => $2.RegisterConnectionManagerRequest.fromBuffer(value),
($2.RegisterConnectionManagerResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$2.ListConnectionManagerRequest, $2.ListConnectionManagerResult>(
'ListConnectionManager',
listConnectionManager_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListConnectionManagerRequest.fromBuffer(value),
($0.ListConnectionManagerResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $2.ListConnectionManagerRequest.fromBuffer(value),
($2.ListConnectionManagerResult value) => value.writeToBuffer()));
}
$async.Future<$0.RegisterConnectionManagerResult> registerConnectionManager_Pre($grpc.ServiceCall $call, $async.Future<$0.RegisterConnectionManagerRequest> $request) async {
$async.Future<$2.RegisterConnectionManagerResult> registerConnectionManager_Pre($grpc.ServiceCall $call, $async.Future<$2.RegisterConnectionManagerRequest> $request) async {
return registerConnectionManager($call, await $request);
}
$async.Future<$0.RegisterConnectionManagerResult> registerConnectionManager($grpc.ServiceCall call, $0.RegisterConnectionManagerRequest request);
$async.Future<$0.ListConnectionManagerResult> listConnectionManager_Pre($grpc.ServiceCall $call, $async.Future<$0.ListConnectionManagerRequest> $request) async {
$async.Future<$2.ListConnectionManagerResult> listConnectionManager_Pre($grpc.ServiceCall $call, $async.Future<$2.ListConnectionManagerRequest> $request) async {
return listConnectionManager($call, await $request);
}
$async.Future<$0.ListConnectionManagerResult> listConnectionManager($grpc.ServiceCall call, $0.ListConnectionManagerRequest request);
$async.Future<$2.RegisterConnectionManagerResult> registerConnectionManager($grpc.ServiceCall call, $2.RegisterConnectionManagerRequest request);
$async.Future<$2.ListConnectionManagerResult> listConnectionManager($grpc.ServiceCall call, $2.ListConnectionManagerRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from adminConnection.proto.
// Generated code. Do not modify.
// source: adminConnection.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -57,10 +56,10 @@ const RegisterConnectionManagerRequest$json = {
/// Descriptor for `RegisterConnectionManagerRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List registerConnectionManagerRequestDescriptor = $convert.base64Decode(
'CiBSZWdpc3RlckNvbm5lY3Rpb25NYW5hZ2VyUmVxdWVzdBIYCgJJRBgBIAEoCUIIuoEBBHICEA'
'FSAklEEioKC1VyaVN0YXJ0QXBpGAIgASgJQgi6gQEEcgIQAVILVXJpU3RhcnRBcGkSMwoMQXJn'
'c1VyaVN0YXJ0GAMgAygLMg8uYXBpLkFyZ0VsZW1lbnRSDEFyZ3NVcmlTdGFydDoYkkEVChPSAQ'
'JJRNIBC1VyaVN0YXJ0QXBp');
'CiBSZWdpc3RlckNvbm5lY3Rpb25NYW5hZ2VyUmVxdWVzdBIXCgJJRBgBIAEoCUIH+kIEcgIQAV'
'ICSUQSKQoLVXJpU3RhcnRBcGkYAiABKAlCB/pCBHICEAFSC1VyaVN0YXJ0QXBpEjMKDEFyZ3NV'
'cmlTdGFydBgDIAMoCzIPLmFwaS5BcmdFbGVtZW50UgxBcmdzVXJpU3RhcnQ6GJJBFQoT0gECSU'
'TSAQtVcmlTdGFydEFwaQ==');
@$core.Deprecated('Use registerConnectionManagerResultDescriptor instead')
const RegisterConnectionManagerResult$json = {
@@ -90,6 +89,6 @@ const ListConnectionManagerResult$json = {
/// Descriptor for `ListConnectionManagerResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listConnectionManagerResultDescriptor = $convert.base64Decode(
'ChtMaXN0Q29ubmVjdGlvbk1hbmFnZXJSZXN1bHQSOQoHUmVzdWx0cxgBIAMoCzIULmFwaS5BZG'
'1pbkNvbm5lY3Rpb25CCbqBAQWSAQIIAVIHUmVzdWx0cw==');
'ChtMaXN0Q29ubmVjdGlvbk1hbmFnZXJSZXN1bHQSOAoHUmVzdWx0cxgBIAMoCzIULmFwaS5BZG'
'1pbkNvbm5lY3Rpb25CCPpCBZIBAggBUgdSZXN1bHRz');

View File

@@ -1,974 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from alias.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'alias.pbenum.dart';
import 'shared.pbenum.dart' as $1;
import 'slotbooking.pbenum.dart' as $2;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
export 'alias.pbenum.dart';
/// Properties specific to appointment scheduling aliases
class AliasPropertiesAppointmentScheduling extends $pb.GeneratedMessage {
factory AliasPropertiesAppointmentScheduling({
$1.AppointmentType? aptType,
$2.CommandIdentifierEntry? loadingCommandIdentifierEntry,
$2.CommandIdentifierEntry? unLoadingCommandIdentifierEntry,
$core.String? actorName,
}) {
final result = create();
if (aptType != null) result.aptType = aptType;
if (loadingCommandIdentifierEntry != null) result.loadingCommandIdentifierEntry = loadingCommandIdentifierEntry;
if (unLoadingCommandIdentifierEntry != null) result.unLoadingCommandIdentifierEntry = unLoadingCommandIdentifierEntry;
if (actorName != null) result.actorName = actorName;
return result;
}
AliasPropertiesAppointmentScheduling._();
factory AliasPropertiesAppointmentScheduling.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AliasPropertiesAppointmentScheduling.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AliasPropertiesAppointmentScheduling', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..e<$1.AppointmentType>(1, _omitFieldNames ? '' : 'AptType', $pb.PbFieldType.OE, protoName: 'AptType', defaultOrMaker: $1.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $1.AppointmentType.valueOf, enumValues: $1.AppointmentType.values)
..e<$2.CommandIdentifierEntry>(2, _omitFieldNames ? '' : 'LoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'LoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values)
..e<$2.CommandIdentifierEntry>(3, _omitFieldNames ? '' : 'UnLoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'UnLoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values)
..aOS(4, _omitFieldNames ? '' : 'ActorName', protoName: 'ActorName')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AliasPropertiesAppointmentScheduling clone() => AliasPropertiesAppointmentScheduling()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AliasPropertiesAppointmentScheduling copyWith(void Function(AliasPropertiesAppointmentScheduling) updates) => super.copyWith((message) => updates(message as AliasPropertiesAppointmentScheduling)) as AliasPropertiesAppointmentScheduling;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AliasPropertiesAppointmentScheduling create() => AliasPropertiesAppointmentScheduling._();
@$core.override
AliasPropertiesAppointmentScheduling createEmptyInstance() => create();
static $pb.PbList<AliasPropertiesAppointmentScheduling> createRepeated() => $pb.PbList<AliasPropertiesAppointmentScheduling>();
@$core.pragma('dart2js:noInline')
static AliasPropertiesAppointmentScheduling getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AliasPropertiesAppointmentScheduling>(create);
static AliasPropertiesAppointmentScheduling? _defaultInstance;
@$pb.TagNumber(1)
$1.AppointmentType get aptType => $_getN(0);
@$pb.TagNumber(1)
set aptType($1.AppointmentType value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasAptType() => $_has(0);
@$pb.TagNumber(1)
void clearAptType() => $_clearField(1);
/// CommandIdentifierEntry
@$pb.TagNumber(2)
$2.CommandIdentifierEntry get loadingCommandIdentifierEntry => $_getN(1);
@$pb.TagNumber(2)
set loadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasLoadingCommandIdentifierEntry() => $_has(1);
@$pb.TagNumber(2)
void clearLoadingCommandIdentifierEntry() => $_clearField(2);
/// CommandIdentifierEntry
@$pb.TagNumber(3)
$2.CommandIdentifierEntry get unLoadingCommandIdentifierEntry => $_getN(2);
@$pb.TagNumber(3)
set unLoadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasUnLoadingCommandIdentifierEntry() => $_has(2);
@$pb.TagNumber(3)
void clearUnLoadingCommandIdentifierEntry() => $_clearField(3);
/// Name of the actor
@$pb.TagNumber(4)
$core.String get actorName => $_getSZ(3);
@$pb.TagNumber(4)
set actorName($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasActorName() => $_has(3);
@$pb.TagNumber(4)
void clearActorName() => $_clearField(4);
}
/// Alias represents a named link from one resource to another.
/// Example: A Site (FromID="SITE_ORG1_123") can have an alias named "ACTOR_456"
/// (AliasName) of type ALIAS_TYPE_SITE_ACTOR pointing to another Site (ToID="SITE_ORG1_789").
/// The combination of (FromID, AliasType, AliasName) must be unique.
/// Properties can be defined for each alias, their format is up to the user.
class Alias extends $pb.GeneratedMessage {
factory Alias({
$core.String? fromID,
AliasType? aliasType,
$core.String? aliasName,
$core.String? toID,
$core.String? properties,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (aliasType != null) result.aliasType = aliasType;
if (aliasName != null) result.aliasName = aliasName;
if (toID != null) result.toID = toID;
if (properties != null) result.properties = properties;
return result;
}
Alias._();
factory Alias.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Alias.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Alias', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..e<AliasType>(2, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..aOS(3, _omitFieldNames ? '' : 'AliasName', protoName: 'AliasName')
..aOS(4, _omitFieldNames ? '' : 'ToID', protoName: 'ToID')
..aOS(5, _omitFieldNames ? '' : 'Properties', protoName: 'Properties')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Alias clone() => Alias()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Alias copyWith(void Function(Alias) updates) => super.copyWith((message) => updates(message as Alias)) as Alias;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Alias create() => Alias._();
@$core.override
Alias createEmptyInstance() => create();
static $pb.PbList<Alias> createRepeated() => $pb.PbList<Alias>();
@$core.pragma('dart2js:noInline')
static Alias getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Alias>(create);
static Alias? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
AliasType get aliasType => $_getN(1);
@$pb.TagNumber(2)
set aliasType(AliasType value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasAliasType() => $_has(1);
@$pb.TagNumber(2)
void clearAliasType() => $_clearField(2);
@$pb.TagNumber(3)
$core.String get aliasName => $_getSZ(2);
@$pb.TagNumber(3)
set aliasName($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasAliasName() => $_has(2);
@$pb.TagNumber(3)
void clearAliasName() => $_clearField(3);
@$pb.TagNumber(4)
$core.String get toID => $_getSZ(3);
@$pb.TagNumber(4)
set toID($core.String value) => $_setString(3, value);
@$pb.TagNumber(4)
$core.bool hasToID() => $_has(3);
@$pb.TagNumber(4)
void clearToID() => $_clearField(4);
@$pb.TagNumber(5)
$core.String get properties => $_getSZ(4);
@$pb.TagNumber(5)
set properties($core.String value) => $_setString(4, value);
@$pb.TagNumber(5)
$core.bool hasProperties() => $_has(4);
@$pb.TagNumber(5)
void clearProperties() => $_clearField(5);
}
class CreateAliasRequest extends $pb.GeneratedMessage {
factory CreateAliasRequest({
Alias? alias,
}) {
final result = create();
if (alias != null) result.alias = alias;
return result;
}
CreateAliasRequest._();
factory CreateAliasRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateAliasRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAliasRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Alias>(1, _omitFieldNames ? '' : 'Alias', protoName: 'Alias', subBuilder: Alias.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateAliasRequest clone() => CreateAliasRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateAliasRequest copyWith(void Function(CreateAliasRequest) updates) => super.copyWith((message) => updates(message as CreateAliasRequest)) as CreateAliasRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateAliasRequest create() => CreateAliasRequest._();
@$core.override
CreateAliasRequest createEmptyInstance() => create();
static $pb.PbList<CreateAliasRequest> createRepeated() => $pb.PbList<CreateAliasRequest>();
@$core.pragma('dart2js:noInline')
static CreateAliasRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAliasRequest>(create);
static CreateAliasRequest? _defaultInstance;
@$pb.TagNumber(1)
Alias get alias => $_getN(0);
@$pb.TagNumber(1)
set alias(Alias value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasAlias() => $_has(0);
@$pb.TagNumber(1)
void clearAlias() => $_clearField(1);
@$pb.TagNumber(1)
Alias ensureAlias() => $_ensure(0);
}
class CreateAliasResponse extends $pb.GeneratedMessage {
factory CreateAliasResponse({
Alias? alias,
}) {
final result = create();
if (alias != null) result.alias = alias;
return result;
}
CreateAliasResponse._();
factory CreateAliasResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CreateAliasResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAliasResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Alias>(1, _omitFieldNames ? '' : 'Alias', protoName: 'Alias', subBuilder: Alias.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateAliasResponse clone() => CreateAliasResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CreateAliasResponse copyWith(void Function(CreateAliasResponse) updates) => super.copyWith((message) => updates(message as CreateAliasResponse)) as CreateAliasResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CreateAliasResponse create() => CreateAliasResponse._();
@$core.override
CreateAliasResponse createEmptyInstance() => create();
static $pb.PbList<CreateAliasResponse> createRepeated() => $pb.PbList<CreateAliasResponse>();
@$core.pragma('dart2js:noInline')
static CreateAliasResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAliasResponse>(create);
static CreateAliasResponse? _defaultInstance;
@$pb.TagNumber(1)
Alias get alias => $_getN(0);
@$pb.TagNumber(1)
set alias(Alias value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasAlias() => $_has(0);
@$pb.TagNumber(1)
void clearAlias() => $_clearField(1);
@$pb.TagNumber(1)
Alias ensureAlias() => $_ensure(0);
}
class GetAliasRequest extends $pb.GeneratedMessage {
factory GetAliasRequest({
$core.String? fromID,
AliasType? aliasType,
$core.String? aliasName,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (aliasType != null) result.aliasType = aliasType;
if (aliasName != null) result.aliasName = aliasName;
return result;
}
GetAliasRequest._();
factory GetAliasRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetAliasRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAliasRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..e<AliasType>(2, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..aOS(3, _omitFieldNames ? '' : 'AliasName', protoName: 'AliasName')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetAliasRequest clone() => GetAliasRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetAliasRequest copyWith(void Function(GetAliasRequest) updates) => super.copyWith((message) => updates(message as GetAliasRequest)) as GetAliasRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetAliasRequest create() => GetAliasRequest._();
@$core.override
GetAliasRequest createEmptyInstance() => create();
static $pb.PbList<GetAliasRequest> createRepeated() => $pb.PbList<GetAliasRequest>();
@$core.pragma('dart2js:noInline')
static GetAliasRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAliasRequest>(create);
static GetAliasRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
AliasType get aliasType => $_getN(1);
@$pb.TagNumber(2)
set aliasType(AliasType value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasAliasType() => $_has(1);
@$pb.TagNumber(2)
void clearAliasType() => $_clearField(2);
@$pb.TagNumber(3)
$core.String get aliasName => $_getSZ(2);
@$pb.TagNumber(3)
set aliasName($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasAliasName() => $_has(2);
@$pb.TagNumber(3)
void clearAliasName() => $_clearField(3);
}
class GetAliasResponse extends $pb.GeneratedMessage {
factory GetAliasResponse({
Alias? alias,
}) {
final result = create();
if (alias != null) result.alias = alias;
return result;
}
GetAliasResponse._();
factory GetAliasResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GetAliasResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAliasResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Alias>(1, _omitFieldNames ? '' : 'Alias', protoName: 'Alias', subBuilder: Alias.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetAliasResponse clone() => GetAliasResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
GetAliasResponse copyWith(void Function(GetAliasResponse) updates) => super.copyWith((message) => updates(message as GetAliasResponse)) as GetAliasResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GetAliasResponse create() => GetAliasResponse._();
@$core.override
GetAliasResponse createEmptyInstance() => create();
static $pb.PbList<GetAliasResponse> createRepeated() => $pb.PbList<GetAliasResponse>();
@$core.pragma('dart2js:noInline')
static GetAliasResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAliasResponse>(create);
static GetAliasResponse? _defaultInstance;
@$pb.TagNumber(1)
Alias get alias => $_getN(0);
@$pb.TagNumber(1)
set alias(Alias value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasAlias() => $_has(0);
@$pb.TagNumber(1)
void clearAlias() => $_clearField(1);
@$pb.TagNumber(1)
Alias ensureAlias() => $_ensure(0);
}
class ListAliasesFromRequest extends $pb.GeneratedMessage {
factory ListAliasesFromRequest({
$core.String? fromID,
AliasType? aliasType,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (aliasType != null) result.aliasType = aliasType;
return result;
}
ListAliasesFromRequest._();
factory ListAliasesFromRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAliasesFromRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAliasesFromRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..e<AliasType>(2, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesFromRequest clone() => ListAliasesFromRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesFromRequest copyWith(void Function(ListAliasesFromRequest) updates) => super.copyWith((message) => updates(message as ListAliasesFromRequest)) as ListAliasesFromRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAliasesFromRequest create() => ListAliasesFromRequest._();
@$core.override
ListAliasesFromRequest createEmptyInstance() => create();
static $pb.PbList<ListAliasesFromRequest> createRepeated() => $pb.PbList<ListAliasesFromRequest>();
@$core.pragma('dart2js:noInline')
static ListAliasesFromRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAliasesFromRequest>(create);
static ListAliasesFromRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
AliasType get aliasType => $_getN(1);
@$pb.TagNumber(2)
set aliasType(AliasType value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasAliasType() => $_has(1);
@$pb.TagNumber(2)
void clearAliasType() => $_clearField(2);
}
class ListAliasesFromResponse extends $pb.GeneratedMessage {
factory ListAliasesFromResponse({
$core.Iterable<Alias>? aliases,
}) {
final result = create();
if (aliases != null) result.aliases.addAll(aliases);
return result;
}
ListAliasesFromResponse._();
factory ListAliasesFromResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAliasesFromResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAliasesFromResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<Alias>(1, _omitFieldNames ? '' : 'Aliases', $pb.PbFieldType.PM, protoName: 'Aliases', subBuilder: Alias.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesFromResponse clone() => ListAliasesFromResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesFromResponse copyWith(void Function(ListAliasesFromResponse) updates) => super.copyWith((message) => updates(message as ListAliasesFromResponse)) as ListAliasesFromResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAliasesFromResponse create() => ListAliasesFromResponse._();
@$core.override
ListAliasesFromResponse createEmptyInstance() => create();
static $pb.PbList<ListAliasesFromResponse> createRepeated() => $pb.PbList<ListAliasesFromResponse>();
@$core.pragma('dart2js:noInline')
static ListAliasesFromResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAliasesFromResponse>(create);
static ListAliasesFromResponse? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<Alias> get aliases => $_getList(0);
}
class ListAliasesToRequest extends $pb.GeneratedMessage {
factory ListAliasesToRequest({
$core.String? toID,
}) {
final result = create();
if (toID != null) result.toID = toID;
return result;
}
ListAliasesToRequest._();
factory ListAliasesToRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAliasesToRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAliasesToRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ToID', protoName: 'ToID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesToRequest clone() => ListAliasesToRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesToRequest copyWith(void Function(ListAliasesToRequest) updates) => super.copyWith((message) => updates(message as ListAliasesToRequest)) as ListAliasesToRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAliasesToRequest create() => ListAliasesToRequest._();
@$core.override
ListAliasesToRequest createEmptyInstance() => create();
static $pb.PbList<ListAliasesToRequest> createRepeated() => $pb.PbList<ListAliasesToRequest>();
@$core.pragma('dart2js:noInline')
static ListAliasesToRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAliasesToRequest>(create);
static ListAliasesToRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get toID => $_getSZ(0);
@$pb.TagNumber(1)
set toID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasToID() => $_has(0);
@$pb.TagNumber(1)
void clearToID() => $_clearField(1);
}
class ListAliasesToResponse extends $pb.GeneratedMessage {
factory ListAliasesToResponse({
$core.Iterable<Alias>? aliases,
}) {
final result = create();
if (aliases != null) result.aliases.addAll(aliases);
return result;
}
ListAliasesToResponse._();
factory ListAliasesToResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ListAliasesToResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAliasesToResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<Alias>(1, _omitFieldNames ? '' : 'Aliases', $pb.PbFieldType.PM, protoName: 'Aliases', subBuilder: Alias.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesToResponse clone() => ListAliasesToResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ListAliasesToResponse copyWith(void Function(ListAliasesToResponse) updates) => super.copyWith((message) => updates(message as ListAliasesToResponse)) as ListAliasesToResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ListAliasesToResponse create() => ListAliasesToResponse._();
@$core.override
ListAliasesToResponse createEmptyInstance() => create();
static $pb.PbList<ListAliasesToResponse> createRepeated() => $pb.PbList<ListAliasesToResponse>();
@$core.pragma('dart2js:noInline')
static ListAliasesToResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAliasesToResponse>(create);
static ListAliasesToResponse? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<Alias> get aliases => $_getList(0);
}
class DeleteAliasRequest extends $pb.GeneratedMessage {
factory DeleteAliasRequest({
$core.String? fromID,
AliasType? aliasType,
$core.String? aliasName,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (aliasType != null) result.aliasType = aliasType;
if (aliasName != null) result.aliasName = aliasName;
return result;
}
DeleteAliasRequest._();
factory DeleteAliasRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAliasRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAliasRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..e<AliasType>(2, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..aOS(3, _omitFieldNames ? '' : 'AliasName', protoName: 'AliasName')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAliasRequest clone() => DeleteAliasRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAliasRequest copyWith(void Function(DeleteAliasRequest) updates) => super.copyWith((message) => updates(message as DeleteAliasRequest)) as DeleteAliasRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAliasRequest create() => DeleteAliasRequest._();
@$core.override
DeleteAliasRequest createEmptyInstance() => create();
static $pb.PbList<DeleteAliasRequest> createRepeated() => $pb.PbList<DeleteAliasRequest>();
@$core.pragma('dart2js:noInline')
static DeleteAliasRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAliasRequest>(create);
static DeleteAliasRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
AliasType get aliasType => $_getN(1);
@$pb.TagNumber(2)
set aliasType(AliasType value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasAliasType() => $_has(1);
@$pb.TagNumber(2)
void clearAliasType() => $_clearField(2);
@$pb.TagNumber(3)
$core.String get aliasName => $_getSZ(2);
@$pb.TagNumber(3)
set aliasName($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasAliasName() => $_has(2);
@$pb.TagNumber(3)
void clearAliasName() => $_clearField(3);
}
class DeleteAliasResponse extends $pb.GeneratedMessage {
factory DeleteAliasResponse() => create();
DeleteAliasResponse._();
factory DeleteAliasResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAliasResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAliasResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAliasResponse clone() => DeleteAliasResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAliasResponse copyWith(void Function(DeleteAliasResponse) updates) => super.copyWith((message) => updates(message as DeleteAliasResponse)) as DeleteAliasResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAliasResponse create() => DeleteAliasResponse._();
@$core.override
DeleteAliasResponse createEmptyInstance() => create();
static $pb.PbList<DeleteAliasResponse> createRepeated() => $pb.PbList<DeleteAliasResponse>();
@$core.pragma('dart2js:noInline')
static DeleteAliasResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAliasResponse>(create);
static DeleteAliasResponse? _defaultInstance;
}
class DeleteAllAliasesFromRequest extends $pb.GeneratedMessage {
factory DeleteAllAliasesFromRequest({
$core.String? fromID,
AliasType? aliasType,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (aliasType != null) result.aliasType = aliasType;
return result;
}
DeleteAllAliasesFromRequest._();
factory DeleteAllAliasesFromRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesFromRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesFromRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..e<AliasType>(2, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromRequest clone() => DeleteAllAliasesFromRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromRequest copyWith(void Function(DeleteAllAliasesFromRequest) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesFromRequest)) as DeleteAllAliasesFromRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromRequest create() => DeleteAllAliasesFromRequest._();
@$core.override
DeleteAllAliasesFromRequest createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesFromRequest> createRepeated() => $pb.PbList<DeleteAllAliasesFromRequest>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesFromRequest>(create);
static DeleteAllAliasesFromRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
AliasType get aliasType => $_getN(1);
@$pb.TagNumber(2)
set aliasType(AliasType value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasAliasType() => $_has(1);
@$pb.TagNumber(2)
void clearAliasType() => $_clearField(2);
}
class DeleteAllAliasesFromResponse extends $pb.GeneratedMessage {
factory DeleteAllAliasesFromResponse() => create();
DeleteAllAliasesFromResponse._();
factory DeleteAllAliasesFromResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesFromResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesFromResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromResponse clone() => DeleteAllAliasesFromResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromResponse copyWith(void Function(DeleteAllAliasesFromResponse) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesFromResponse)) as DeleteAllAliasesFromResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromResponse create() => DeleteAllAliasesFromResponse._();
@$core.override
DeleteAllAliasesFromResponse createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesFromResponse> createRepeated() => $pb.PbList<DeleteAllAliasesFromResponse>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesFromResponse>(create);
static DeleteAllAliasesFromResponse? _defaultInstance;
}
class DeleteAllAliasesToRequest extends $pb.GeneratedMessage {
factory DeleteAllAliasesToRequest({
$core.String? toID,
}) {
final result = create();
if (toID != null) result.toID = toID;
return result;
}
DeleteAllAliasesToRequest._();
factory DeleteAllAliasesToRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesToRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesToRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ToID', protoName: 'ToID')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesToRequest clone() => DeleteAllAliasesToRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesToRequest copyWith(void Function(DeleteAllAliasesToRequest) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesToRequest)) as DeleteAllAliasesToRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesToRequest create() => DeleteAllAliasesToRequest._();
@$core.override
DeleteAllAliasesToRequest createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesToRequest> createRepeated() => $pb.PbList<DeleteAllAliasesToRequest>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesToRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesToRequest>(create);
static DeleteAllAliasesToRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get toID => $_getSZ(0);
@$pb.TagNumber(1)
set toID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasToID() => $_has(0);
@$pb.TagNumber(1)
void clearToID() => $_clearField(1);
}
class DeleteAllAliasesToResponse extends $pb.GeneratedMessage {
factory DeleteAllAliasesToResponse() => create();
DeleteAllAliasesToResponse._();
factory DeleteAllAliasesToResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesToResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesToResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesToResponse clone() => DeleteAllAliasesToResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesToResponse copyWith(void Function(DeleteAllAliasesToResponse) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesToResponse)) as DeleteAllAliasesToResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesToResponse create() => DeleteAllAliasesToResponse._();
@$core.override
DeleteAllAliasesToResponse createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesToResponse> createRepeated() => $pb.PbList<DeleteAllAliasesToResponse>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesToResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesToResponse>(create);
static DeleteAllAliasesToResponse? _defaultInstance;
}
class DeleteAllAliasesFromToRequest extends $pb.GeneratedMessage {
factory DeleteAllAliasesFromToRequest({
$core.String? fromID,
$core.String? toID,
AliasType? aliasType,
}) {
final result = create();
if (fromID != null) result.fromID = fromID;
if (toID != null) result.toID = toID;
if (aliasType != null) result.aliasType = aliasType;
return result;
}
DeleteAllAliasesFromToRequest._();
factory DeleteAllAliasesFromToRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesFromToRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesFromToRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'FromID', protoName: 'FromID')
..aOS(2, _omitFieldNames ? '' : 'ToID', protoName: 'ToID')
..e<AliasType>(3, _omitFieldNames ? '' : 'AliasType', $pb.PbFieldType.OE, protoName: 'AliasType', defaultOrMaker: AliasType.ALIAS_TYPE_UNKNOWN, valueOf: AliasType.valueOf, enumValues: AliasType.values)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromToRequest clone() => DeleteAllAliasesFromToRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromToRequest copyWith(void Function(DeleteAllAliasesFromToRequest) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesFromToRequest)) as DeleteAllAliasesFromToRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromToRequest create() => DeleteAllAliasesFromToRequest._();
@$core.override
DeleteAllAliasesFromToRequest createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesFromToRequest> createRepeated() => $pb.PbList<DeleteAllAliasesFromToRequest>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromToRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesFromToRequest>(create);
static DeleteAllAliasesFromToRequest? _defaultInstance;
@$pb.TagNumber(1)
$core.String get fromID => $_getSZ(0);
@$pb.TagNumber(1)
set fromID($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasFromID() => $_has(0);
@$pb.TagNumber(1)
void clearFromID() => $_clearField(1);
@$pb.TagNumber(2)
$core.String get toID => $_getSZ(1);
@$pb.TagNumber(2)
set toID($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasToID() => $_has(1);
@$pb.TagNumber(2)
void clearToID() => $_clearField(2);
@$pb.TagNumber(3)
AliasType get aliasType => $_getN(2);
@$pb.TagNumber(3)
set aliasType(AliasType value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasAliasType() => $_has(2);
@$pb.TagNumber(3)
void clearAliasType() => $_clearField(3);
}
class DeleteAllAliasesFromToResponse extends $pb.GeneratedMessage {
factory DeleteAllAliasesFromToResponse() => create();
DeleteAllAliasesFromToResponse._();
factory DeleteAllAliasesFromToResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory DeleteAllAliasesFromToResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAliasesFromToResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromToResponse clone() => DeleteAllAliasesFromToResponse()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
DeleteAllAliasesFromToResponse copyWith(void Function(DeleteAllAliasesFromToResponse) updates) => super.copyWith((message) => updates(message as DeleteAllAliasesFromToResponse)) as DeleteAllAliasesFromToResponse;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromToResponse create() => DeleteAllAliasesFromToResponse._();
@$core.override
DeleteAllAliasesFromToResponse createEmptyInstance() => create();
static $pb.PbList<DeleteAllAliasesFromToResponse> createRepeated() => $pb.PbList<DeleteAllAliasesFromToResponse>();
@$core.pragma('dart2js:noInline')
static DeleteAllAliasesFromToResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAliasesFromToResponse>(create);
static DeleteAllAliasesFromToResponse? _defaultInstance;
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,33 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from alias.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
class AliasType extends $pb.ProtobufEnum {
static const AliasType ALIAS_TYPE_UNKNOWN = AliasType._(0, _omitEnumNames ? '' : 'ALIAS_TYPE_UNKNOWN');
static const AliasType ALIAS_TYPE_APPOINTMENT_SCHEDULING = AliasType._(1, _omitEnumNames ? '' : 'ALIAS_TYPE_APPOINTMENT_SCHEDULING');
static const $core.List<AliasType> values = <AliasType> [
ALIAS_TYPE_UNKNOWN,
ALIAS_TYPE_APPOINTMENT_SCHEDULING,
];
static final $core.List<AliasType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
static AliasType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
const AliasType._(super.value, super.name);
}
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');

View File

@@ -1,214 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from alias.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:async' as $async;
import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'alias.pb.dart' as $0;
export 'alias.pb.dart';
@$pb.GrpcServiceName('api.AliasService')
class AliasServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AliasServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.CreateAliasResponse> createAlias($0.CreateAliasRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$createAlias, request, options: options);
}
$grpc.ResponseFuture<$0.GetAliasResponse> getAlias($0.GetAliasRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getAlias, request, options: options);
}
$grpc.ResponseFuture<$0.ListAliasesFromResponse> listAliasesFrom($0.ListAliasesFromRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listAliasesFrom, request, options: options);
}
$grpc.ResponseFuture<$0.ListAliasesToResponse> listAliasesTo($0.ListAliasesToRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listAliasesTo, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAliasResponse> deleteAlias($0.DeleteAliasRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAlias, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllAliasesFromResponse> deleteAllAliasesFrom($0.DeleteAllAliasesFromRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllAliasesFrom, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllAliasesToResponse> deleteAllAliasesTo($0.DeleteAllAliasesToRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllAliasesTo, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllAliasesFromToResponse> deleteAllAliasesFromTo($0.DeleteAllAliasesFromToRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllAliasesFromTo, request, options: options);
}
// method descriptors
static final _$createAlias = $grpc.ClientMethod<$0.CreateAliasRequest, $0.CreateAliasResponse>(
'/api.AliasService/CreateAlias',
($0.CreateAliasRequest value) => value.writeToBuffer(),
$0.CreateAliasResponse.fromBuffer);
static final _$getAlias = $grpc.ClientMethod<$0.GetAliasRequest, $0.GetAliasResponse>(
'/api.AliasService/GetAlias',
($0.GetAliasRequest value) => value.writeToBuffer(),
$0.GetAliasResponse.fromBuffer);
static final _$listAliasesFrom = $grpc.ClientMethod<$0.ListAliasesFromRequest, $0.ListAliasesFromResponse>(
'/api.AliasService/ListAliasesFrom',
($0.ListAliasesFromRequest value) => value.writeToBuffer(),
$0.ListAliasesFromResponse.fromBuffer);
static final _$listAliasesTo = $grpc.ClientMethod<$0.ListAliasesToRequest, $0.ListAliasesToResponse>(
'/api.AliasService/ListAliasesTo',
($0.ListAliasesToRequest value) => value.writeToBuffer(),
$0.ListAliasesToResponse.fromBuffer);
static final _$deleteAlias = $grpc.ClientMethod<$0.DeleteAliasRequest, $0.DeleteAliasResponse>(
'/api.AliasService/DeleteAlias',
($0.DeleteAliasRequest value) => value.writeToBuffer(),
$0.DeleteAliasResponse.fromBuffer);
static final _$deleteAllAliasesFrom = $grpc.ClientMethod<$0.DeleteAllAliasesFromRequest, $0.DeleteAllAliasesFromResponse>(
'/api.AliasService/DeleteAllAliasesFrom',
($0.DeleteAllAliasesFromRequest value) => value.writeToBuffer(),
$0.DeleteAllAliasesFromResponse.fromBuffer);
static final _$deleteAllAliasesTo = $grpc.ClientMethod<$0.DeleteAllAliasesToRequest, $0.DeleteAllAliasesToResponse>(
'/api.AliasService/DeleteAllAliasesTo',
($0.DeleteAllAliasesToRequest value) => value.writeToBuffer(),
$0.DeleteAllAliasesToResponse.fromBuffer);
static final _$deleteAllAliasesFromTo = $grpc.ClientMethod<$0.DeleteAllAliasesFromToRequest, $0.DeleteAllAliasesFromToResponse>(
'/api.AliasService/DeleteAllAliasesFromTo',
($0.DeleteAllAliasesFromToRequest value) => value.writeToBuffer(),
$0.DeleteAllAliasesFromToResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.AliasService')
abstract class AliasServiceBase extends $grpc.Service {
$core.String get $name => 'api.AliasService';
AliasServiceBase() {
$addMethod($grpc.ServiceMethod<$0.CreateAliasRequest, $0.CreateAliasResponse>(
'CreateAlias',
createAlias_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateAliasRequest.fromBuffer(value),
($0.CreateAliasResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetAliasRequest, $0.GetAliasResponse>(
'GetAlias',
getAlias_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAliasRequest.fromBuffer(value),
($0.GetAliasResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAliasesFromRequest, $0.ListAliasesFromResponse>(
'ListAliasesFrom',
listAliasesFrom_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAliasesFromRequest.fromBuffer(value),
($0.ListAliasesFromResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAliasesToRequest, $0.ListAliasesToResponse>(
'ListAliasesTo',
listAliasesTo_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAliasesToRequest.fromBuffer(value),
($0.ListAliasesToResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAliasRequest, $0.DeleteAliasResponse>(
'DeleteAlias',
deleteAlias_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAliasRequest.fromBuffer(value),
($0.DeleteAliasResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllAliasesFromRequest, $0.DeleteAllAliasesFromResponse>(
'DeleteAllAliasesFrom',
deleteAllAliasesFrom_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllAliasesFromRequest.fromBuffer(value),
($0.DeleteAllAliasesFromResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllAliasesToRequest, $0.DeleteAllAliasesToResponse>(
'DeleteAllAliasesTo',
deleteAllAliasesTo_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllAliasesToRequest.fromBuffer(value),
($0.DeleteAllAliasesToResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllAliasesFromToRequest, $0.DeleteAllAliasesFromToResponse>(
'DeleteAllAliasesFromTo',
deleteAllAliasesFromTo_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllAliasesFromToRequest.fromBuffer(value),
($0.DeleteAllAliasesFromToResponse value) => value.writeToBuffer()));
}
$async.Future<$0.CreateAliasResponse> createAlias_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateAliasRequest> $request) async {
return createAlias($call, await $request);
}
$async.Future<$0.CreateAliasResponse> createAlias($grpc.ServiceCall call, $0.CreateAliasRequest request);
$async.Future<$0.GetAliasResponse> getAlias_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAliasRequest> $request) async {
return getAlias($call, await $request);
}
$async.Future<$0.GetAliasResponse> getAlias($grpc.ServiceCall call, $0.GetAliasRequest request);
$async.Future<$0.ListAliasesFromResponse> listAliasesFrom_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAliasesFromRequest> $request) async {
return listAliasesFrom($call, await $request);
}
$async.Future<$0.ListAliasesFromResponse> listAliasesFrom($grpc.ServiceCall call, $0.ListAliasesFromRequest request);
$async.Future<$0.ListAliasesToResponse> listAliasesTo_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAliasesToRequest> $request) async {
return listAliasesTo($call, await $request);
}
$async.Future<$0.ListAliasesToResponse> listAliasesTo($grpc.ServiceCall call, $0.ListAliasesToRequest request);
$async.Future<$0.DeleteAliasResponse> deleteAlias_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAliasRequest> $request) async {
return deleteAlias($call, await $request);
}
$async.Future<$0.DeleteAliasResponse> deleteAlias($grpc.ServiceCall call, $0.DeleteAliasRequest request);
$async.Future<$0.DeleteAllAliasesFromResponse> deleteAllAliasesFrom_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllAliasesFromRequest> $request) async {
return deleteAllAliasesFrom($call, await $request);
}
$async.Future<$0.DeleteAllAliasesFromResponse> deleteAllAliasesFrom($grpc.ServiceCall call, $0.DeleteAllAliasesFromRequest request);
$async.Future<$0.DeleteAllAliasesToResponse> deleteAllAliasesTo_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllAliasesToRequest> $request) async {
return deleteAllAliasesTo($call, await $request);
}
$async.Future<$0.DeleteAllAliasesToResponse> deleteAllAliasesTo($grpc.ServiceCall call, $0.DeleteAllAliasesToRequest request);
$async.Future<$0.DeleteAllAliasesFromToResponse> deleteAllAliasesFromTo_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllAliasesFromToRequest> $request) async {
return deleteAllAliasesFromTo($call, await $request);
}
$async.Future<$0.DeleteAllAliasesFromToResponse> deleteAllAliasesFromTo($grpc.ServiceCall call, $0.DeleteAllAliasesFromToRequest request);
}

View File

@@ -1,284 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from alias.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use aliasTypeDescriptor instead')
const AliasType$json = {
'1': 'AliasType',
'2': [
{'1': 'ALIAS_TYPE_UNKNOWN', '2': 0},
{'1': 'ALIAS_TYPE_APPOINTMENT_SCHEDULING', '2': 1},
],
};
/// Descriptor for `AliasType`. Decode as a `google.protobuf.EnumDescriptorProto`.
final $typed_data.Uint8List aliasTypeDescriptor = $convert.base64Decode(
'CglBbGlhc1R5cGUSFgoSQUxJQVNfVFlQRV9VTktOT1dOEAASJQohQUxJQVNfVFlQRV9BUFBPSU'
'5UTUVOVF9TQ0hFRFVMSU5HEAE=');
@$core.Deprecated('Use aliasPropertiesAppointmentSchedulingDescriptor instead')
const AliasPropertiesAppointmentScheduling$json = {
'1': 'AliasPropertiesAppointmentScheduling',
'2': [
{'1': 'AptType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '8': {}, '10': 'AptType'},
{'1': 'LoadingCommandIdentifierEntry', '3': 2, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '8': {}, '10': 'LoadingCommandIdentifierEntry'},
{'1': 'UnLoadingCommandIdentifierEntry', '3': 3, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '8': {}, '10': 'UnLoadingCommandIdentifierEntry'},
{'1': 'ActorName', '3': 4, '4': 1, '5': 9, '10': 'ActorName'},
],
};
/// Descriptor for `AliasPropertiesAppointmentScheduling`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List aliasPropertiesAppointmentSchedulingDescriptor = $convert.base64Decode(
'CiRBbGlhc1Byb3BlcnRpZXNBcHBvaW50bWVudFNjaGVkdWxpbmcSOQoHQXB0VHlwZRgBIAEoDj'
'IULmFwaS5BcHBvaW50bWVudFR5cGVCCbqBAQWCAQIQAVIHQXB0VHlwZRJsCh1Mb2FkaW5nQ29t'
'bWFuZElkZW50aWZpZXJFbnRyeRgCIAEoDjIbLmFwaS5Db21tYW5kSWRlbnRpZmllckVudHJ5Qg'
'm6gQEFggECEAFSHUxvYWRpbmdDb21tYW5kSWRlbnRpZmllckVudHJ5EnAKH1VuTG9hZGluZ0Nv'
'bW1hbmRJZGVudGlmaWVyRW50cnkYAyABKA4yGy5hcGkuQ29tbWFuZElkZW50aWZpZXJFbnRyeU'
'IJuoEBBYIBAhABUh9VbkxvYWRpbmdDb21tYW5kSWRlbnRpZmllckVudHJ5EhwKCUFjdG9yTmFt'
'ZRgEIAEoCVIJQWN0b3JOYW1l');
@$core.Deprecated('Use aliasDescriptor instead')
const Alias$json = {
'1': 'Alias',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'AliasType', '3': 2, '4': 1, '5': 14, '6': '.api.AliasType', '8': {}, '10': 'AliasType'},
{'1': 'AliasName', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'AliasName'},
{'1': 'ToID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ToID'},
{'1': 'Properties', '3': 5, '4': 1, '5': 9, '10': 'Properties'},
],
};
/// Descriptor for `Alias`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List aliasDescriptor = $convert.base64Decode(
'CgVBbGlhcxIgCgZGcm9tSUQYASABKAlCCLqBAQRyAhABUgZGcm9tSUQSNwoJQWxpYXNUeXBlGA'
'IgASgOMg4uYXBpLkFsaWFzVHlwZUIJuoEBBYIBAhABUglBbGlhc1R5cGUSJgoJQWxpYXNOYW1l'
'GAMgASgJQgi6gQEEcgIQAVIJQWxpYXNOYW1lEhwKBFRvSUQYBCABKAlCCLqBAQRyAhABUgRUb0'
'lEEh4KClByb3BlcnRpZXMYBSABKAlSClByb3BlcnRpZXM=');
@$core.Deprecated('Use createAliasRequestDescriptor instead')
const CreateAliasRequest$json = {
'1': 'CreateAliasRequest',
'2': [
{'1': 'Alias', '3': 1, '4': 1, '5': 11, '6': '.api.Alias', '8': {}, '10': 'Alias'},
],
'7': {},
};
/// Descriptor for `CreateAliasRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAliasRequestDescriptor = $convert.base64Decode(
'ChJDcmVhdGVBbGlhc1JlcXVlc3QSKwoFQWxpYXMYASABKAsyCi5hcGkuQWxpYXNCCbqBAQWKAQ'
'IQAVIFQWxpYXM6DZJBCgoI0gEFQWxpYXM=');
@$core.Deprecated('Use createAliasResponseDescriptor instead')
const CreateAliasResponse$json = {
'1': 'CreateAliasResponse',
'2': [
{'1': 'Alias', '3': 1, '4': 1, '5': 11, '6': '.api.Alias', '10': 'Alias'},
],
};
/// Descriptor for `CreateAliasResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAliasResponseDescriptor = $convert.base64Decode(
'ChNDcmVhdGVBbGlhc1Jlc3BvbnNlEiAKBUFsaWFzGAEgASgLMgouYXBpLkFsaWFzUgVBbGlhcw'
'==');
@$core.Deprecated('Use getAliasRequestDescriptor instead')
const GetAliasRequest$json = {
'1': 'GetAliasRequest',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'AliasType', '3': 2, '4': 1, '5': 14, '6': '.api.AliasType', '8': {}, '10': 'AliasType'},
{'1': 'AliasName', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'AliasName'},
],
'7': {},
};
/// Descriptor for `GetAliasRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAliasRequestDescriptor = $convert.base64Decode(
'Cg9HZXRBbGlhc1JlcXVlc3QSIAoGRnJvbUlEGAEgASgJQgi6gQEEcgIQAVIGRnJvbUlEEjcKCU'
'FsaWFzVHlwZRgCIAEoDjIOLmFwaS5BbGlhc1R5cGVCCbqBAQWCAQIQAVIJQWxpYXNUeXBlEiYK'
'CUFsaWFzTmFtZRgDIAEoCUIIuoEBBHICEAFSCUFsaWFzTmFtZTomkkEjCiHSAQZGcm9tSUTSAQ'
'lBbGlhc1R5cGXSAQlBbGlhc05hbWU=');
@$core.Deprecated('Use getAliasResponseDescriptor instead')
const GetAliasResponse$json = {
'1': 'GetAliasResponse',
'2': [
{'1': 'Alias', '3': 1, '4': 1, '5': 11, '6': '.api.Alias', '10': 'Alias'},
],
};
/// Descriptor for `GetAliasResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAliasResponseDescriptor = $convert.base64Decode(
'ChBHZXRBbGlhc1Jlc3BvbnNlEiAKBUFsaWFzGAEgASgLMgouYXBpLkFsaWFzUgVBbGlhcw==');
@$core.Deprecated('Use listAliasesFromRequestDescriptor instead')
const ListAliasesFromRequest$json = {
'1': 'ListAliasesFromRequest',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'AliasType', '3': 2, '4': 1, '5': 14, '6': '.api.AliasType', '10': 'AliasType'},
],
'7': {},
};
/// Descriptor for `ListAliasesFromRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAliasesFromRequestDescriptor = $convert.base64Decode(
'ChZMaXN0QWxpYXNlc0Zyb21SZXF1ZXN0EiAKBkZyb21JRBgBIAEoCUIIuoEBBHICEAFSBkZyb2'
'1JRBIsCglBbGlhc1R5cGUYAiABKA4yDi5hcGkuQWxpYXNUeXBlUglBbGlhc1R5cGU6DpJBCwoJ'
'0gEGRnJvbUlE');
@$core.Deprecated('Use listAliasesFromResponseDescriptor instead')
const ListAliasesFromResponse$json = {
'1': 'ListAliasesFromResponse',
'2': [
{'1': 'Aliases', '3': 1, '4': 3, '5': 11, '6': '.api.Alias', '10': 'Aliases'},
],
};
/// Descriptor for `ListAliasesFromResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAliasesFromResponseDescriptor = $convert.base64Decode(
'ChdMaXN0QWxpYXNlc0Zyb21SZXNwb25zZRIkCgdBbGlhc2VzGAEgAygLMgouYXBpLkFsaWFzUg'
'dBbGlhc2Vz');
@$core.Deprecated('Use listAliasesToRequestDescriptor instead')
const ListAliasesToRequest$json = {
'1': 'ListAliasesToRequest',
'2': [
{'1': 'ToID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ToID'},
],
'7': {},
};
/// Descriptor for `ListAliasesToRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAliasesToRequestDescriptor = $convert.base64Decode(
'ChRMaXN0QWxpYXNlc1RvUmVxdWVzdBIcCgRUb0lEGAEgASgJQgi6gQEEcgIQAVIEVG9JRDoMkk'
'EJCgfSAQRUb0lE');
@$core.Deprecated('Use listAliasesToResponseDescriptor instead')
const ListAliasesToResponse$json = {
'1': 'ListAliasesToResponse',
'2': [
{'1': 'Aliases', '3': 1, '4': 3, '5': 11, '6': '.api.Alias', '10': 'Aliases'},
],
};
/// Descriptor for `ListAliasesToResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAliasesToResponseDescriptor = $convert.base64Decode(
'ChVMaXN0QWxpYXNlc1RvUmVzcG9uc2USJAoHQWxpYXNlcxgBIAMoCzIKLmFwaS5BbGlhc1IHQW'
'xpYXNlcw==');
@$core.Deprecated('Use deleteAliasRequestDescriptor instead')
const DeleteAliasRequest$json = {
'1': 'DeleteAliasRequest',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'AliasType', '3': 2, '4': 1, '5': 14, '6': '.api.AliasType', '8': {}, '10': 'AliasType'},
{'1': 'AliasName', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'AliasName'},
],
'7': {},
};
/// Descriptor for `DeleteAliasRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAliasRequestDescriptor = $convert.base64Decode(
'ChJEZWxldGVBbGlhc1JlcXVlc3QSIAoGRnJvbUlEGAEgASgJQgi6gQEEcgIQAVIGRnJvbUlEEj'
'cKCUFsaWFzVHlwZRgCIAEoDjIOLmFwaS5BbGlhc1R5cGVCCbqBAQWCAQIQAVIJQWxpYXNUeXBl'
'EiYKCUFsaWFzTmFtZRgDIAEoCUIIuoEBBHICEAFSCUFsaWFzTmFtZTomkkEjCiHSAQZGcm9tSU'
'TSAQlBbGlhc1R5cGXSAQlBbGlhc05hbWU=');
@$core.Deprecated('Use deleteAliasResponseDescriptor instead')
const DeleteAliasResponse$json = {
'1': 'DeleteAliasResponse',
};
/// Descriptor for `DeleteAliasResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAliasResponseDescriptor = $convert.base64Decode(
'ChNEZWxldGVBbGlhc1Jlc3BvbnNl');
@$core.Deprecated('Use deleteAllAliasesFromRequestDescriptor instead')
const DeleteAllAliasesFromRequest$json = {
'1': 'DeleteAllAliasesFromRequest',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'AliasType', '3': 2, '4': 1, '5': 14, '6': '.api.AliasType', '10': 'AliasType'},
],
'7': {},
};
/// Descriptor for `DeleteAllAliasesFromRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesFromRequestDescriptor = $convert.base64Decode(
'ChtEZWxldGVBbGxBbGlhc2VzRnJvbVJlcXVlc3QSIAoGRnJvbUlEGAEgASgJQgi6gQEEcgIQAV'
'IGRnJvbUlEEiwKCUFsaWFzVHlwZRgCIAEoDjIOLmFwaS5BbGlhc1R5cGVSCUFsaWFzVHlwZToO'
'kkELCgnSAQZGcm9tSUQ=');
@$core.Deprecated('Use deleteAllAliasesFromResponseDescriptor instead')
const DeleteAllAliasesFromResponse$json = {
'1': 'DeleteAllAliasesFromResponse',
};
/// Descriptor for `DeleteAllAliasesFromResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesFromResponseDescriptor = $convert.base64Decode(
'ChxEZWxldGVBbGxBbGlhc2VzRnJvbVJlc3BvbnNl');
@$core.Deprecated('Use deleteAllAliasesToRequestDescriptor instead')
const DeleteAllAliasesToRequest$json = {
'1': 'DeleteAllAliasesToRequest',
'2': [
{'1': 'ToID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ToID'},
],
'7': {},
};
/// Descriptor for `DeleteAllAliasesToRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesToRequestDescriptor = $convert.base64Decode(
'ChlEZWxldGVBbGxBbGlhc2VzVG9SZXF1ZXN0EhwKBFRvSUQYASABKAlCCLqBAQRyAhABUgRUb0'
'lEOgySQQkKB9IBBFRvSUQ=');
@$core.Deprecated('Use deleteAllAliasesToResponseDescriptor instead')
const DeleteAllAliasesToResponse$json = {
'1': 'DeleteAllAliasesToResponse',
};
/// Descriptor for `DeleteAllAliasesToResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesToResponseDescriptor = $convert.base64Decode(
'ChpEZWxldGVBbGxBbGlhc2VzVG9SZXNwb25zZQ==');
@$core.Deprecated('Use deleteAllAliasesFromToRequestDescriptor instead')
const DeleteAllAliasesFromToRequest$json = {
'1': 'DeleteAllAliasesFromToRequest',
'2': [
{'1': 'FromID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'FromID'},
{'1': 'ToID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ToID'},
{'1': 'AliasType', '3': 3, '4': 1, '5': 14, '6': '.api.AliasType', '10': 'AliasType'},
],
'7': {},
};
/// Descriptor for `DeleteAllAliasesFromToRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesFromToRequestDescriptor = $convert.base64Decode(
'Ch1EZWxldGVBbGxBbGlhc2VzRnJvbVRvUmVxdWVzdBIgCgZGcm9tSUQYASABKAlCCLqBAQRyAh'
'ABUgZGcm9tSUQSHAoEVG9JRBgCIAEoCUIIuoEBBHICEAFSBFRvSUQSLAoJQWxpYXNUeXBlGAMg'
'ASgOMg4uYXBpLkFsaWFzVHlwZVIJQWxpYXNUeXBlOhWSQRIKENIBBkZyb21JRNIBBFRvSUQ=');
@$core.Deprecated('Use deleteAllAliasesFromToResponseDescriptor instead')
const DeleteAllAliasesFromToResponse$json = {
'1': 'DeleteAllAliasesFromToResponse',
};
/// Descriptor for `DeleteAllAliasesFromToResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAliasesFromToResponseDescriptor = $convert.base64Decode(
'Ch5EZWxldGVBbGxBbGlhc2VzRnJvbVRvUmVzcG9uc2U=');

View File

@@ -1,40 +1,37 @@
// This is a generated file - do not edit.
//
// Generated from annotations.proto.
// Generated code. Do not modify.
// source: annotations.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'openapiv2.pb.dart' as $0;
import 'openapiv2.pb.dart' as $67;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
class Annotations {
static final openapiv2Swagger = $pb.Extension<$0.Swagger>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'openapiv2Swagger', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Swagger.getDefault, subBuilder: $0.Swagger.create);
static final openapiv2Operation = $pb.Extension<$0.Operation>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'openapiv2Operation', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Operation.getDefault, subBuilder: $0.Operation.create);
static final openapiv2Schema = $pb.Extension<$0.Schema>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'openapiv2Schema', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Schema.getDefault, subBuilder: $0.Schema.create);
static final openapiv2Enum = $pb.Extension<$0.EnumSchema>(_omitMessageNames ? '' : 'google.protobuf.EnumOptions', _omitFieldNames ? '' : 'openapiv2Enum', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.EnumSchema.getDefault, subBuilder: $0.EnumSchema.create);
static final openapiv2Tag = $pb.Extension<$0.Tag>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'openapiv2Tag', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Tag.getDefault, subBuilder: $0.Tag.create);
static final openapiv2Field = $pb.Extension<$0.JSONSchema>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'openapiv2Field', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.JSONSchema.getDefault, subBuilder: $0.JSONSchema.create);
static final openapiv2Swagger = $pb.Extension<$67.Swagger>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'openapiv2Swagger', 1042, $pb.PbFieldType.OM, defaultOrMaker: $67.Swagger.getDefault, subBuilder: $67.Swagger.create);
static final openapiv2Operation = $pb.Extension<$67.Operation>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'openapiv2Operation', 1042, $pb.PbFieldType.OM, defaultOrMaker: $67.Operation.getDefault, subBuilder: $67.Operation.create);
static final openapiv2Schema = $pb.Extension<$67.Schema>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'openapiv2Schema', 1042, $pb.PbFieldType.OM, defaultOrMaker: $67.Schema.getDefault, subBuilder: $67.Schema.create);
static final openapiv2Tag = $pb.Extension<$67.Tag>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'openapiv2Tag', 1042, $pb.PbFieldType.OM, defaultOrMaker: $67.Tag.getDefault, subBuilder: $67.Tag.create);
static final openapiv2Field = $pb.Extension<$67.JSONSchema>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'openapiv2Field', 1042, $pb.PbFieldType.OM, defaultOrMaker: $67.JSONSchema.getDefault, subBuilder: $67.JSONSchema.create);
static void registerAllExtensions($pb.ExtensionRegistry registry) {
registry.add(openapiv2Swagger);
registry.add(openapiv2Operation);
registry.add(openapiv2Schema);
registry.add(openapiv2Enum);
registry.add(openapiv2Tag);
registry.add(openapiv2Field);
}
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from annotations.proto.
// Generated code. Do not modify.
// source: annotations.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from annotations.proto.
// Generated code. Do not modify.
// source: annotations.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from api.proto.
// Generated code. Do not modify.
// source: api.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from api.proto.
// Generated code. Do not modify.
// source: api.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,96 +15,74 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'api.pb.dart' as $0;
import 'api.pb.dart' as $19;
export 'api.pb.dart';
@$pb.GrpcServiceName('api.APIService')
class APIServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$getPermissions = $grpc.ClientMethod<$19.GetPermissionsRequest, $19.GetPermissionsResult>(
'/api.APIService/GetPermissions',
($19.GetPermissionsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.GetPermissionsResult.fromBuffer(value));
static final _$getUIPermissions = $grpc.ClientMethod<$19.GetUIPermissionsRequest, $19.GetUIPermissionsResult>(
'/api.APIService/GetUIPermissions',
($19.GetUIPermissionsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.GetUIPermissionsResult.fromBuffer(value));
static final _$listUserUIPermissions = $grpc.ClientMethod<$19.ListUserUIPermissionsRequest, $19.ListUserUIPermissionsResult>(
'/api.APIService/ListUserUIPermissions',
($19.ListUserUIPermissionsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.ListUserUIPermissionsResult.fromBuffer(value));
static final _$registerPackage = $grpc.ClientMethod<$19.RegisterPackageRequest, $19.RegisterPackageResult>(
'/api.APIService/RegisterPackage',
($19.RegisterPackageRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.RegisterPackageResult.fromBuffer(value));
static final _$createScope = $grpc.ClientMethod<$19.CreateScopeRequest, $19.CreateScopeResult>(
'/api.APIService/CreateScope',
($19.CreateScopeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.CreateScopeResult.fromBuffer(value));
static final _$deleteScope = $grpc.ClientMethod<$19.DeleteScopeRequest, $19.DeleteScopeResult>(
'/api.APIService/DeleteScope',
($19.DeleteScopeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.DeleteScopeResult.fromBuffer(value));
static final _$cleanScope = $grpc.ClientMethod<$19.CleanScopeRequest, $19.CleanScopeResult>(
'/api.APIService/CleanScope',
($19.CleanScopeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $19.CleanScopeResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
APIServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
APIServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.GetPermissionsResult> getPermissions($0.GetPermissionsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.GetPermissionsResult> getPermissions($19.GetPermissionsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getPermissions, request, options: options);
}
$grpc.ResponseFuture<$0.GetUIPermissionsResult> getUIPermissions($0.GetUIPermissionsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.GetUIPermissionsResult> getUIPermissions($19.GetUIPermissionsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getUIPermissions, request, options: options);
}
$grpc.ResponseFuture<$0.ListUserUIPermissionsResult> listUserUIPermissions($0.ListUserUIPermissionsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.ListUserUIPermissionsResult> listUserUIPermissions($19.ListUserUIPermissionsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$listUserUIPermissions, request, options: options);
}
$grpc.ResponseFuture<$0.ListUserRPTsResponse> listUserRPTs($0.ListUserRPTsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listUserRPTs, request, options: options);
}
$grpc.ResponseFuture<$0.SynchronizeUserRPTsResponse> synchronizeUserRPTs($0.SynchronizeUserRPTsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$synchronizeUserRPTs, request, options: options);
}
$grpc.ResponseFuture<$0.RegisterPackageResult> registerPackage($0.RegisterPackageRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.RegisterPackageResult> registerPackage($19.RegisterPackageRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$registerPackage, request, options: options);
}
$grpc.ResponseFuture<$0.CreateScopeResult> createScope($0.CreateScopeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.CreateScopeResult> createScope($19.CreateScopeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$createScope, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteScopeResult> deleteScope($0.DeleteScopeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.DeleteScopeResult> deleteScope($19.DeleteScopeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteScope, request, options: options);
}
$grpc.ResponseFuture<$0.CleanScopeResult> cleanScope($0.CleanScopeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$19.CleanScopeResult> cleanScope($19.CleanScopeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$cleanScope, request, options: options);
}
// method descriptors
static final _$getPermissions = $grpc.ClientMethod<$0.GetPermissionsRequest, $0.GetPermissionsResult>(
'/api.APIService/GetPermissions',
($0.GetPermissionsRequest value) => value.writeToBuffer(),
$0.GetPermissionsResult.fromBuffer);
static final _$getUIPermissions = $grpc.ClientMethod<$0.GetUIPermissionsRequest, $0.GetUIPermissionsResult>(
'/api.APIService/GetUIPermissions',
($0.GetUIPermissionsRequest value) => value.writeToBuffer(),
$0.GetUIPermissionsResult.fromBuffer);
static final _$listUserUIPermissions = $grpc.ClientMethod<$0.ListUserUIPermissionsRequest, $0.ListUserUIPermissionsResult>(
'/api.APIService/ListUserUIPermissions',
($0.ListUserUIPermissionsRequest value) => value.writeToBuffer(),
$0.ListUserUIPermissionsResult.fromBuffer);
static final _$listUserRPTs = $grpc.ClientMethod<$0.ListUserRPTsRequest, $0.ListUserRPTsResponse>(
'/api.APIService/ListUserRPTs',
($0.ListUserRPTsRequest value) => value.writeToBuffer(),
$0.ListUserRPTsResponse.fromBuffer);
static final _$synchronizeUserRPTs = $grpc.ClientMethod<$0.SynchronizeUserRPTsRequest, $0.SynchronizeUserRPTsResponse>(
'/api.APIService/SynchronizeUserRPTs',
($0.SynchronizeUserRPTsRequest value) => value.writeToBuffer(),
$0.SynchronizeUserRPTsResponse.fromBuffer);
static final _$registerPackage = $grpc.ClientMethod<$0.RegisterPackageRequest, $0.RegisterPackageResult>(
'/api.APIService/RegisterPackage',
($0.RegisterPackageRequest value) => value.writeToBuffer(),
$0.RegisterPackageResult.fromBuffer);
static final _$createScope = $grpc.ClientMethod<$0.CreateScopeRequest, $0.CreateScopeResult>(
'/api.APIService/CreateScope',
($0.CreateScopeRequest value) => value.writeToBuffer(),
$0.CreateScopeResult.fromBuffer);
static final _$deleteScope = $grpc.ClientMethod<$0.DeleteScopeRequest, $0.DeleteScopeResult>(
'/api.APIService/DeleteScope',
($0.DeleteScopeRequest value) => value.writeToBuffer(),
$0.DeleteScopeResult.fromBuffer);
static final _$cleanScope = $grpc.ClientMethod<$0.CleanScopeRequest, $0.CleanScopeResult>(
'/api.APIService/CleanScope',
($0.CleanScopeRequest value) => value.writeToBuffer(),
$0.CleanScopeResult.fromBuffer);
}
@$pb.GrpcServiceName('api.APIService')
@@ -113,123 +90,90 @@ abstract class APIServiceBase extends $grpc.Service {
$core.String get $name => 'api.APIService';
APIServiceBase() {
$addMethod($grpc.ServiceMethod<$0.GetPermissionsRequest, $0.GetPermissionsResult>(
$addMethod($grpc.ServiceMethod<$19.GetPermissionsRequest, $19.GetPermissionsResult>(
'GetPermissions',
getPermissions_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetPermissionsRequest.fromBuffer(value),
($0.GetPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetUIPermissionsRequest, $0.GetUIPermissionsResult>(
($core.List<$core.int> value) => $19.GetPermissionsRequest.fromBuffer(value),
($19.GetPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.GetUIPermissionsRequest, $19.GetUIPermissionsResult>(
'GetUIPermissions',
getUIPermissions_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetUIPermissionsRequest.fromBuffer(value),
($0.GetUIPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListUserUIPermissionsRequest, $0.ListUserUIPermissionsResult>(
($core.List<$core.int> value) => $19.GetUIPermissionsRequest.fromBuffer(value),
($19.GetUIPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.ListUserUIPermissionsRequest, $19.ListUserUIPermissionsResult>(
'ListUserUIPermissions',
listUserUIPermissions_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListUserUIPermissionsRequest.fromBuffer(value),
($0.ListUserUIPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListUserRPTsRequest, $0.ListUserRPTsResponse>(
'ListUserRPTs',
listUserRPTs_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListUserRPTsRequest.fromBuffer(value),
($0.ListUserRPTsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.SynchronizeUserRPTsRequest, $0.SynchronizeUserRPTsResponse>(
'SynchronizeUserRPTs',
synchronizeUserRPTs_Pre,
false,
false,
($core.List<$core.int> value) => $0.SynchronizeUserRPTsRequest.fromBuffer(value),
($0.SynchronizeUserRPTsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.RegisterPackageRequest, $0.RegisterPackageResult>(
($core.List<$core.int> value) => $19.ListUserUIPermissionsRequest.fromBuffer(value),
($19.ListUserUIPermissionsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.RegisterPackageRequest, $19.RegisterPackageResult>(
'RegisterPackage',
registerPackage_Pre,
false,
false,
($core.List<$core.int> value) => $0.RegisterPackageRequest.fromBuffer(value),
($0.RegisterPackageResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.CreateScopeRequest, $0.CreateScopeResult>(
($core.List<$core.int> value) => $19.RegisterPackageRequest.fromBuffer(value),
($19.RegisterPackageResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.CreateScopeRequest, $19.CreateScopeResult>(
'CreateScope',
createScope_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateScopeRequest.fromBuffer(value),
($0.CreateScopeResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteScopeRequest, $0.DeleteScopeResult>(
($core.List<$core.int> value) => $19.CreateScopeRequest.fromBuffer(value),
($19.CreateScopeResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.DeleteScopeRequest, $19.DeleteScopeResult>(
'DeleteScope',
deleteScope_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteScopeRequest.fromBuffer(value),
($0.DeleteScopeResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.CleanScopeRequest, $0.CleanScopeResult>(
($core.List<$core.int> value) => $19.DeleteScopeRequest.fromBuffer(value),
($19.DeleteScopeResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$19.CleanScopeRequest, $19.CleanScopeResult>(
'CleanScope',
cleanScope_Pre,
false,
false,
($core.List<$core.int> value) => $0.CleanScopeRequest.fromBuffer(value),
($0.CleanScopeResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $19.CleanScopeRequest.fromBuffer(value),
($19.CleanScopeResult value) => value.writeToBuffer()));
}
$async.Future<$0.GetPermissionsResult> getPermissions_Pre($grpc.ServiceCall $call, $async.Future<$0.GetPermissionsRequest> $request) async {
$async.Future<$19.GetPermissionsResult> getPermissions_Pre($grpc.ServiceCall $call, $async.Future<$19.GetPermissionsRequest> $request) async {
return getPermissions($call, await $request);
}
$async.Future<$0.GetPermissionsResult> getPermissions($grpc.ServiceCall call, $0.GetPermissionsRequest request);
$async.Future<$0.GetUIPermissionsResult> getUIPermissions_Pre($grpc.ServiceCall $call, $async.Future<$0.GetUIPermissionsRequest> $request) async {
$async.Future<$19.GetUIPermissionsResult> getUIPermissions_Pre($grpc.ServiceCall $call, $async.Future<$19.GetUIPermissionsRequest> $request) async {
return getUIPermissions($call, await $request);
}
$async.Future<$0.GetUIPermissionsResult> getUIPermissions($grpc.ServiceCall call, $0.GetUIPermissionsRequest request);
$async.Future<$0.ListUserUIPermissionsResult> listUserUIPermissions_Pre($grpc.ServiceCall $call, $async.Future<$0.ListUserUIPermissionsRequest> $request) async {
$async.Future<$19.ListUserUIPermissionsResult> listUserUIPermissions_Pre($grpc.ServiceCall $call, $async.Future<$19.ListUserUIPermissionsRequest> $request) async {
return listUserUIPermissions($call, await $request);
}
$async.Future<$0.ListUserUIPermissionsResult> listUserUIPermissions($grpc.ServiceCall call, $0.ListUserUIPermissionsRequest request);
$async.Future<$0.ListUserRPTsResponse> listUserRPTs_Pre($grpc.ServiceCall $call, $async.Future<$0.ListUserRPTsRequest> $request) async {
return listUserRPTs($call, await $request);
}
$async.Future<$0.ListUserRPTsResponse> listUserRPTs($grpc.ServiceCall call, $0.ListUserRPTsRequest request);
$async.Future<$0.SynchronizeUserRPTsResponse> synchronizeUserRPTs_Pre($grpc.ServiceCall $call, $async.Future<$0.SynchronizeUserRPTsRequest> $request) async {
return synchronizeUserRPTs($call, await $request);
}
$async.Future<$0.SynchronizeUserRPTsResponse> synchronizeUserRPTs($grpc.ServiceCall call, $0.SynchronizeUserRPTsRequest request);
$async.Future<$0.RegisterPackageResult> registerPackage_Pre($grpc.ServiceCall $call, $async.Future<$0.RegisterPackageRequest> $request) async {
$async.Future<$19.RegisterPackageResult> registerPackage_Pre($grpc.ServiceCall $call, $async.Future<$19.RegisterPackageRequest> $request) async {
return registerPackage($call, await $request);
}
$async.Future<$0.RegisterPackageResult> registerPackage($grpc.ServiceCall call, $0.RegisterPackageRequest request);
$async.Future<$0.CreateScopeResult> createScope_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateScopeRequest> $request) async {
$async.Future<$19.CreateScopeResult> createScope_Pre($grpc.ServiceCall $call, $async.Future<$19.CreateScopeRequest> $request) async {
return createScope($call, await $request);
}
$async.Future<$0.CreateScopeResult> createScope($grpc.ServiceCall call, $0.CreateScopeRequest request);
$async.Future<$0.DeleteScopeResult> deleteScope_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteScopeRequest> $request) async {
$async.Future<$19.DeleteScopeResult> deleteScope_Pre($grpc.ServiceCall $call, $async.Future<$19.DeleteScopeRequest> $request) async {
return deleteScope($call, await $request);
}
$async.Future<$0.DeleteScopeResult> deleteScope($grpc.ServiceCall call, $0.DeleteScopeRequest request);
$async.Future<$0.CleanScopeResult> cleanScope_Pre($grpc.ServiceCall $call, $async.Future<$0.CleanScopeRequest> $request) async {
$async.Future<$19.CleanScopeResult> cleanScope_Pre($grpc.ServiceCall $call, $async.Future<$19.CleanScopeRequest> $request) async {
return cleanScope($call, await $request);
}
$async.Future<$0.CleanScopeResult> cleanScope($grpc.ServiceCall call, $0.CleanScopeRequest request);
$async.Future<$19.GetPermissionsResult> getPermissions($grpc.ServiceCall call, $19.GetPermissionsRequest request);
$async.Future<$19.GetUIPermissionsResult> getUIPermissions($grpc.ServiceCall call, $19.GetUIPermissionsRequest request);
$async.Future<$19.ListUserUIPermissionsResult> listUserUIPermissions($grpc.ServiceCall call, $19.ListUserUIPermissionsRequest request);
$async.Future<$19.RegisterPackageResult> registerPackage($grpc.ServiceCall call, $19.RegisterPackageRequest request);
$async.Future<$19.CreateScopeResult> createScope($grpc.ServiceCall call, $19.CreateScopeRequest request);
$async.Future<$19.DeleteScopeResult> deleteScope($grpc.ServiceCall call, $19.DeleteScopeRequest request);
$async.Future<$19.CleanScopeResult> cleanScope($grpc.ServiceCall call, $19.CleanScopeRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from api.proto.
// Generated code. Do not modify.
// source: api.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -82,8 +81,8 @@ const ListUserUIPermissionsRequest$json = {
/// Descriptor for `ListUserUIPermissionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listUserUIPermissionsRequestDescriptor = $convert.base64Decode(
'ChxMaXN0VXNlclVJUGVybWlzc2lvbnNSZXF1ZXN0EiAKBkNsaWVudBgCIAEoCUIIuoEBBHICEA'
'FSBkNsaWVudA==');
'ChxMaXN0VXNlclVJUGVybWlzc2lvbnNSZXF1ZXN0Eh8KBkNsaWVudBgCIAEoCUIH+kIEcgIQAV'
'IGQ2xpZW50');
@$core.Deprecated('Use listUserUIPermissionsResultDescriptor instead')
const ListUserUIPermissionsResult$json = {
@@ -108,19 +107,17 @@ const RegisterPackageRequest$json = {
{'1': 'Roles', '3': 4, '4': 3, '5': 11, '6': '.api.Role', '10': 'Roles'},
{'1': 'Workflows', '3': 5, '4': 3, '5': 11, '6': '.api.ModuleRegistration', '10': 'Workflows'},
{'1': 'Modules', '3': 6, '4': 3, '5': 11, '6': '.api.Module', '10': 'Modules'},
{'1': 'ForceResourcePropagation', '3': 7, '4': 1, '5': 8, '10': 'ForceResourcePropagation'},
],
};
/// Descriptor for `RegisterPackageRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List registerPackageRequestDescriptor = $convert.base64Decode(
'ChZSZWdpc3RlclBhY2thZ2VSZXF1ZXN0EioKC1BhY2thZ2VOYW1lGAEgASgJQgi6gQEEcgIQAV'
'ILUGFja2FnZU5hbWUSKAoHQ2xpZW50cxgCIAMoCzIOLmFwaS5DbGllbnRBUElSB0NsaWVudHMS'
'NgoWRm9yY2VGdWxsU2NvcGVDcmVhdGlvbhgDIAEoCFIWRm9yY2VGdWxsU2NvcGVDcmVhdGlvbh'
'IfCgVSb2xlcxgEIAMoCzIJLmFwaS5Sb2xlUgVSb2xlcxI1CglXb3JrZmxvd3MYBSADKAsyFy5h'
'cGkuTW9kdWxlUmVnaXN0cmF0aW9uUglXb3JrZmxvd3MSJQoHTW9kdWxlcxgGIAMoCzILLmFwaS'
'5Nb2R1bGVSB01vZHVsZXMSOgoYRm9yY2VSZXNvdXJjZVByb3BhZ2F0aW9uGAcgASgIUhhGb3Jj'
'ZVJlc291cmNlUHJvcGFnYXRpb24=');
'ChZSZWdpc3RlclBhY2thZ2VSZXF1ZXN0EikKC1BhY2thZ2VOYW1lGAEgASgJQgf6QgRyAhABUg'
'tQYWNrYWdlTmFtZRIoCgdDbGllbnRzGAIgAygLMg4uYXBpLkNsaWVudEFQSVIHQ2xpZW50cxI2'
'ChZGb3JjZUZ1bGxTY29wZUNyZWF0aW9uGAMgASgIUhZGb3JjZUZ1bGxTY29wZUNyZWF0aW9uEh'
'8KBVJvbGVzGAQgAygLMgkuYXBpLlJvbGVSBVJvbGVzEjUKCVdvcmtmbG93cxgFIAMoCzIXLmFw'
'aS5Nb2R1bGVSZWdpc3RyYXRpb25SCVdvcmtmbG93cxIlCgdNb2R1bGVzGAYgAygLMgsuYXBpLk'
'1vZHVsZVIHTW9kdWxlcw==');
@$core.Deprecated('Use registerPackageResultDescriptor instead')
const RegisterPackageResult$json = {
@@ -143,9 +140,9 @@ const CreateScopeRequest$json = {
/// Descriptor for `CreateScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createScopeRequestDescriptor = $convert.base64Decode(
'ChJDcmVhdGVTY29wZVJlcXVlc3QSKAoKTW9kdWxlTmFtZRgBIAEoCUIIuoEBBHICEAFSCk1vZH'
'VsZU5hbWUSIAoGQ2xpZW50GAIgASgJQgi6gQEEcgIQAVIGQ2xpZW50EisKBVNjb3BlGAMgASgL'
'MgouYXBpLlNjb3BlQgm6gQEFigECEAFSBVNjb3Bl');
'ChJDcmVhdGVTY29wZVJlcXVlc3QSJwoKTW9kdWxlTmFtZRgBIAEoCUIH+kIEcgIQAVIKTW9kdW'
'xlTmFtZRIfCgZDbGllbnQYAiABKAlCB/pCBHICEAFSBkNsaWVudBIqCgVTY29wZRgDIAEoCzIK'
'LmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
@$core.Deprecated('Use createScopeResultDescriptor instead')
const CreateScopeResult$json = {
@@ -168,9 +165,9 @@ const DeleteScopeRequest$json = {
/// Descriptor for `DeleteScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteScopeRequestDescriptor = $convert.base64Decode(
'ChJEZWxldGVTY29wZVJlcXVlc3QSKAoKTW9kdWxlTmFtZRgBIAEoCUIIuoEBBHICEAFSCk1vZH'
'VsZU5hbWUSIAoGQ2xpZW50GAIgASgJQgi6gQEEcgIQAVIGQ2xpZW50EisKBVNjb3BlGAMgASgL'
'MgouYXBpLlNjb3BlQgm6gQEFigECEAFSBVNjb3Bl');
'ChJEZWxldGVTY29wZVJlcXVlc3QSJwoKTW9kdWxlTmFtZRgBIAEoCUIH+kIEcgIQAVIKTW9kdW'
'xlTmFtZRIfCgZDbGllbnQYAiABKAlCB/pCBHICEAFSBkNsaWVudBIqCgVTY29wZRgDIAEoCzIK'
'LmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
@$core.Deprecated('Use deleteScopeResultDescriptor instead')
const DeleteScopeResult$json = {
@@ -192,8 +189,8 @@ const CleanScopeRequest$json = {
/// Descriptor for `CleanScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List cleanScopeRequestDescriptor = $convert.base64Decode(
'ChFDbGVhblNjb3BlUmVxdWVzdBIgCgZDbGllbnQYASABKAlCCLqBAQRyAhABUgZDbGllbnQSKw'
'oFU2NvcGUYAiABKAsyCi5hcGkuU2NvcGVCCbqBAQWKAQIQAVIFU2NvcGU=');
'ChFDbGVhblNjb3BlUmVxdWVzdBIfCgZDbGllbnQYASABKAlCB/pCBHICEAFSBkNsaWVudBIqCg'
'VTY29wZRgCIAEoCzIKLmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
@$core.Deprecated('Use cleanScopeResultDescriptor instead')
const CleanScopeResult$json = {
@@ -204,71 +201,3 @@ const CleanScopeResult$json = {
final $typed_data.Uint8List cleanScopeResultDescriptor = $convert.base64Decode(
'ChBDbGVhblNjb3BlUmVzdWx0');
@$core.Deprecated('Use userRPTDescriptor instead')
const UserRPT$json = {
'1': 'UserRPT',
'2': [
{'1': 'UserID', '3': 1, '4': 1, '5': 9, '10': 'UserID'},
{'1': 'Resource', '3': 2, '4': 1, '5': 11, '6': '.api.Resource', '10': 'Resource'},
{'1': 'Scopes', '3': 3, '4': 3, '5': 9, '10': 'Scopes'},
],
};
/// Descriptor for `UserRPT`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List userRPTDescriptor = $convert.base64Decode(
'CgdVc2VyUlBUEhYKBlVzZXJJRBgBIAEoCVIGVXNlcklEEikKCFJlc291cmNlGAIgASgLMg0uYX'
'BpLlJlc291cmNlUghSZXNvdXJjZRIWCgZTY29wZXMYAyADKAlSBlNjb3Blcw==');
@$core.Deprecated('Use listUserRPTsRequestDescriptor instead')
const ListUserRPTsRequest$json = {
'1': 'ListUserRPTsRequest',
'2': [
{'1': 'UserID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'UserID'},
{'1': 'ResourceType', '3': 2, '4': 1, '5': 14, '6': '.api.ResourceType', '10': 'ResourceType'},
{'1': 'ResourceID', '3': 3, '4': 1, '5': 9, '10': 'ResourceID'},
],
'7': {},
};
/// Descriptor for `ListUserRPTsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listUserRPTsRequestDescriptor = $convert.base64Decode(
'ChNMaXN0VXNlclJQVHNSZXF1ZXN0EiAKBlVzZXJJRBgBIAEoCUIIuoEBBHICEAFSBlVzZXJJRB'
'I1CgxSZXNvdXJjZVR5cGUYAiABKA4yES5hcGkuUmVzb3VyY2VUeXBlUgxSZXNvdXJjZVR5cGUS'
'HgoKUmVzb3VyY2VJRBgDIAEoCVIKUmVzb3VyY2VJRDoOkkELCgnSAQZVc2VySUQ=');
@$core.Deprecated('Use listUserRPTsResponseDescriptor instead')
const ListUserRPTsResponse$json = {
'1': 'ListUserRPTsResponse',
'2': [
{'1': 'RPTs', '3': 1, '4': 3, '5': 11, '6': '.api.UserRPT', '10': 'RPTs'},
],
};
/// Descriptor for `ListUserRPTsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listUserRPTsResponseDescriptor = $convert.base64Decode(
'ChRMaXN0VXNlclJQVHNSZXNwb25zZRIgCgRSUFRzGAEgAygLMgwuYXBpLlVzZXJSUFRSBFJQVH'
'M=');
@$core.Deprecated('Use synchronizeUserRPTsRequestDescriptor instead')
const SynchronizeUserRPTsRequest$json = {
'1': 'SynchronizeUserRPTsRequest',
'2': [
{'1': 'UserID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'UserID'},
],
'7': {},
};
/// Descriptor for `SynchronizeUserRPTsRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List synchronizeUserRPTsRequestDescriptor = $convert.base64Decode(
'ChpTeW5jaHJvbml6ZVVzZXJSUFRzUmVxdWVzdBIgCgZVc2VySUQYASABKAlCCLqBAQRyAhABUg'
'ZVc2VySUQ6DpJBCwoJ0gEGVXNlcklE');
@$core.Deprecated('Use synchronizeUserRPTsResponseDescriptor instead')
const SynchronizeUserRPTsResponse$json = {
'1': 'SynchronizeUserRPTsResponse',
};
/// Descriptor for `SynchronizeUserRPTsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List synchronizeUserRPTsResponseDescriptor = $convert.base64Decode(
'ChtTeW5jaHJvbml6ZVVzZXJSUFRzUmVzcG9uc2U=');

View File

@@ -1,609 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointment.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb;
import 'repositoryShared.pb.dart' as $2;
import 'shared.pb.dart' as $0;
import 'slotbooking.pb.dart' as $1;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
///
/// Aggregation object message
class Appointment extends $pb.GeneratedMessage {
factory Appointment({
$0.EventHeader? lastEventHeader,
$0.EntityID? iD,
AppointmentPayload? payload,
}) {
final result = create();
if (lastEventHeader != null) result.lastEventHeader = lastEventHeader;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
}
Appointment._();
factory Appointment.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Appointment.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Appointment', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $0.EventHeader.create)
..aOM<$0.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $0.EntityID.create)
..aOM<AppointmentPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Appointment clone() => Appointment()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
Appointment copyWith(void Function(Appointment) updates) => super.copyWith((message) => updates(message as Appointment)) as Appointment;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Appointment create() => Appointment._();
@$core.override
Appointment createEmptyInstance() => create();
static $pb.PbList<Appointment> createRepeated() => $pb.PbList<Appointment>();
@$core.pragma('dart2js:noInline')
static Appointment getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Appointment>(create);
static Appointment? _defaultInstance;
@$pb.TagNumber(1)
$0.EventHeader get lastEventHeader => $_getN(0);
@$pb.TagNumber(1)
set lastEventHeader($0.EventHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasLastEventHeader() => $_has(0);
@$pb.TagNumber(1)
void clearLastEventHeader() => $_clearField(1);
@$pb.TagNumber(1)
$0.EventHeader ensureLastEventHeader() => $_ensure(0);
@$pb.TagNumber(2)
$0.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($0.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$0.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
AppointmentPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentPayload ensurePayload() => $_ensure(2);
}
class AppointmentPayload extends $pb.GeneratedMessage {
factory AppointmentPayload({
$0.AppointmentType? appointmentType,
@$core.Deprecated('This field is deprecated.')
$core.Iterable<$1.AppointmentCommission>? commissions,
@$core.Deprecated('This field is deprecated.')
$core.Iterable<$1.SegmentationSelection>? segmentationSelections,
$1.Slot? slot,
@$core.Deprecated('This field is deprecated.')
$core.Iterable<$core.String>? emails,
$0.AppointmentStatusStruct? status,
@$core.Deprecated('This field is deprecated.')
$core.String? creationDate,
$core.Iterable<$0.MetadataElement>? metaData,
$core.Iterable<$0.AttachmentSummary>? attachments,
$core.int? attachmentNumber,
@$core.Deprecated('This field is deprecated.')
$core.Iterable<$core.String>? removedEmails,
$core.String? reason,
$core.bool? instructionAck,
$core.Iterable<$0.MetadataElement>? carrierInformation,
@$core.Deprecated('This field is deprecated.')
$core.String? actorID,
$2.Address? address,
$core.String? siteName,
$core.String? timeZone,
$1.AppointmentContent? loading,
$1.AppointmentContent? unloading,
$core.Iterable<$core.String>? attendees,
$core.Iterable<$core.String>? removedAttendees,
$core.Iterable<$0.MetadataElement>? segmentationKeys,
$0.DateTime? creationDateTime,
$core.bool? wMSCreated,
AppointmentExternalAccess? externalAccess,
$core.Iterable<$0.ClaimSummary>? claims,
$core.int? claimNumber,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
if (commissions != null) result.commissions.addAll(commissions);
if (segmentationSelections != null) result.segmentationSelections.addAll(segmentationSelections);
if (slot != null) result.slot = slot;
if (emails != null) result.emails.addAll(emails);
if (status != null) result.status = status;
if (creationDate != null) result.creationDate = creationDate;
if (metaData != null) result.metaData.addAll(metaData);
if (attachments != null) result.attachments.addAll(attachments);
if (attachmentNumber != null) result.attachmentNumber = attachmentNumber;
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (actorID != null) result.actorID = actorID;
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
if (timeZone != null) result.timeZone = timeZone;
if (loading != null) result.loading = loading;
if (unloading != null) result.unloading = unloading;
if (attendees != null) result.attendees.addAll(attendees);
if (removedAttendees != null) result.removedAttendees.addAll(removedAttendees);
if (segmentationKeys != null) result.segmentationKeys.addAll(segmentationKeys);
if (creationDateTime != null) result.creationDateTime = creationDateTime;
if (wMSCreated != null) result.wMSCreated = wMSCreated;
if (externalAccess != null) result.externalAccess = externalAccess;
if (claims != null) result.claims.addAll(claims);
if (claimNumber != null) result.claimNumber = claimNumber;
return result;
}
AppointmentPayload._();
factory AppointmentPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..e<$0.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $0.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $0.AppointmentType.valueOf, enumValues: $0.AppointmentType.values)
..pc<$1.AppointmentCommission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $1.AppointmentCommission.create)
..pc<$1.SegmentationSelection>(4, _omitFieldNames ? '' : 'SegmentationSelections', $pb.PbFieldType.PM, protoName: 'SegmentationSelections', subBuilder: $1.SegmentationSelection.create)
..aOM<$1.Slot>(6, _omitFieldNames ? '' : 'Slot', protoName: 'Slot', subBuilder: $1.Slot.create)
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..aOM<$0.AppointmentStatusStruct>(8, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $0.AppointmentStatusStruct.create)
..aOS(9, _omitFieldNames ? '' : 'CreationDate', protoName: 'CreationDate')
..pc<$0.MetadataElement>(10, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $0.MetadataElement.create)
..pc<$0.AttachmentSummary>(13, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $0.AttachmentSummary.create)
..a<$core.int>(14, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
..pPS(16, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(18, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $0.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOM<$2.Address>(21, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $2.Address.create)
..aOS(22, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..aOS(24, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..aOM<$1.AppointmentContent>(25, _omitFieldNames ? '' : 'Loading', protoName: 'Loading', subBuilder: $1.AppointmentContent.create)
..aOM<$1.AppointmentContent>(26, _omitFieldNames ? '' : 'Unloading', protoName: 'Unloading', subBuilder: $1.AppointmentContent.create)
..pPS(27, _omitFieldNames ? '' : 'Attendees', protoName: 'Attendees')
..pPS(28, _omitFieldNames ? '' : 'RemovedAttendees', protoName: 'RemovedAttendees')
..pc<$0.MetadataElement>(29, _omitFieldNames ? '' : 'SegmentationKeys', $pb.PbFieldType.PM, protoName: 'SegmentationKeys', subBuilder: $0.MetadataElement.create)
..aOM<$0.DateTime>(30, _omitFieldNames ? '' : 'CreationDateTime', protoName: 'CreationDateTime', subBuilder: $0.DateTime.create)
..aOB(31, _omitFieldNames ? '' : 'WMSCreated', protoName: 'WMSCreated')
..aOM<AppointmentExternalAccess>(32, _omitFieldNames ? '' : 'ExternalAccess', protoName: 'ExternalAccess', subBuilder: AppointmentExternalAccess.create)
..pc<$0.ClaimSummary>(33, _omitFieldNames ? '' : 'Claims', $pb.PbFieldType.PM, protoName: 'Claims', subBuilder: $0.ClaimSummary.create)
..a<$core.int>(34, _omitFieldNames ? '' : 'ClaimNumber', $pb.PbFieldType.O3, protoName: 'ClaimNumber')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentPayload clone() => AppointmentPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentPayload copyWith(void Function(AppointmentPayload) updates) => super.copyWith((message) => updates(message as AppointmentPayload)) as AppointmentPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentPayload create() => AppointmentPayload._();
@$core.override
AppointmentPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentPayload> createRepeated() => $pb.PbList<AppointmentPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentPayload>(create);
static AppointmentPayload? _defaultInstance;
/// Type of appointment : Loading / Unloading / Both
@$pb.TagNumber(1)
$0.AppointmentType get appointmentType => $_getN(0);
@$pb.TagNumber(1)
set appointmentType($0.AppointmentType value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasAppointmentType() => $_has(0);
@$pb.TagNumber(1)
void clearAppointmentType() => $_clearField(1);
/// List of the orders and projects for which the appointment is made, with the quantities
/// TODO Remove after upgrade model
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(2)
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(1);
/// Set of segmentation constraining the slot booking
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(4)
$pb.PbList<$1.SegmentationSelection> get segmentationSelections => $_getList(2);
/// The slot booked for the appointment
@$pb.TagNumber(6)
$1.Slot get slot => $_getN(3);
@$pb.TagNumber(6)
set slot($1.Slot value) => $_setField(6, value);
@$pb.TagNumber(6)
$core.bool hasSlot() => $_has(3);
@$pb.TagNumber(6)
void clearSlot() => $_clearField(6);
@$pb.TagNumber(6)
$1.Slot ensureSlot() => $_ensure(3);
/// User mails being notified on this appointment
/// TODO Need to add a structure to store platform user identifiers which can act on this appointment ?
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(7)
$pb.PbList<$core.String> get emails => $_getList(4);
/// Appointment Status and status history
@$pb.TagNumber(8)
$0.AppointmentStatusStruct get status => $_getN(5);
@$pb.TagNumber(8)
set status($0.AppointmentStatusStruct value) => $_setField(8, value);
@$pb.TagNumber(8)
$core.bool hasStatus() => $_has(5);
@$pb.TagNumber(8)
void clearStatus() => $_clearField(8);
@$pb.TagNumber(8)
$0.AppointmentStatusStruct ensureStatus() => $_ensure(5);
/// Creation date of the appointment
/// TODO Because this attribute is a kpi, when removing it we will have to alter all clickhouse tables to drop the column.
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(9)
$core.String get creationDate => $_getSZ(6);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(9)
set creationDate($core.String value) => $_setString(6, value);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(9)
$core.bool hasCreationDate() => $_has(6);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(9)
void clearCreationDate() => $_clearField(9);
@$pb.TagNumber(10)
$pb.PbList<$0.MetadataElement> get metaData => $_getList(7);
@$pb.TagNumber(13)
$pb.PbList<$0.AttachmentSummary> get attachments => $_getList(8);
@$pb.TagNumber(14)
$core.int get attachmentNumber => $_getIZ(9);
@$pb.TagNumber(14)
set attachmentNumber($core.int value) => $_setSignedInt32(9, value);
@$pb.TagNumber(14)
$core.bool hasAttachmentNumber() => $_has(9);
@$pb.TagNumber(14)
void clearAttachmentNumber() => $_clearField(14);
/// Emails removed from the appointment
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(16)
$pb.PbList<$core.String> get removedEmails => $_getList(10);
/// The Reason for which the appointment has no commission
@$pb.TagNumber(17)
$core.String get reason => $_getSZ(11);
@$pb.TagNumber(17)
set reason($core.String value) => $_setString(11, value);
@$pb.TagNumber(17)
$core.bool hasReason() => $_has(11);
@$pb.TagNumber(17)
void clearReason() => $_clearField(17);
/// Acknowledgment of the site instructions
@$pb.TagNumber(18)
$core.bool get instructionAck => $_getBF(12);
@$pb.TagNumber(18)
set instructionAck($core.bool value) => $_setBool(12, value);
@$pb.TagNumber(18)
$core.bool hasInstructionAck() => $_has(12);
@$pb.TagNumber(18)
void clearInstructionAck() => $_clearField(18);
/// Carrier information metadata
@$pb.TagNumber(19)
$pb.PbList<$0.MetadataElement> get carrierInformation => $_getList(13);
/// Empty attribute, just used for inpout api payloads to resolve the site resource from project context with actor alias
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(20)
$core.String get actorID => $_getSZ(14);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(20)
set actorID($core.String value) => $_setString(14, value);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(20)
$core.bool hasActorID() => $_has(14);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(20)
void clearActorID() => $_clearField(20);
/// Address of the appointment site
@$pb.TagNumber(21)
$2.Address get address => $_getN(15);
@$pb.TagNumber(21)
set address($2.Address value) => $_setField(21, value);
@$pb.TagNumber(21)
$core.bool hasAddress() => $_has(15);
@$pb.TagNumber(21)
void clearAddress() => $_clearField(21);
@$pb.TagNumber(21)
$2.Address ensureAddress() => $_ensure(15);
/// Name of the appointment site
@$pb.TagNumber(22)
$core.String get siteName => $_getSZ(16);
@$pb.TagNumber(22)
set siteName($core.String value) => $_setString(16, value);
@$pb.TagNumber(22)
$core.bool hasSiteName() => $_has(16);
@$pb.TagNumber(22)
void clearSiteName() => $_clearField(22);
/// time zone of the site on which the appointment is booked
@$pb.TagNumber(24)
$core.String get timeZone => $_getSZ(17);
@$pb.TagNumber(24)
set timeZone($core.String value) => $_setString(17, value);
@$pb.TagNumber(24)
$core.bool hasTimeZone() => $_has(17);
@$pb.TagNumber(24)
void clearTimeZone() => $_clearField(24);
/// Loading content
@$pb.TagNumber(25)
$1.AppointmentContent get loading => $_getN(18);
@$pb.TagNumber(25)
set loading($1.AppointmentContent value) => $_setField(25, value);
@$pb.TagNumber(25)
$core.bool hasLoading() => $_has(18);
@$pb.TagNumber(25)
void clearLoading() => $_clearField(25);
@$pb.TagNumber(25)
$1.AppointmentContent ensureLoading() => $_ensure(18);
/// Unoading content
@$pb.TagNumber(26)
$1.AppointmentContent get unloading => $_getN(19);
@$pb.TagNumber(26)
set unloading($1.AppointmentContent value) => $_setField(26, value);
@$pb.TagNumber(26)
$core.bool hasUnloading() => $_has(19);
@$pb.TagNumber(26)
void clearUnloading() => $_clearField(26);
@$pb.TagNumber(26)
$1.AppointmentContent ensureUnloading() => $_ensure(19);
/// User being notified on this appointment
@$pb.TagNumber(27)
$pb.PbList<$core.String> get attendees => $_getList(20);
/// Emails removed from the appointment
@$pb.TagNumber(28)
$pb.PbList<$core.String> get removedAttendees => $_getList(21);
/// Set of segmentation constraining the slot booking
@$pb.TagNumber(29)
$pb.PbList<$0.MetadataElement> get segmentationKeys => $_getList(22);
@$pb.TagNumber(30)
$0.DateTime get creationDateTime => $_getN(23);
@$pb.TagNumber(30)
set creationDateTime($0.DateTime value) => $_setField(30, value);
@$pb.TagNumber(30)
$core.bool hasCreationDateTime() => $_has(23);
@$pb.TagNumber(30)
void clearCreationDateTime() => $_clearField(30);
@$pb.TagNumber(30)
$0.DateTime ensureCreationDateTime() => $_ensure(23);
@$pb.TagNumber(31)
$core.bool get wMSCreated => $_getBF(24);
@$pb.TagNumber(31)
set wMSCreated($core.bool value) => $_setBool(24, value);
@$pb.TagNumber(31)
$core.bool hasWMSCreated() => $_has(24);
@$pb.TagNumber(31)
void clearWMSCreated() => $_clearField(31);
@$pb.TagNumber(32)
AppointmentExternalAccess get externalAccess => $_getN(25);
@$pb.TagNumber(32)
set externalAccess(AppointmentExternalAccess value) => $_setField(32, value);
@$pb.TagNumber(32)
$core.bool hasExternalAccess() => $_has(25);
@$pb.TagNumber(32)
void clearExternalAccess() => $_clearField(32);
@$pb.TagNumber(32)
AppointmentExternalAccess ensureExternalAccess() => $_ensure(25);
@$pb.TagNumber(33)
$pb.PbList<$0.ClaimSummary> get claims => $_getList(26);
@$pb.TagNumber(34)
$core.int get claimNumber => $_getIZ(27);
@$pb.TagNumber(34)
set claimNumber($core.int value) => $_setSignedInt32(27, value);
@$pb.TagNumber(34)
$core.bool hasClaimNumber() => $_has(27);
@$pb.TagNumber(34)
void clearClaimNumber() => $_clearField(34);
}
class AppointmentTriplet extends $pb.GeneratedMessage {
factory AppointmentTriplet({
Appointment? current,
Appointment? previous,
Appointment? lastEvent,
}) {
final result = create();
if (current != null) result.current = current;
if (previous != null) result.previous = previous;
if (lastEvent != null) result.lastEvent = lastEvent;
return result;
}
AppointmentTriplet._();
factory AppointmentTriplet.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentTriplet.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentTriplet', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Appointment>(1, _omitFieldNames ? '' : 'Current', protoName: 'Current', subBuilder: Appointment.create)
..aOM<Appointment>(2, _omitFieldNames ? '' : 'Previous', protoName: 'Previous', subBuilder: Appointment.create)
..aOM<Appointment>(3, _omitFieldNames ? '' : 'LastEvent', protoName: 'LastEvent', subBuilder: Appointment.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentTriplet clone() => AppointmentTriplet()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentTriplet copyWith(void Function(AppointmentTriplet) updates) => super.copyWith((message) => updates(message as AppointmentTriplet)) as AppointmentTriplet;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentTriplet create() => AppointmentTriplet._();
@$core.override
AppointmentTriplet createEmptyInstance() => create();
static $pb.PbList<AppointmentTriplet> createRepeated() => $pb.PbList<AppointmentTriplet>();
@$core.pragma('dart2js:noInline')
static AppointmentTriplet getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentTriplet>(create);
static AppointmentTriplet? _defaultInstance;
@$pb.TagNumber(1)
Appointment get current => $_getN(0);
@$pb.TagNumber(1)
set current(Appointment value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasCurrent() => $_has(0);
@$pb.TagNumber(1)
void clearCurrent() => $_clearField(1);
@$pb.TagNumber(1)
Appointment ensureCurrent() => $_ensure(0);
@$pb.TagNumber(2)
Appointment get previous => $_getN(1);
@$pb.TagNumber(2)
set previous(Appointment value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasPrevious() => $_has(1);
@$pb.TagNumber(2)
void clearPrevious() => $_clearField(2);
@$pb.TagNumber(2)
Appointment ensurePrevious() => $_ensure(1);
@$pb.TagNumber(3)
Appointment get lastEvent => $_getN(2);
@$pb.TagNumber(3)
set lastEvent(Appointment value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasLastEvent() => $_has(2);
@$pb.TagNumber(3)
void clearLastEvent() => $_clearField(3);
@$pb.TagNumber(3)
Appointment ensureLastEvent() => $_ensure(2);
}
class AppointmentExternalAccess extends $pb.GeneratedMessage {
factory AppointmentExternalAccess({
$core.String? hash,
$core.String? uRL,
$fixnum.Int64? expirationTime,
}) {
final result = create();
if (hash != null) result.hash = hash;
if (uRL != null) result.uRL = uRL;
if (expirationTime != null) result.expirationTime = expirationTime;
return result;
}
AppointmentExternalAccess._();
factory AppointmentExternalAccess.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentExternalAccess.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExternalAccess', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Hash', protoName: 'Hash')
..aOS(2, _omitFieldNames ? '' : 'URL', protoName: 'URL')
..aInt64(3, _omitFieldNames ? '' : 'ExpirationTime', protoName: 'ExpirationTime')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentExternalAccess clone() => AppointmentExternalAccess()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentExternalAccess copyWith(void Function(AppointmentExternalAccess) updates) => super.copyWith((message) => updates(message as AppointmentExternalAccess)) as AppointmentExternalAccess;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentExternalAccess create() => AppointmentExternalAccess._();
@$core.override
AppointmentExternalAccess createEmptyInstance() => create();
static $pb.PbList<AppointmentExternalAccess> createRepeated() => $pb.PbList<AppointmentExternalAccess>();
@$core.pragma('dart2js:noInline')
static AppointmentExternalAccess getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentExternalAccess>(create);
static AppointmentExternalAccess? _defaultInstance;
@$pb.TagNumber(1)
$core.String get hash => $_getSZ(0);
@$pb.TagNumber(1)
set hash($core.String value) => $_setString(0, value);
@$pb.TagNumber(1)
$core.bool hasHash() => $_has(0);
@$pb.TagNumber(1)
void clearHash() => $_clearField(1);
@$pb.TagNumber(2)
$core.String get uRL => $_getSZ(1);
@$pb.TagNumber(2)
set uRL($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasURL() => $_has(1);
@$pb.TagNumber(2)
void clearURL() => $_clearField(2);
@$pb.TagNumber(3)
$fixnum.Int64 get expirationTime => $_getI64(2);
@$pb.TagNumber(3)
set expirationTime($fixnum.Int64 value) => $_setInt64(2, value);
@$pb.TagNumber(3)
$core.bool hasExpirationTime() => $_has(2);
@$pb.TagNumber(3)
void clearExpirationTime() => $_clearField(3);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointment.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names

View File

@@ -1,202 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointment.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use appointmentDescriptor instead')
const Appointment$json = {
'1': 'Appointment',
'2': [
{'1': 'LastEventHeader', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '10': 'LastEventHeader'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentPayload', '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `Appointment`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentDescriptor = $convert.base64Decode(
'CgtBcHBvaW50bWVudBI6Cg9MYXN0RXZlbnRIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZX'
'JSD0xhc3RFdmVudEhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSMQoHUGF5'
'bG9hZBgDIAEoCzIXLmFwaS5BcHBvaW50bWVudFBheWxvYWRSB1BheWxvYWQ6IZJBHgocMhpBZ2'
'dyZWdhdGlvbiBvYmplY3QgbWVzc2FnZQ==');
@$core.Deprecated('Use appointmentPayloadDescriptor instead')
const AppointmentPayload$json = {
'1': 'AppointmentPayload',
'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.AppointmentCommission',
'8': {'3': true},
'10': 'Commissions',
},
{
'1': 'SegmentationSelections',
'3': 4,
'4': 3,
'5': 11,
'6': '.api.SegmentationSelection',
'8': {'3': true},
'10': 'SegmentationSelections',
},
{'1': 'SegmentationKeys', '3': 29, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'SegmentationKeys'},
{'1': 'CarrierInformation', '3': 19, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'CarrierInformation'},
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
{
'1': 'Emails',
'3': 7,
'4': 3,
'5': 9,
'8': {'3': true},
'10': 'Emails',
},
{
'1': 'RemovedEmails',
'3': 16,
'4': 3,
'5': 9,
'8': {'3': true},
'10': 'RemovedEmails',
},
{'1': 'Status', '3': 8, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '8': {}, '10': 'Status'},
{
'1': 'CreationDate',
'3': 9,
'4': 1,
'5': 9,
'8': {'3': true},
'10': 'CreationDate',
},
{'1': 'CreationDateTime', '3': 30, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'CreationDateTime'},
{'1': 'MetaData', '3': 10, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
{'1': 'Attachments', '3': 13, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
{'1': 'AttachmentNumber', '3': 14, '4': 1, '5': 5, '8': {}, '10': 'AttachmentNumber'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '8': {}, '10': 'Reason'},
{'1': 'InstructionAck', '3': 18, '4': 1, '5': 8, '10': 'InstructionAck'},
{
'1': 'ActorID',
'3': 20,
'4': 1,
'5': 9,
'8': {'3': true},
'10': 'ActorID',
},
{'1': 'Address', '3': 21, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 22, '4': 1, '5': 9, '8': {}, '10': 'SiteName'},
{'1': 'TimeZone', '3': 24, '4': 1, '5': 9, '10': 'TimeZone'},
{'1': 'Loading', '3': 25, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 26, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
{'1': 'Attendees', '3': 27, '4': 3, '5': 9, '8': {}, '10': 'Attendees'},
{'1': 'RemovedAttendees', '3': 28, '4': 3, '5': 9, '8': {}, '10': 'RemovedAttendees'},
{'1': 'WMSCreated', '3': 31, '4': 1, '5': 8, '10': 'WMSCreated'},
{'1': 'ExternalAccess', '3': 32, '4': 1, '5': 11, '6': '.api.AppointmentExternalAccess', '10': 'ExternalAccess'},
{'1': 'Claims', '3': 33, '4': 3, '5': 11, '6': '.api.ClaimSummary', '8': {}, '10': 'Claims'},
{'1': 'ClaimNumber', '3': 34, '4': 1, '5': 5, '8': {}, '10': 'ClaimNumber'},
],
'7': {},
};
/// Descriptor for `AppointmentPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode(
'ChJBcHBvaW50bWVudFBheWxvYWQScQoPQXBwb2ludG1lbnRUeXBlGAEgASgOMhQuYXBpLkFwcG'
'9pbnRtZW50VHlwZUIxosIYC0FwcG9pbnRtZW500sIYHgocCgtBcHBvaW50bWVudBILYXBwb2lu'
'dG1lbnQYAVIPQXBwb2ludG1lbnRUeXBlErkBCgtDb21taXNzaW9ucxgCIAMoCzIaLmFwaS5BcH'
'BvaW50bWVudENvbW1pc3Npb25CexgBkkFNMklEZXByZWNhdGVkIGZpZWxkLCB0byBiZSByZW1v'
'dmVkLiBVc2UgTG9hZGluZyBhbmQgVW5sb2FkaW5nIGZpZWxkcyBpbnN0ZWFkQAG6gQEFkgECEA'
'CawhgcChoKC0FwcG9pbnRtZW50EgthcHBvaW50bWVudFILQ29tbWlzc2lvbnMSdgoWU2VnbWVu'
'dGF0aW9uU2VsZWN0aW9ucxgEIAMoCzIaLmFwaS5TZWdtZW50YXRpb25TZWxlY3Rpb25CIhgBms'
'IYHAoaCgtBcHBvaW50bWVudBILYXBwb2ludG1lbnRSFlNlZ21lbnRhdGlvblNlbGVjdGlvbnMS'
'kAEKEFNlZ21lbnRhdGlvbktleXMYHSADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50Qk6SQTEyL1'
'NlZ21lbnRhdGlvbiBrZXlzIGNvbnN0cmFpbmluZyB0aGUgc2xvdCBib29raW5n6sEYA0tlefjB'
'GAGqwhgLQXBwb2ludG1lbnRSEFNlZ21lbnRhdGlvbktleXMSgQEKEkNhcnJpZXJJbmZvcm1hdG'
'lvbhgTIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbnRCO5JBHjIcQ2FycmllciBpbmZvcm1hdGlv'
'biBtZXRhZGF0YcDBGAHqwRgDS2V5qsIYC0FwcG9pbnRtZW50UhJDYXJyaWVySW5mb3JtYXRpb2'
'4SHQoEU2xvdBgGIAEoCzIJLmFwaS5TbG90UgRTbG90EowBCgZFbWFpbHMYByADKAlCdBgBkkFA'
'MjxEZXByZWNhdGVkIGZpZWxkLCB0byBiZSByZW1vdmVkLiBVc2UgQXR0ZW5kZWVzIGZpZWxkIG'
'luc3RlYWRAAbqBAQ6SAQsQACIHcgVgAfABAfLBGBlFbWFpbHNSZW1vdmVkLEVtYWlsc0FkZGVk'
'UgZFbWFpbHMSjAEKDVJlbW92ZWRFbWFpbHMYECADKAlCZhgBkkFHMkNEZXByZWNhdGVkIGZpZW'
'xkLCB0byBiZSByZW1vdmVkLiBVc2UgUmVtb3ZlZEF0dGVuZGVlcyBmaWVsZCBpbnN0ZWFkQAG6'
'gQEFkgECEADywRgNRW1haWxzUmVtb3ZlZFINUmVtb3ZlZEVtYWlscxJlCgZTdGF0dXMYCCABKA'
'syHC5hcGkuQXBwb2ludG1lbnRTdGF0dXNTdHJ1Y3RCL5JBGzIZU3RhdHVzIG9mIHRoZSBhcHBv'
'aW50bWVudPLBGA1TdGF0dXNVcGRhdGVkUgZTdGF0dXMSYAoMQ3JlYXRpb25EYXRlGAkgASgJQj'
'wYAbqBAQVyA9ABAdLCGB4KHAoLQXBwb2ludG1lbnQSC2FwcG9pbnRtZW50GAHawhgLCgkKASoS'
'BGRhdGVSDENyZWF0aW9uRGF0ZRI5ChBDcmVhdGlvbkRhdGVUaW1lGB4gASgLMg0uYXBpLkRhdG'
'VUaW1lUhBDcmVhdGlvbkRhdGVUaW1lEtYBCghNZXRhRGF0YRgKIAMoCzIULmFwaS5NZXRhZGF0'
'YUVsZW1lbnRCowGSQYUBMoIBTWV0YWRhdGEgYXJlIGNoYXJhY3RlcmlzdGljcyBzcGVjaWZpYy'
'B0byB0aGUgc2l0ZS4gVGhleSBjYW4gYmUgb2Ygc2V2ZXJhbCBkYXRhIGZvcm0gKHN0cmluZywg'
'aW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0YW1wKcDBGAHqwRgDS2V5qsIYC0FwcG'
'9pbnRtZW50UghNZXRhRGF0YRKCAQoLQXR0YWNobWVudHMYDSADKAsyFi5hcGkuQXR0YWNobWVu'
'dFN1bW1hcnlCSJJBIDIeTnVtYmVyIG9mIGF0dGFjaG1lbnRzIHBlciB0eXBl8sEYIUF0dGFjaG'
'1lbnRBZGRlZCxBdHRhY2htZW50UmVtb3ZlZFILQXR0YWNobWVudHMSTAoQQXR0YWNobWVudE51'
'bWJlchgOIAEoBUIgkkEdMhtUb3RhbCBudW1iZXIgb2YgYXR0YWNobWVudHNSEEF0dGFjaG1lbn'
'ROdW1iZXISOgoGUmVhc29uGBEgASgJQiLSwhgeChwKC0FwcG9pbnRtZW50EgthcHBvaW50bWVu'
'dBgBUgZSZWFzb24SJgoOSW5zdHJ1Y3Rpb25BY2sYEiABKAhSDkluc3RydWN0aW9uQWNrEvQCCg'
'dBY3RvcklEGBQgASgJQtkCGAHywRjSAkNyZWF0ZWQsQ2FuY2VsZWQsRGVsZXRlZCxBbGxvY2F0'
'aW9uQ29uZmlybWVkLFNsb3RVcGRhdGVkLENvbW1pc3Npb25zVXBkYXRlZCxDYXJyaWVySW5mb3'
'JtYXRpb25VcGRhdGVkLENhcnJpZXJFeHBlY3RlZCxBbGxvY2F0aW9uRXJyb3IsQ2FycmllckFy'
'cml2ZWQsTG9hZGluZ1N0YXJ0ZWQsTG9hZGluZ0NvbXBsZXRlZCxVbmxvYWRpbmdTdGFydGVkLF'
'VubG9hZGluZ0NvbXBsZXRlZCxDYXJyaWVyRGVwYXJ0ZWQsTWV0YURhdGFVcGRhdGVkLEF0dGFj'
'aG1lbnRBZGRlZCxBdHRhY2htZW50UmVtb3ZlZCxFbWFpbHNBZGRlZCxFbWFpbHNSZW1vdmVkLF'
'Nhbml0aXNlZCxDdXN0b21GaWVsZHNVcGRhdGVkUgdBY3RvcklEEiYKB0FkZHJlc3MYFSABKAsy'
'DC5hcGkuQWRkcmVzc1IHQWRkcmVzcxI+CghTaXRlTmFtZRgWIAEoCUIi0sIYHgocCgtBcHBvaW'
'50bWVudBILYXBwb2ludG1lbnQYAVIIU2l0ZU5hbWUSGgoIVGltZVpvbmUYGCABKAlSCFRpbWVa'
'b25lEjEKB0xvYWRpbmcYGSABKAsyFy5hcGkuQXBwb2ludG1lbnRDb250ZW50UgdMb2FkaW5nEj'
'UKCVVubG9hZGluZxgaIAEoCzIXLmFwaS5BcHBvaW50bWVudENvbnRlbnRSCVVubG9hZGluZxJp'
'CglBdHRlbmRlZXMYGyADKAlCS5JBHjIcQXR0ZW5kZWVzIG9mIHRoZSBhcHBvaW50bWVudLqBAQ'
'WSAQIIAfLBGA5BdHRlbmRlZXNBZGRlZNrCGAsKCQoBKhIEdXNlclIJQXR0ZW5kZWVzElQKEFJl'
'bW92ZWRBdHRlbmRlZXMYHCADKAlCKJJBAkAB8sEYEEF0dGVuZGVlc1JlbW92ZWTawhgLCgkKAS'
'oSBHVzZXJSEFJlbW92ZWRBdHRlbmRlZXMSHgoKV01TQ3JlYXRlZBgfIAEoCFIKV01TQ3JlYXRl'
'ZBJGCg5FeHRlcm5hbEFjY2VzcxggIAEoCzIeLmFwaS5BcHBvaW50bWVudEV4dGVybmFsQWNjZX'
'NzUg5FeHRlcm5hbEFjY2VzcxJmCgZDbGFpbXMYISADKAsyES5hcGkuQ2xhaW1TdW1tYXJ5QjuS'
'QRsyGU51bWJlciBvZiBjbGFpbXMgcGVyIHR5cGXqwRgLQ2xhaW1UeXBlSUTywRgKQ2xhaW1BZG'
'RlZFIGQ2xhaW1zEj0KC0NsYWltTnVtYmVyGCIgASgFQhuSQRgyFlRvdGFsIG51bWJlciBvZiBj'
'bGFpbXNSC0NsYWltTnVtYmVyOieSQSQKItIBD0FwcG9pbnRtZW50VHlwZdIBDVNlZ21lbnRhdG'
'lvbnM=');
@$core.Deprecated('Use appointmentTripletDescriptor instead')
const AppointmentTriplet$json = {
'1': 'AppointmentTriplet',
'2': [
{'1': 'Current', '3': 1, '4': 1, '5': 11, '6': '.api.Appointment', '10': 'Current'},
{'1': 'Previous', '3': 2, '4': 1, '5': 11, '6': '.api.Appointment', '10': 'Previous'},
{'1': 'LastEvent', '3': 3, '4': 1, '5': 11, '6': '.api.Appointment', '10': 'LastEvent'},
],
};
/// Descriptor for `AppointmentTriplet`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentTripletDescriptor = $convert.base64Decode(
'ChJBcHBvaW50bWVudFRyaXBsZXQSKgoHQ3VycmVudBgBIAEoCzIQLmFwaS5BcHBvaW50bWVudF'
'IHQ3VycmVudBIsCghQcmV2aW91cxgCIAEoCzIQLmFwaS5BcHBvaW50bWVudFIIUHJldmlvdXMS'
'LgoJTGFzdEV2ZW50GAMgASgLMhAuYXBpLkFwcG9pbnRtZW50UglMYXN0RXZlbnQ=');
@$core.Deprecated('Use appointmentExternalAccessDescriptor instead')
const AppointmentExternalAccess$json = {
'1': 'AppointmentExternalAccess',
'2': [
{'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'},
{'1': 'URL', '3': 2, '4': 1, '5': 9, '10': 'URL'},
{'1': 'ExpirationTime', '3': 3, '4': 1, '5': 3, '10': 'ExpirationTime'},
],
};
/// Descriptor for `AppointmentExternalAccess`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode(
'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA'
'IgASgJUgNVUkwSJgoORXhwaXJhdGlvblRpbWUYAyABKANSDkV4cGlyYXRpb25UaW1l');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentAction.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names

View File

@@ -1,356 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentAction.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use appointmentNotifyPayloadDescriptor instead')
const AppointmentNotifyPayload$json = {
'1': 'AppointmentNotifyPayload',
'2': [
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
{'1': 'SegmentationKeys', '3': 25, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'SegmentationKeys'},
{'1': 'CarrierInformation', '3': 19, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'CarrierInformation'},
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
{'1': 'Status', '3': 8, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
{'1': 'CreationDate', '3': 9, '4': 1, '5': 9, '10': 'CreationDate'},
{'1': 'MetaData', '3': 10, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'MetaData'},
{'1': 'Attachments', '3': 13, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '10': 'Attachments'},
{'1': 'AttachmentNumber', '3': 14, '4': 1, '5': 5, '10': 'AttachmentNumber'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'InstructionAck', '3': 18, '4': 1, '5': 8, '10': 'InstructionAck'},
{'1': 'TimeZone', '3': 20, '4': 1, '5': 9, '10': 'TimeZone'},
{'1': 'Loading', '3': 21, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 22, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
{'1': 'Attendees', '3': 23, '4': 3, '5': 9, '10': 'Attendees'},
{'1': 'RemovedAttendees', '3': 24, '4': 3, '5': 9, '10': 'RemovedAttendees'},
{'1': 'WMSCreated', '3': 26, '4': 1, '5': 8, '10': 'WMSCreated'},
],
'7': {},
};
/// Descriptor for `AppointmentNotifyPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentNotifyPayloadDescriptor = $convert.base64Decode(
'ChhBcHBvaW50bWVudE5vdGlmeVBheWxvYWQSPgoPQXBwb2ludG1lbnRUeXBlGAEgASgOMhQuYX'
'BpLkFwcG9pbnRtZW50VHlwZVIPQXBwb2ludG1lbnRUeXBlEkAKEFNlZ21lbnRhdGlvbktleXMY'
'GSADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50UhBTZWdtZW50YXRpb25LZXlzEkQKEkNhcnJpZX'
'JJbmZvcm1hdGlvbhgTIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbnRSEkNhcnJpZXJJbmZvcm1h'
'dGlvbhIdCgRTbG90GAYgASgLMgkuYXBpLlNsb3RSBFNsb3QSNAoGU3RhdHVzGAggASgLMhwuYX'
'BpLkFwcG9pbnRtZW50U3RhdHVzU3RydWN0UgZTdGF0dXMSIgoMQ3JlYXRpb25EYXRlGAkgASgJ'
'UgxDcmVhdGlvbkRhdGUSMAoITWV0YURhdGEYCiADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50Ug'
'hNZXRhRGF0YRI4CgtBdHRhY2htZW50cxgNIAMoCzIWLmFwaS5BdHRhY2htZW50U3VtbWFyeVIL'
'QXR0YWNobWVudHMSKgoQQXR0YWNobWVudE51bWJlchgOIAEoBVIQQXR0YWNobWVudE51bWJlch'
'IWCgZSZWFzb24YESABKAlSBlJlYXNvbhImCg5JbnN0cnVjdGlvbkFjaxgSIAEoCFIOSW5zdHJ1'
'Y3Rpb25BY2sSGgoIVGltZVpvbmUYFCABKAlSCFRpbWVab25lEjEKB0xvYWRpbmcYFSABKAsyFy'
'5hcGkuQXBwb2ludG1lbnRDb250ZW50UgdMb2FkaW5nEjUKCVVubG9hZGluZxgWIAEoCzIXLmFw'
'aS5BcHBvaW50bWVudENvbnRlbnRSCVVubG9hZGluZxIcCglBdHRlbmRlZXMYFyADKAlSCUF0dG'
'VuZGVlcxIqChBSZW1vdmVkQXR0ZW5kZWVzGBggAygJUhBSZW1vdmVkQXR0ZW5kZWVzEh4KCldN'
'U0NyZWF0ZWQYGiABKAhSCldNU0NyZWF0ZWQ6GaK7GAdDb21tYW5kqLsYAbK7GAZOb3RpZnk=');
@$core.Deprecated('Use appointmentNotifyDescriptor instead')
const AppointmentNotify$json = {
'1': 'AppointmentNotify',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentNotifyPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentNotifyPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentNotifyPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentNotify`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentNotifyDescriptor = $convert.base64Decode(
'ChFBcHBvaW50bWVudE5vdGlmeRIqCgZIZWFkZXIYASABKAsyEi5hcGkuQ29tbWFuZEhlYWRlcl'
'IGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI3CgdQYXlsb2FkGAMgASgL'
'Mh0uYXBpLkFwcG9pbnRtZW50Tm90aWZ5UGF5bG9hZFIHUGF5bG9hZBJBCgxFdmVudFBheWxvYW'
'QYBCABKAsyHS5hcGkuQXBwb2ludG1lbnROb3RpZnlQYXlsb2FkUgxFdmVudFBheWxvYWQSRwoP'
'UHJldmlvdXNQYXlsb2FkGAUgASgLMh0uYXBpLkFwcG9pbnRtZW50Tm90aWZ5UGF5bG9hZFIPUH'
'JldmlvdXNQYXlsb2FkOmeiuxgHQ29tbWFuZLK7GAZOb3RpZnn6uxgTQWxsb2NhdGlvbkNvbmZp'
'cm1lZIK8GB1UdW1ibGluZ1Byb2Nlc3NpbmdUaW1lV2luZG93c4q8GBZvYmouZ2V0SUQoKS5nZX'
'RSZWZJRCgp');
@$core.Deprecated('Use appointmentMailPayloadDescriptor instead')
const AppointmentMailPayload$json = {
'1': 'AppointmentMailPayload',
'2': [
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
{'1': 'SegmentationKeys', '3': 25, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'SegmentationKeys'},
{'1': 'CarrierInformation', '3': 19, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'CarrierInformation'},
{'1': 'Slot', '3': 6, '4': 1, '5': 11, '6': '.api.Slot', '10': 'Slot'},
{'1': 'Status', '3': 8, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
{'1': 'CreationDate', '3': 9, '4': 1, '5': 9, '10': 'CreationDate'},
{'1': 'MetaData', '3': 10, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'MetaData'},
{'1': 'Attachments', '3': 13, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '10': 'Attachments'},
{'1': 'AttachmentNumber', '3': 14, '4': 1, '5': 5, '10': 'AttachmentNumber'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'Address', '3': 18, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 20, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'Loading', '3': 21, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 22, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
{'1': 'Attendees', '3': 23, '4': 3, '5': 9, '10': 'Attendees'},
{'1': 'RemovedAttendees', '3': 24, '4': 3, '5': 9, '10': 'RemovedAttendees'},
],
'7': {},
};
/// Descriptor for `AppointmentMailPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentMailPayloadDescriptor = $convert.base64Decode(
'ChZBcHBvaW50bWVudE1haWxQYXlsb2FkEj4KD0FwcG9pbnRtZW50VHlwZRgBIAEoDjIULmFwaS'
'5BcHBvaW50bWVudFR5cGVSD0FwcG9pbnRtZW50VHlwZRJAChBTZWdtZW50YXRpb25LZXlzGBkg'
'AygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudFIQU2VnbWVudGF0aW9uS2V5cxJEChJDYXJyaWVySW'
'5mb3JtYXRpb24YEyADKAsyFC5hcGkuTWV0YWRhdGFFbGVtZW50UhJDYXJyaWVySW5mb3JtYXRp'
'b24SHQoEU2xvdBgGIAEoCzIJLmFwaS5TbG90UgRTbG90EjQKBlN0YXR1cxgIIAEoCzIcLmFwaS'
'5BcHBvaW50bWVudFN0YXR1c1N0cnVjdFIGU3RhdHVzEiIKDENyZWF0aW9uRGF0ZRgJIAEoCVIM'
'Q3JlYXRpb25EYXRlEjAKCE1ldGFEYXRhGAogAygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudFIITW'
'V0YURhdGESOAoLQXR0YWNobWVudHMYDSADKAsyFi5hcGkuQXR0YWNobWVudFN1bW1hcnlSC0F0'
'dGFjaG1lbnRzEioKEEF0dGFjaG1lbnROdW1iZXIYDiABKAVSEEF0dGFjaG1lbnROdW1iZXISFg'
'oGUmVhc29uGBEgASgJUgZSZWFzb24SJgoHQWRkcmVzcxgSIAEoCzIMLmFwaS5BZGRyZXNzUgdB'
'ZGRyZXNzEhoKCFNpdGVOYW1lGBQgASgJUghTaXRlTmFtZRIxCgdMb2FkaW5nGBUgASgLMhcuYX'
'BpLkFwcG9pbnRtZW50Q29udGVudFIHTG9hZGluZxI1CglVbmxvYWRpbmcYFiABKAsyFy5hcGku'
'QXBwb2ludG1lbnRDb250ZW50UglVbmxvYWRpbmcSHAoJQXR0ZW5kZWVzGBcgAygJUglBdHRlbm'
'RlZXMSKgoQUmVtb3ZlZEF0dGVuZGVlcxgYIAMoCVIQUmVtb3ZlZEF0dGVuZGVlczoXorsYB0Nv'
'bW1hbmSouxgBsrsYBE1haWw=');
@$core.Deprecated('Use appointmentMailDescriptor instead')
const AppointmentMail$json = {
'1': 'AppointmentMail',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentMailPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentMailPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentMailPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentMail`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentMailDescriptor = $convert.base64Decode(
'Cg9BcHBvaW50bWVudE1haWwSKgoGSGVhZGVyGAEgASgLMhIuYXBpLkNvbW1hbmRIZWFkZXJSBk'
'hlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSNQoHUGF5bG9hZBgDIAEoCzIb'
'LmFwaS5BcHBvaW50bWVudE1haWxQYXlsb2FkUgdQYXlsb2FkEj8KDEV2ZW50UGF5bG9hZBgEIA'
'EoCzIbLmFwaS5BcHBvaW50bWVudE1haWxQYXlsb2FkUgxFdmVudFBheWxvYWQSRQoPUHJldmlv'
'dXNQYXlsb2FkGAUgASgLMhsuYXBpLkFwcG9pbnRtZW50TWFpbFBheWxvYWRSD1ByZXZpb3VzUG'
'F5bG9hZDpmorsYB0NvbW1hbmSyuxgETWFpbMK7GBRjb2xsYWIubm90aWYuQ3JlYXRlZOq7GDdD'
'cmVhdGVkLEVtYWlsc0FkZGVkLFNsb3RVcGRhdGVkLENhbmNlbGVkLEF0dGVuZGVlc0FkZGVk');
@$core.Deprecated('Use appointmentLockBookingPayloadDescriptor instead')
const AppointmentLockBookingPayload$json = {
'1': 'AppointmentLockBookingPayload',
'2': [
{'1': 'Status', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
],
'7': {},
};
/// Descriptor for `AppointmentLockBookingPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentLockBookingPayloadDescriptor = $convert.base64Decode(
'Ch1BcHBvaW50bWVudExvY2tCb29raW5nUGF5bG9hZBI0CgZTdGF0dXMYASABKAsyHC5hcGkuQX'
'Bwb2ludG1lbnRTdGF0dXNTdHJ1Y3RSBlN0YXR1czoeorsYB0NvbW1hbmSouxgBsrsYC0xvY2tC'
'b29raW5n');
@$core.Deprecated('Use appointmentLockBookingDescriptor instead')
const AppointmentLockBooking$json = {
'1': 'AppointmentLockBooking',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentLockBooking`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentLockBookingDescriptor = $convert.base64Decode(
'ChZBcHBvaW50bWVudExvY2tCb29raW5nEioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW5kSG'
'VhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjwKB1BheWxvYWQY'
'AyABKAsyIi5hcGkuQXBwb2ludG1lbnRMb2NrQm9va2luZ1BheWxvYWRSB1BheWxvYWQSRgoMRX'
'ZlbnRQYXlsb2FkGAQgASgLMiIuYXBpLkFwcG9pbnRtZW50TG9ja0Jvb2tpbmdQYXlsb2FkUgxF'
'dmVudFBheWxvYWQSTAoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiIuYXBpLkFwcG9pbnRtZW50TG'
'9ja0Jvb2tpbmdQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6LaK7GAdDb21tYW5ksrsYC0xvY2tC'
'b29raW5n6rsYD0NhcnJpZXJEZXBhcnRlZA==');
@$core.Deprecated('Use appointmentSummaryToOrderPayloadDescriptor instead')
const AppointmentSummaryToOrderPayload$json = {
'1': 'AppointmentSummaryToOrderPayload',
'2': [
{'1': 'Loading', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 2, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
{'1': 'Status', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
],
'7': {},
};
/// Descriptor for `AppointmentSummaryToOrderPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSummaryToOrderPayloadDescriptor = $convert.base64Decode(
'CiBBcHBvaW50bWVudFN1bW1hcnlUb09yZGVyUGF5bG9hZBIxCgdMb2FkaW5nGAEgASgLMhcuYX'
'BpLkFwcG9pbnRtZW50Q29udGVudFIHTG9hZGluZxI1CglVbmxvYWRpbmcYAiABKAsyFy5hcGku'
'QXBwb2ludG1lbnRDb250ZW50UglVbmxvYWRpbmcSNAoGU3RhdHVzGAMgASgLMhwuYXBpLkFwcG'
'9pbnRtZW50U3RhdHVzU3RydWN0UgZTdGF0dXM6LKK7GAdDb21tYW5kqLsYAbK7GBlBcHBvaW50'
'bWVudFN1bW1hcnlUb09yZGVy');
@$core.Deprecated('Use appointmentSummaryToOrderDescriptor instead')
const AppointmentSummaryToOrder$json = {
'1': 'AppointmentSummaryToOrder',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToOrderPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToOrderPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToOrderPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentSummaryToOrder`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSummaryToOrderDescriptor = $convert.base64Decode(
'ChlBcHBvaW50bWVudFN1bW1hcnlUb09yZGVyEioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW'
'5kSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEj8KB1BheWxv'
'YWQYAyABKAsyJS5hcGkuQXBwb2ludG1lbnRTdW1tYXJ5VG9PcmRlclBheWxvYWRSB1BheWxvYW'
'QSSQoMRXZlbnRQYXlsb2FkGAQgASgLMiUuYXBpLkFwcG9pbnRtZW50U3VtbWFyeVRvT3JkZXJQ'
'YXlsb2FkUgxFdmVudFBheWxvYWQSTwoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiUuYXBpLkFwcG'
'9pbnRtZW50U3VtbWFyeVRvT3JkZXJQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6bKK7GAdDb21t'
'YW5ksrsYGUFwcG9pbnRtZW50U3VtbWFyeVRvT3JkZXLCuxgedHJhZGUub3JkZXIuQXBwb2ludG'
'1lbnRVcGRhdGVk6rsYGkNyZWF0ZWQsQ29tbWlzc2lvbnNVcGRhdGVkoLwYAQ==');
@$core.Deprecated('Use appointmentSummaryToExecutionflowPayloadDescriptor instead')
const AppointmentSummaryToExecutionflowPayload$json = {
'1': 'AppointmentSummaryToExecutionflowPayload',
'2': [
{'1': 'Loading', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 2, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
{'1': 'Status', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
],
'7': {},
};
/// Descriptor for `AppointmentSummaryToExecutionflowPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSummaryToExecutionflowPayloadDescriptor = $convert.base64Decode(
'CihBcHBvaW50bWVudFN1bW1hcnlUb0V4ZWN1dGlvbmZsb3dQYXlsb2FkEjEKB0xvYWRpbmcYAS'
'ABKAsyFy5hcGkuQXBwb2ludG1lbnRDb250ZW50UgdMb2FkaW5nEjUKCVVubG9hZGluZxgCIAEo'
'CzIXLmFwaS5BcHBvaW50bWVudENvbnRlbnRSCVVubG9hZGluZxI0CgZTdGF0dXMYAyABKAsyHC'
'5hcGkuQXBwb2ludG1lbnRTdGF0dXNTdHJ1Y3RSBlN0YXR1czo0orsYB0NvbW1hbmSouxgBsrsY'
'IUFwcG9pbnRtZW50U3VtbWFyeVRvRXhlY3V0aW9uZmxvdw==');
@$core.Deprecated('Use appointmentSummaryToExecutionflowDescriptor instead')
const AppointmentSummaryToExecutionflow$json = {
'1': 'AppointmentSummaryToExecutionflow',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToExecutionflowPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToExecutionflowPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentSummaryToExecutionflowPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentSummaryToExecutionflow`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentSummaryToExecutionflowDescriptor = $convert.base64Decode(
'CiFBcHBvaW50bWVudFN1bW1hcnlUb0V4ZWN1dGlvbmZsb3cSKgoGSGVhZGVyGAEgASgLMhIuYX'
'BpLkNvbW1hbmRIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQS'
'RwoHUGF5bG9hZBgDIAEoCzItLmFwaS5BcHBvaW50bWVudFN1bW1hcnlUb0V4ZWN1dGlvbmZsb3'
'dQYXlsb2FkUgdQYXlsb2FkElEKDEV2ZW50UGF5bG9hZBgEIAEoCzItLmFwaS5BcHBvaW50bWVu'
'dFN1bW1hcnlUb0V4ZWN1dGlvbmZsb3dQYXlsb2FkUgxFdmVudFBheWxvYWQSVwoPUHJldmlvdX'
'NQYXlsb2FkGAUgASgLMi0uYXBpLkFwcG9pbnRtZW50U3VtbWFyeVRvRXhlY3V0aW9uZmxvd1Bh'
'eWxvYWRSD1ByZXZpb3VzUGF5bG9hZDp8orsYB0NvbW1hbmSyuxghQXBwb2ludG1lbnRTdW1tYX'
'J5VG9FeGVjdXRpb25mbG93wrsYJnRyYWRlLmV4ZWN1dGlvbmZsb3cuQXBwb2ludG1lbnRVcGRh'
'dGVk6rsYGkNyZWF0ZWQsQ29tbWlzc2lvbnNVcGRhdGVkoLwYAQ==');
@$core.Deprecated('Use appointmentRemovedFromOrderPayloadDescriptor instead')
const AppointmentRemovedFromOrderPayload$json = {
'1': 'AppointmentRemovedFromOrderPayload',
'2': [
{'1': 'Loading', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 2, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
],
'7': {},
};
/// Descriptor for `AppointmentRemovedFromOrderPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentRemovedFromOrderPayloadDescriptor = $convert.base64Decode(
'CiJBcHBvaW50bWVudFJlbW92ZWRGcm9tT3JkZXJQYXlsb2FkEjEKB0xvYWRpbmcYASABKAsyFy'
'5hcGkuQXBwb2ludG1lbnRDb250ZW50UgdMb2FkaW5nEjUKCVVubG9hZGluZxgCIAEoCzIXLmFw'
'aS5BcHBvaW50bWVudENvbnRlbnRSCVVubG9hZGluZzouorsYB0NvbW1hbmSouxgBsrsYG0FwcG'
'9pbnRtZW50UmVtb3ZlZEZyb21PcmRlcg==');
@$core.Deprecated('Use appointmentRemovedFromOrderDescriptor instead')
const AppointmentRemovedFromOrder$json = {
'1': 'AppointmentRemovedFromOrder',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromOrderPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromOrderPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromOrderPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentRemovedFromOrder`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentRemovedFromOrderDescriptor = $convert.base64Decode(
'ChtBcHBvaW50bWVudFJlbW92ZWRGcm9tT3JkZXISKgoGSGVhZGVyGAEgASgLMhIuYXBpLkNvbW'
'1hbmRIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSQQoHUGF5'
'bG9hZBgDIAEoCzInLmFwaS5BcHBvaW50bWVudFJlbW92ZWRGcm9tT3JkZXJQYXlsb2FkUgdQYX'
'lsb2FkEksKDEV2ZW50UGF5bG9hZBgEIAEoCzInLmFwaS5BcHBvaW50bWVudFJlbW92ZWRGcm9t'
'T3JkZXJQYXlsb2FkUgxFdmVudFBheWxvYWQSUQoPUHJldmlvdXNQYXlsb2FkGAUgASgLMicuYX'
'BpLkFwcG9pbnRtZW50UmVtb3ZlZEZyb21PcmRlclBheWxvYWRSD1ByZXZpb3VzUGF5bG9hZDpk'
'orsYB0NvbW1hbmSyuxgbQXBwb2ludG1lbnRSZW1vdmVkRnJvbU9yZGVywrsYHnRyYWRlLm9yZG'
'VyLkFwcG9pbnRtZW50VXBkYXRlZOq7GBBEZWxldGVkLENhbmNlbGVkoLwYAQ==');
@$core.Deprecated('Use appointmentRemovedFromExecutionflowPayloadDescriptor instead')
const AppointmentRemovedFromExecutionflowPayload$json = {
'1': 'AppointmentRemovedFromExecutionflowPayload',
'2': [
{'1': 'Loading', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Loading'},
{'1': 'Unloading', '3': 2, '4': 1, '5': 11, '6': '.api.AppointmentContent', '10': 'Unloading'},
],
'7': {},
};
/// Descriptor for `AppointmentRemovedFromExecutionflowPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentRemovedFromExecutionflowPayloadDescriptor = $convert.base64Decode(
'CipBcHBvaW50bWVudFJlbW92ZWRGcm9tRXhlY3V0aW9uZmxvd1BheWxvYWQSMQoHTG9hZGluZx'
'gBIAEoCzIXLmFwaS5BcHBvaW50bWVudENvbnRlbnRSB0xvYWRpbmcSNQoJVW5sb2FkaW5nGAIg'
'ASgLMhcuYXBpLkFwcG9pbnRtZW50Q29udGVudFIJVW5sb2FkaW5nOjaiuxgHQ29tbWFuZKi7GA'
'GyuxgjQXBwb2ludG1lbnRSZW1vdmVkRnJvbUV4ZWN1dGlvbmZsb3c=');
@$core.Deprecated('Use appointmentRemovedFromExecutionflowDescriptor instead')
const AppointmentRemovedFromExecutionflow$json = {
'1': 'AppointmentRemovedFromExecutionflow',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromExecutionflowPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromExecutionflowPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentRemovedFromExecutionflowPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentRemovedFromExecutionflow`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentRemovedFromExecutionflowDescriptor = $convert.base64Decode(
'CiNBcHBvaW50bWVudFJlbW92ZWRGcm9tRXhlY3V0aW9uZmxvdxIqCgZIZWFkZXIYASABKAsyEi'
'5hcGkuQ29tbWFuZEhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
'RBJJCgdQYXlsb2FkGAMgASgLMi8uYXBpLkFwcG9pbnRtZW50UmVtb3ZlZEZyb21FeGVjdXRpb2'
'5mbG93UGF5bG9hZFIHUGF5bG9hZBJTCgxFdmVudFBheWxvYWQYBCABKAsyLy5hcGkuQXBwb2lu'
'dG1lbnRSZW1vdmVkRnJvbUV4ZWN1dGlvbmZsb3dQYXlsb2FkUgxFdmVudFBheWxvYWQSWQoPUH'
'JldmlvdXNQYXlsb2FkGAUgASgLMi8uYXBpLkFwcG9pbnRtZW50UmVtb3ZlZEZyb21FeGVjdXRp'
'b25mbG93UGF5bG9hZFIPUHJldmlvdXNQYXlsb2FkOnSiuxgHQ29tbWFuZLK7GCNBcHBvaW50bW'
'VudFJlbW92ZWRGcm9tRXhlY3V0aW9uZmxvd8K7GCZ0cmFkZS5leGVjdXRpb25mbG93LkFwcG9p'
'bnRtZW50VXBkYXRlZOq7GBBEZWxldGVkLENhbmNlbGVkoLwYAQ==');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentInput.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names

View File

@@ -1,617 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentInput.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:async' as $async;
import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'appointmentInput.pb.dart' as $0;
export 'appointmentInput.pb.dart';
///
/// API-server services
@$pb.GrpcServiceName('api.AppointmentInputAPI')
class AppointmentInputAPIClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AppointmentInputAPIClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.AppointmentCreatedResponse> created($0.AppointmentCreatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$created, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCanceledResponse> canceled($0.AppointmentCanceledRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$canceled, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentDeletedResponse> deleted($0.AppointmentDeletedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentSlotUpdatedResponse> slotUpdated($0.AppointmentSlotUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$slotUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($0.AppointmentCommissionsUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$commissionsUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentReasonUpdatedResponse> reasonUpdated($0.AppointmentReasonUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$reasonUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierInformationUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierExpectedResponse> carrierExpected($0.AppointmentCarrierExpectedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierExpected, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAllocationErrorResponse> allocationError($0.AppointmentAllocationErrorRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$allocationError, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed($0.AppointmentAllocationConfirmedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$allocationConfirmed, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierArrivedResponse> carrierArrived($0.AppointmentCarrierArrivedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierArrived, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentLoadingStartedResponse> loadingStarted($0.AppointmentLoadingStartedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$loadingStarted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentLoadingCompletedResponse> loadingCompleted($0.AppointmentLoadingCompletedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$loadingCompleted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentUnloadingStartedResponse> unloadingStarted($0.AppointmentUnloadingStartedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$unloadingStarted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentUnloadingCompletedResponse> unloadingCompleted($0.AppointmentUnloadingCompletedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$unloadingCompleted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierDepartedResponse> carrierDeparted($0.AppointmentCarrierDepartedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierDeparted, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentMetaDataUpdatedResponse> metaDataUpdated($0.AppointmentMetaDataUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$metaDataUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttachmentAddedResponse> attachmentAdded($0.AppointmentAttachmentAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attachmentAdded, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved($0.AppointmentAttachmentRemovedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attachmentRemoved, request, options: options);
}
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.AppointmentEmailsAddedResponse> emailsAdded($0.AppointmentEmailsAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$emailsAdded, request, options: options);
}
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.AppointmentEmailsRemovedResponse> emailsRemoved($0.AppointmentEmailsRemovedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$emailsRemoved, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttendeesAddedResponse> attendeesAdded($0.AppointmentAttendeesAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attendeesAdded, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentAttendeesRemovedResponse> attendeesRemoved($0.AppointmentAttendeesRemovedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$attendeesRemoved, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentSanitisedResponse> sanitised($0.AppointmentSanitisedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$sanitised, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCustomFieldsUpdatedResponse> customFieldsUpdated($0.AppointmentCustomFieldsUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$customFieldsUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentRedetectedResponse> redetected($0.AppointmentRedetectedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$redetected, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentClaimAddedResponse> claimAdded($0.AppointmentClaimAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$claimAdded, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.AppointmentCreatedRequest, $0.AppointmentCreatedResponse>(
'/api.AppointmentInputAPI/Created',
($0.AppointmentCreatedRequest value) => value.writeToBuffer(),
$0.AppointmentCreatedResponse.fromBuffer);
static final _$canceled = $grpc.ClientMethod<$0.AppointmentCanceledRequest, $0.AppointmentCanceledResponse>(
'/api.AppointmentInputAPI/Canceled',
($0.AppointmentCanceledRequest value) => value.writeToBuffer(),
$0.AppointmentCanceledResponse.fromBuffer);
static final _$deleted = $grpc.ClientMethod<$0.AppointmentDeletedRequest, $0.AppointmentDeletedResponse>(
'/api.AppointmentInputAPI/Deleted',
($0.AppointmentDeletedRequest value) => value.writeToBuffer(),
$0.AppointmentDeletedResponse.fromBuffer);
static final _$slotUpdated = $grpc.ClientMethod<$0.AppointmentSlotUpdatedRequest, $0.AppointmentSlotUpdatedResponse>(
'/api.AppointmentInputAPI/SlotUpdated',
($0.AppointmentSlotUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentSlotUpdatedResponse.fromBuffer);
static final _$commissionsUpdated = $grpc.ClientMethod<$0.AppointmentCommissionsUpdatedRequest, $0.AppointmentCommissionsUpdatedResponse>(
'/api.AppointmentInputAPI/CommissionsUpdated',
($0.AppointmentCommissionsUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentCommissionsUpdatedResponse.fromBuffer);
static final _$reasonUpdated = $grpc.ClientMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>(
'/api.AppointmentInputAPI/ReasonUpdated',
($0.AppointmentReasonUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentReasonUpdatedResponse.fromBuffer);
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'/api.AppointmentInputAPI/CarrierInformationUpdated',
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentCarrierInformationUpdatedResponse.fromBuffer);
static final _$carrierExpected = $grpc.ClientMethod<$0.AppointmentCarrierExpectedRequest, $0.AppointmentCarrierExpectedResponse>(
'/api.AppointmentInputAPI/CarrierExpected',
($0.AppointmentCarrierExpectedRequest value) => value.writeToBuffer(),
$0.AppointmentCarrierExpectedResponse.fromBuffer);
static final _$allocationError = $grpc.ClientMethod<$0.AppointmentAllocationErrorRequest, $0.AppointmentAllocationErrorResponse>(
'/api.AppointmentInputAPI/AllocationError',
($0.AppointmentAllocationErrorRequest value) => value.writeToBuffer(),
$0.AppointmentAllocationErrorResponse.fromBuffer);
static final _$allocationConfirmed = $grpc.ClientMethod<$0.AppointmentAllocationConfirmedRequest, $0.AppointmentAllocationConfirmedResponse>(
'/api.AppointmentInputAPI/AllocationConfirmed',
($0.AppointmentAllocationConfirmedRequest value) => value.writeToBuffer(),
$0.AppointmentAllocationConfirmedResponse.fromBuffer);
static final _$carrierArrived = $grpc.ClientMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
'/api.AppointmentInputAPI/CarrierArrived',
($0.AppointmentCarrierArrivedRequest value) => value.writeToBuffer(),
$0.AppointmentCarrierArrivedResponse.fromBuffer);
static final _$loadingStarted = $grpc.ClientMethod<$0.AppointmentLoadingStartedRequest, $0.AppointmentLoadingStartedResponse>(
'/api.AppointmentInputAPI/LoadingStarted',
($0.AppointmentLoadingStartedRequest value) => value.writeToBuffer(),
$0.AppointmentLoadingStartedResponse.fromBuffer);
static final _$loadingCompleted = $grpc.ClientMethod<$0.AppointmentLoadingCompletedRequest, $0.AppointmentLoadingCompletedResponse>(
'/api.AppointmentInputAPI/LoadingCompleted',
($0.AppointmentLoadingCompletedRequest value) => value.writeToBuffer(),
$0.AppointmentLoadingCompletedResponse.fromBuffer);
static final _$unloadingStarted = $grpc.ClientMethod<$0.AppointmentUnloadingStartedRequest, $0.AppointmentUnloadingStartedResponse>(
'/api.AppointmentInputAPI/UnloadingStarted',
($0.AppointmentUnloadingStartedRequest value) => value.writeToBuffer(),
$0.AppointmentUnloadingStartedResponse.fromBuffer);
static final _$unloadingCompleted = $grpc.ClientMethod<$0.AppointmentUnloadingCompletedRequest, $0.AppointmentUnloadingCompletedResponse>(
'/api.AppointmentInputAPI/UnloadingCompleted',
($0.AppointmentUnloadingCompletedRequest value) => value.writeToBuffer(),
$0.AppointmentUnloadingCompletedResponse.fromBuffer);
static final _$carrierDeparted = $grpc.ClientMethod<$0.AppointmentCarrierDepartedRequest, $0.AppointmentCarrierDepartedResponse>(
'/api.AppointmentInputAPI/CarrierDeparted',
($0.AppointmentCarrierDepartedRequest value) => value.writeToBuffer(),
$0.AppointmentCarrierDepartedResponse.fromBuffer);
static final _$metaDataUpdated = $grpc.ClientMethod<$0.AppointmentMetaDataUpdatedRequest, $0.AppointmentMetaDataUpdatedResponse>(
'/api.AppointmentInputAPI/MetaDataUpdated',
($0.AppointmentMetaDataUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentMetaDataUpdatedResponse.fromBuffer);
static final _$attachmentAdded = $grpc.ClientMethod<$0.AppointmentAttachmentAddedRequest, $0.AppointmentAttachmentAddedResponse>(
'/api.AppointmentInputAPI/AttachmentAdded',
($0.AppointmentAttachmentAddedRequest value) => value.writeToBuffer(),
$0.AppointmentAttachmentAddedResponse.fromBuffer);
static final _$attachmentRemoved = $grpc.ClientMethod<$0.AppointmentAttachmentRemovedRequest, $0.AppointmentAttachmentRemovedResponse>(
'/api.AppointmentInputAPI/AttachmentRemoved',
($0.AppointmentAttachmentRemovedRequest value) => value.writeToBuffer(),
$0.AppointmentAttachmentRemovedResponse.fromBuffer);
static final _$emailsAdded = $grpc.ClientMethod<$0.AppointmentEmailsAddedRequest, $0.AppointmentEmailsAddedResponse>(
'/api.AppointmentInputAPI/EmailsAdded',
($0.AppointmentEmailsAddedRequest value) => value.writeToBuffer(),
$0.AppointmentEmailsAddedResponse.fromBuffer);
static final _$emailsRemoved = $grpc.ClientMethod<$0.AppointmentEmailsRemovedRequest, $0.AppointmentEmailsRemovedResponse>(
'/api.AppointmentInputAPI/EmailsRemoved',
($0.AppointmentEmailsRemovedRequest value) => value.writeToBuffer(),
$0.AppointmentEmailsRemovedResponse.fromBuffer);
static final _$attendeesAdded = $grpc.ClientMethod<$0.AppointmentAttendeesAddedRequest, $0.AppointmentAttendeesAddedResponse>(
'/api.AppointmentInputAPI/AttendeesAdded',
($0.AppointmentAttendeesAddedRequest value) => value.writeToBuffer(),
$0.AppointmentAttendeesAddedResponse.fromBuffer);
static final _$attendeesRemoved = $grpc.ClientMethod<$0.AppointmentAttendeesRemovedRequest, $0.AppointmentAttendeesRemovedResponse>(
'/api.AppointmentInputAPI/AttendeesRemoved',
($0.AppointmentAttendeesRemovedRequest value) => value.writeToBuffer(),
$0.AppointmentAttendeesRemovedResponse.fromBuffer);
static final _$sanitised = $grpc.ClientMethod<$0.AppointmentSanitisedRequest, $0.AppointmentSanitisedResponse>(
'/api.AppointmentInputAPI/Sanitised',
($0.AppointmentSanitisedRequest value) => value.writeToBuffer(),
$0.AppointmentSanitisedResponse.fromBuffer);
static final _$customFieldsUpdated = $grpc.ClientMethod<$0.AppointmentCustomFieldsUpdatedRequest, $0.AppointmentCustomFieldsUpdatedResponse>(
'/api.AppointmentInputAPI/CustomFieldsUpdated',
($0.AppointmentCustomFieldsUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentCustomFieldsUpdatedResponse.fromBuffer);
static final _$redetected = $grpc.ClientMethod<$0.AppointmentRedetectedRequest, $0.AppointmentRedetectedResponse>(
'/api.AppointmentInputAPI/Redetected',
($0.AppointmentRedetectedRequest value) => value.writeToBuffer(),
$0.AppointmentRedetectedResponse.fromBuffer);
static final _$claimAdded = $grpc.ClientMethod<$0.AppointmentClaimAddedRequest, $0.AppointmentClaimAddedResponse>(
'/api.AppointmentInputAPI/ClaimAdded',
($0.AppointmentClaimAddedRequest value) => value.writeToBuffer(),
$0.AppointmentClaimAddedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.AppointmentInputAPI')
abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$core.String get $name => 'api.AppointmentInputAPI';
AppointmentInputAPIServiceBase() {
$addMethod($grpc.ServiceMethod<$0.AppointmentCreatedRequest, $0.AppointmentCreatedResponse>(
'Created',
created_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCreatedRequest.fromBuffer(value),
($0.AppointmentCreatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCanceledRequest, $0.AppointmentCanceledResponse>(
'Canceled',
canceled_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCanceledRequest.fromBuffer(value),
($0.AppointmentCanceledResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentDeletedRequest, $0.AppointmentDeletedResponse>(
'Deleted',
deleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentDeletedRequest.fromBuffer(value),
($0.AppointmentDeletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentSlotUpdatedRequest, $0.AppointmentSlotUpdatedResponse>(
'SlotUpdated',
slotUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentSlotUpdatedRequest.fromBuffer(value),
($0.AppointmentSlotUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCommissionsUpdatedRequest, $0.AppointmentCommissionsUpdatedResponse>(
'CommissionsUpdated',
commissionsUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCommissionsUpdatedRequest.fromBuffer(value),
($0.AppointmentCommissionsUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>(
'ReasonUpdated',
reasonUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentReasonUpdatedRequest.fromBuffer(value),
($0.AppointmentReasonUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'CarrierInformationUpdated',
carrierInformationUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCarrierInformationUpdatedRequest.fromBuffer(value),
($0.AppointmentCarrierInformationUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierExpectedRequest, $0.AppointmentCarrierExpectedResponse>(
'CarrierExpected',
carrierExpected_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCarrierExpectedRequest.fromBuffer(value),
($0.AppointmentCarrierExpectedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAllocationErrorRequest, $0.AppointmentAllocationErrorResponse>(
'AllocationError',
allocationError_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAllocationErrorRequest.fromBuffer(value),
($0.AppointmentAllocationErrorResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAllocationConfirmedRequest, $0.AppointmentAllocationConfirmedResponse>(
'AllocationConfirmed',
allocationConfirmed_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAllocationConfirmedRequest.fromBuffer(value),
($0.AppointmentAllocationConfirmedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
'CarrierArrived',
carrierArrived_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCarrierArrivedRequest.fromBuffer(value),
($0.AppointmentCarrierArrivedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentLoadingStartedRequest, $0.AppointmentLoadingStartedResponse>(
'LoadingStarted',
loadingStarted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentLoadingStartedRequest.fromBuffer(value),
($0.AppointmentLoadingStartedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentLoadingCompletedRequest, $0.AppointmentLoadingCompletedResponse>(
'LoadingCompleted',
loadingCompleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentLoadingCompletedRequest.fromBuffer(value),
($0.AppointmentLoadingCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentUnloadingStartedRequest, $0.AppointmentUnloadingStartedResponse>(
'UnloadingStarted',
unloadingStarted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentUnloadingStartedRequest.fromBuffer(value),
($0.AppointmentUnloadingStartedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentUnloadingCompletedRequest, $0.AppointmentUnloadingCompletedResponse>(
'UnloadingCompleted',
unloadingCompleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentUnloadingCompletedRequest.fromBuffer(value),
($0.AppointmentUnloadingCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierDepartedRequest, $0.AppointmentCarrierDepartedResponse>(
'CarrierDeparted',
carrierDeparted_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCarrierDepartedRequest.fromBuffer(value),
($0.AppointmentCarrierDepartedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentMetaDataUpdatedRequest, $0.AppointmentMetaDataUpdatedResponse>(
'MetaDataUpdated',
metaDataUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentMetaDataUpdatedRequest.fromBuffer(value),
($0.AppointmentMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttachmentAddedRequest, $0.AppointmentAttachmentAddedResponse>(
'AttachmentAdded',
attachmentAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttachmentAddedRequest.fromBuffer(value),
($0.AppointmentAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttachmentRemovedRequest, $0.AppointmentAttachmentRemovedResponse>(
'AttachmentRemoved',
attachmentRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttachmentRemovedRequest.fromBuffer(value),
($0.AppointmentAttachmentRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentEmailsAddedRequest, $0.AppointmentEmailsAddedResponse>(
'EmailsAdded',
emailsAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentEmailsAddedRequest.fromBuffer(value),
($0.AppointmentEmailsAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentEmailsRemovedRequest, $0.AppointmentEmailsRemovedResponse>(
'EmailsRemoved',
emailsRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentEmailsRemovedRequest.fromBuffer(value),
($0.AppointmentEmailsRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttendeesAddedRequest, $0.AppointmentAttendeesAddedResponse>(
'AttendeesAdded',
attendeesAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttendeesAddedRequest.fromBuffer(value),
($0.AppointmentAttendeesAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentAttendeesRemovedRequest, $0.AppointmentAttendeesRemovedResponse>(
'AttendeesRemoved',
attendeesRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentAttendeesRemovedRequest.fromBuffer(value),
($0.AppointmentAttendeesRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentSanitisedRequest, $0.AppointmentSanitisedResponse>(
'Sanitised',
sanitised_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentSanitisedRequest.fromBuffer(value),
($0.AppointmentSanitisedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCustomFieldsUpdatedRequest, $0.AppointmentCustomFieldsUpdatedResponse>(
'CustomFieldsUpdated',
customFieldsUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCustomFieldsUpdatedRequest.fromBuffer(value),
($0.AppointmentCustomFieldsUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentRedetectedRequest, $0.AppointmentRedetectedResponse>(
'Redetected',
redetected_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentRedetectedRequest.fromBuffer(value),
($0.AppointmentRedetectedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentClaimAddedRequest, $0.AppointmentClaimAddedResponse>(
'ClaimAdded',
claimAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentClaimAddedRequest.fromBuffer(value),
($0.AppointmentClaimAddedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.AppointmentCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCreatedRequest> $request) async {
return created($call, await $request);
}
$async.Future<$0.AppointmentCreatedResponse> created($grpc.ServiceCall call, $0.AppointmentCreatedRequest request);
$async.Future<$0.AppointmentCanceledResponse> canceled_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCanceledRequest> $request) async {
return canceled($call, await $request);
}
$async.Future<$0.AppointmentCanceledResponse> canceled($grpc.ServiceCall call, $0.AppointmentCanceledRequest request);
$async.Future<$0.AppointmentDeletedResponse> deleted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentDeletedRequest> $request) async {
return deleted($call, await $request);
}
$async.Future<$0.AppointmentDeletedResponse> deleted($grpc.ServiceCall call, $0.AppointmentDeletedRequest request);
$async.Future<$0.AppointmentSlotUpdatedResponse> slotUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentSlotUpdatedRequest> $request) async {
return slotUpdated($call, await $request);
}
$async.Future<$0.AppointmentSlotUpdatedResponse> slotUpdated($grpc.ServiceCall call, $0.AppointmentSlotUpdatedRequest request);
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCommissionsUpdatedRequest> $request) async {
return commissionsUpdated($call, await $request);
}
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($grpc.ServiceCall call, $0.AppointmentCommissionsUpdatedRequest request);
$async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentReasonUpdatedRequest> $request) async {
return reasonUpdated($call, await $request);
}
$async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated($grpc.ServiceCall call, $0.AppointmentReasonUpdatedRequest request);
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async {
return carrierInformationUpdated($call, await $request);
}
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($grpc.ServiceCall call, $0.AppointmentCarrierInformationUpdatedRequest request);
$async.Future<$0.AppointmentCarrierExpectedResponse> carrierExpected_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierExpectedRequest> $request) async {
return carrierExpected($call, await $request);
}
$async.Future<$0.AppointmentCarrierExpectedResponse> carrierExpected($grpc.ServiceCall call, $0.AppointmentCarrierExpectedRequest request);
$async.Future<$0.AppointmentAllocationErrorResponse> allocationError_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAllocationErrorRequest> $request) async {
return allocationError($call, await $request);
}
$async.Future<$0.AppointmentAllocationErrorResponse> allocationError($grpc.ServiceCall call, $0.AppointmentAllocationErrorRequest request);
$async.Future<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAllocationConfirmedRequest> $request) async {
return allocationConfirmed($call, await $request);
}
$async.Future<$0.AppointmentAllocationConfirmedResponse> allocationConfirmed($grpc.ServiceCall call, $0.AppointmentAllocationConfirmedRequest request);
$async.Future<$0.AppointmentCarrierArrivedResponse> carrierArrived_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierArrivedRequest> $request) async {
return carrierArrived($call, await $request);
}
$async.Future<$0.AppointmentCarrierArrivedResponse> carrierArrived($grpc.ServiceCall call, $0.AppointmentCarrierArrivedRequest request);
$async.Future<$0.AppointmentLoadingStartedResponse> loadingStarted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentLoadingStartedRequest> $request) async {
return loadingStarted($call, await $request);
}
$async.Future<$0.AppointmentLoadingStartedResponse> loadingStarted($grpc.ServiceCall call, $0.AppointmentLoadingStartedRequest request);
$async.Future<$0.AppointmentLoadingCompletedResponse> loadingCompleted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentLoadingCompletedRequest> $request) async {
return loadingCompleted($call, await $request);
}
$async.Future<$0.AppointmentLoadingCompletedResponse> loadingCompleted($grpc.ServiceCall call, $0.AppointmentLoadingCompletedRequest request);
$async.Future<$0.AppointmentUnloadingStartedResponse> unloadingStarted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentUnloadingStartedRequest> $request) async {
return unloadingStarted($call, await $request);
}
$async.Future<$0.AppointmentUnloadingStartedResponse> unloadingStarted($grpc.ServiceCall call, $0.AppointmentUnloadingStartedRequest request);
$async.Future<$0.AppointmentUnloadingCompletedResponse> unloadingCompleted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentUnloadingCompletedRequest> $request) async {
return unloadingCompleted($call, await $request);
}
$async.Future<$0.AppointmentUnloadingCompletedResponse> unloadingCompleted($grpc.ServiceCall call, $0.AppointmentUnloadingCompletedRequest request);
$async.Future<$0.AppointmentCarrierDepartedResponse> carrierDeparted_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierDepartedRequest> $request) async {
return carrierDeparted($call, await $request);
}
$async.Future<$0.AppointmentCarrierDepartedResponse> carrierDeparted($grpc.ServiceCall call, $0.AppointmentCarrierDepartedRequest request);
$async.Future<$0.AppointmentMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentMetaDataUpdatedRequest> $request) async {
return metaDataUpdated($call, await $request);
}
$async.Future<$0.AppointmentMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $0.AppointmentMetaDataUpdatedRequest request);
$async.Future<$0.AppointmentAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttachmentAddedRequest> $request) async {
return attachmentAdded($call, await $request);
}
$async.Future<$0.AppointmentAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $0.AppointmentAttachmentAddedRequest request);
$async.Future<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttachmentRemovedRequest> $request) async {
return attachmentRemoved($call, await $request);
}
$async.Future<$0.AppointmentAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $0.AppointmentAttachmentRemovedRequest request);
$async.Future<$0.AppointmentEmailsAddedResponse> emailsAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentEmailsAddedRequest> $request) async {
return emailsAdded($call, await $request);
}
$async.Future<$0.AppointmentEmailsAddedResponse> emailsAdded($grpc.ServiceCall call, $0.AppointmentEmailsAddedRequest request);
$async.Future<$0.AppointmentEmailsRemovedResponse> emailsRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentEmailsRemovedRequest> $request) async {
return emailsRemoved($call, await $request);
}
$async.Future<$0.AppointmentEmailsRemovedResponse> emailsRemoved($grpc.ServiceCall call, $0.AppointmentEmailsRemovedRequest request);
$async.Future<$0.AppointmentAttendeesAddedResponse> attendeesAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttendeesAddedRequest> $request) async {
return attendeesAdded($call, await $request);
}
$async.Future<$0.AppointmentAttendeesAddedResponse> attendeesAdded($grpc.ServiceCall call, $0.AppointmentAttendeesAddedRequest request);
$async.Future<$0.AppointmentAttendeesRemovedResponse> attendeesRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAttendeesRemovedRequest> $request) async {
return attendeesRemoved($call, await $request);
}
$async.Future<$0.AppointmentAttendeesRemovedResponse> attendeesRemoved($grpc.ServiceCall call, $0.AppointmentAttendeesRemovedRequest request);
$async.Future<$0.AppointmentSanitisedResponse> sanitised_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentSanitisedRequest> $request) async {
return sanitised($call, await $request);
}
$async.Future<$0.AppointmentSanitisedResponse> sanitised($grpc.ServiceCall call, $0.AppointmentSanitisedRequest request);
$async.Future<$0.AppointmentCustomFieldsUpdatedResponse> customFieldsUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCustomFieldsUpdatedRequest> $request) async {
return customFieldsUpdated($call, await $request);
}
$async.Future<$0.AppointmentCustomFieldsUpdatedResponse> customFieldsUpdated($grpc.ServiceCall call, $0.AppointmentCustomFieldsUpdatedRequest request);
$async.Future<$0.AppointmentRedetectedResponse> redetected_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentRedetectedRequest> $request) async {
return redetected($call, await $request);
}
$async.Future<$0.AppointmentRedetectedResponse> redetected($grpc.ServiceCall call, $0.AppointmentRedetectedRequest request);
$async.Future<$0.AppointmentClaimAddedResponse> claimAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentClaimAddedRequest> $request) async {
return claimAdded($call, await $request);
}
$async.Future<$0.AppointmentClaimAddedResponse> claimAdded($grpc.ServiceCall call, $0.AppointmentClaimAddedRequest request);
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,562 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentQuery.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'appointment.pb.dart' as $3;
import 'shared.pb.dart' as $1;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
class AppointmentByIdQuery extends $pb.GeneratedMessage {
factory AppointmentByIdQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.QueryEntityID>? iDs,
AppointmentQueryOptions? options,
}) {
final result = create();
if (header != null) result.header = header;
if (iDs != null) result.iDs.addAll(iDs);
if (options != null) result.options = options;
return result;
}
AppointmentByIdQuery._();
factory AppointmentByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.QueryEntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.QueryEntityID.create)
..aOM<AppointmentQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByIdQuery clone() => AppointmentByIdQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByIdQuery copyWith(void Function(AppointmentByIdQuery) updates) => super.copyWith((message) => updates(message as AppointmentByIdQuery)) as AppointmentByIdQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByIdQuery create() => AppointmentByIdQuery._();
@$core.override
AppointmentByIdQuery createEmptyInstance() => create();
static $pb.PbList<AppointmentByIdQuery> createRepeated() => $pb.PbList<AppointmentByIdQuery>();
@$core.pragma('dart2js:noInline')
static AppointmentByIdQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByIdQuery>(create);
static AppointmentByIdQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$1.QueryEntityID> get iDs => $_getList(1);
@$pb.TagNumber(3)
AppointmentQueryOptions get options => $_getN(2);
@$pb.TagNumber(3)
set options(AppointmentQueryOptions value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasOptions() => $_has(2);
@$pb.TagNumber(3)
void clearOptions() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentQueryOptions ensureOptions() => $_ensure(2);
}
class AppointmentByIdResult extends $pb.GeneratedMessage {
factory AppointmentByIdResult({
$1.ResultHeader? header,
$core.Iterable<$3.Appointment>? objects,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
return result;
}
AppointmentByIdResult._();
factory AppointmentByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$3.Appointment>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Appointment.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByIdResult clone() => AppointmentByIdResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByIdResult copyWith(void Function(AppointmentByIdResult) updates) => super.copyWith((message) => updates(message as AppointmentByIdResult)) as AppointmentByIdResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByIdResult create() => AppointmentByIdResult._();
@$core.override
AppointmentByIdResult createEmptyInstance() => create();
static $pb.PbList<AppointmentByIdResult> createRepeated() => $pb.PbList<AppointmentByIdResult>();
@$core.pragma('dart2js:noInline')
static AppointmentByIdResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByIdResult>(create);
static AppointmentByIdResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$3.Appointment> get objects => $_getList(1);
}
class AppointmentByFilterQuery extends $pb.GeneratedMessage {
factory AppointmentByFilterQuery({
$1.QueryProjectHeader? header,
$core.String? limitFilter,
$core.String? queryContext,
$core.Iterable<$1.BlockFilter>? blockFilters,
AppointmentQueryOptions? options,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
}) {
final result = create();
if (header != null) result.header = header;
if (limitFilter != null) result.limitFilter = limitFilter;
if (queryContext != null) result.queryContext = queryContext;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (options != null) result.options = options;
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
}
AppointmentByFilterQuery._();
factory AppointmentByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..pc<$1.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..aOM<AppointmentQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
..e<$1.EntityType>(8, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(9, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByFilterQuery clone() => AppointmentByFilterQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByFilterQuery copyWith(void Function(AppointmentByFilterQuery) updates) => super.copyWith((message) => updates(message as AppointmentByFilterQuery)) as AppointmentByFilterQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByFilterQuery create() => AppointmentByFilterQuery._();
@$core.override
AppointmentByFilterQuery createEmptyInstance() => create();
static $pb.PbList<AppointmentByFilterQuery> createRepeated() => $pb.PbList<AppointmentByFilterQuery>();
@$core.pragma('dart2js:noInline')
static AppointmentByFilterQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByFilterQuery>(create);
static AppointmentByFilterQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
/// Number of maximum result
@$pb.TagNumber(4)
$core.String get limitFilter => $_getSZ(1);
@$pb.TagNumber(4)
set limitFilter($core.String value) => $_setString(1, value);
@$pb.TagNumber(4)
$core.bool hasLimitFilter() => $_has(1);
@$pb.TagNumber(4)
void clearLimitFilter() => $_clearField(4);
@$pb.TagNumber(5)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(5)
set queryContext($core.String value) => $_setString(2, value);
@$pb.TagNumber(5)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(5)
void clearQueryContext() => $_clearField(5);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
@$pb.TagNumber(6)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
@$pb.TagNumber(7)
AppointmentQueryOptions get options => $_getN(4);
@$pb.TagNumber(7)
set options(AppointmentQueryOptions value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasOptions() => $_has(4);
@$pb.TagNumber(7)
void clearOptions() => $_clearField(7);
@$pb.TagNumber(7)
AppointmentQueryOptions ensureOptions() => $_ensure(4);
@$pb.TagNumber(8)
$1.EntityType get usageContextEntity => $_getN(5);
@$pb.TagNumber(8)
set usageContextEntity($1.EntityType value) => $_setField(8, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextEntity() => $_has(5);
@$pb.TagNumber(8)
void clearUsageContextEntity() => $_clearField(8);
@$pb.TagNumber(9)
$core.String get usageContextPath => $_getSZ(6);
@$pb.TagNumber(9)
set usageContextPath($core.String value) => $_setString(6, value);
@$pb.TagNumber(9)
$core.bool hasUsageContextPath() => $_has(6);
@$pb.TagNumber(9)
void clearUsageContextPath() => $_clearField(9);
}
class AppointmentByFilterResult extends $pb.GeneratedMessage {
factory AppointmentByFilterResult({
$1.ResultHeader? header,
$core.Iterable<$3.Appointment>? objects,
$core.String? queryContext,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
if (queryContext != null) result.queryContext = queryContext;
return result;
}
AppointmentByFilterResult._();
factory AppointmentByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$3.Appointment>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Appointment.create)
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByFilterResult clone() => AppointmentByFilterResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByFilterResult copyWith(void Function(AppointmentByFilterResult) updates) => super.copyWith((message) => updates(message as AppointmentByFilterResult)) as AppointmentByFilterResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByFilterResult create() => AppointmentByFilterResult._();
@$core.override
AppointmentByFilterResult createEmptyInstance() => create();
static $pb.PbList<AppointmentByFilterResult> createRepeated() => $pb.PbList<AppointmentByFilterResult>();
@$core.pragma('dart2js:noInline')
static AppointmentByFilterResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByFilterResult>(create);
static AppointmentByFilterResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$3.Appointment> get objects => $_getList(1);
@$pb.TagNumber(3)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(3)
set queryContext($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(3)
void clearQueryContext() => $_clearField(3);
}
class AppointmentQueryOptions extends $pb.GeneratedMessage {
factory AppointmentQueryOptions({
$core.Iterable<$core.String>? only,
}) {
final result = create();
if (only != null) result.only.addAll(only);
return result;
}
AppointmentQueryOptions._();
factory AppointmentQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pPS(1, _omitFieldNames ? '' : 'Only', protoName: 'Only')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentQueryOptions clone() => AppointmentQueryOptions()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentQueryOptions copyWith(void Function(AppointmentQueryOptions) updates) => super.copyWith((message) => updates(message as AppointmentQueryOptions)) as AppointmentQueryOptions;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentQueryOptions create() => AppointmentQueryOptions._();
@$core.override
AppointmentQueryOptions createEmptyInstance() => create();
static $pb.PbList<AppointmentQueryOptions> createRepeated() => $pb.PbList<AppointmentQueryOptions>();
@$core.pragma('dart2js:noInline')
static AppointmentQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentQueryOptions>(create);
static AppointmentQueryOptions? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$core.String> get only => $_getList(0);
}
class AppointmentByMatchQuery extends $pb.GeneratedMessage {
factory AppointmentByMatchQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.BlockFilter>? blockFilters,
$core.Iterable<$1.MatchField>? matchFields,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
}) {
final result = create();
if (header != null) result.header = header;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (matchFields != null) result.matchFields.addAll(matchFields);
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
}
AppointmentByMatchQuery._();
factory AppointmentByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..pc<$1.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $1.MatchField.create)
..e<$1.EntityType>(7, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(8, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByMatchQuery clone() => AppointmentByMatchQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByMatchQuery copyWith(void Function(AppointmentByMatchQuery) updates) => super.copyWith((message) => updates(message as AppointmentByMatchQuery)) as AppointmentByMatchQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByMatchQuery create() => AppointmentByMatchQuery._();
@$core.override
AppointmentByMatchQuery createEmptyInstance() => create();
static $pb.PbList<AppointmentByMatchQuery> createRepeated() => $pb.PbList<AppointmentByMatchQuery>();
@$core.pragma('dart2js:noInline')
static AppointmentByMatchQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByMatchQuery>(create);
static AppointmentByMatchQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
@$pb.TagNumber(5)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(1);
/// MatchField list structure, for FindMatching query
@$pb.TagNumber(6)
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
@$pb.TagNumber(7)
$1.EntityType get usageContextEntity => $_getN(3);
@$pb.TagNumber(7)
set usageContextEntity($1.EntityType value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasUsageContextEntity() => $_has(3);
@$pb.TagNumber(7)
void clearUsageContextEntity() => $_clearField(7);
@$pb.TagNumber(8)
$core.String get usageContextPath => $_getSZ(4);
@$pb.TagNumber(8)
set usageContextPath($core.String value) => $_setString(4, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextPath() => $_has(4);
@$pb.TagNumber(8)
void clearUsageContextPath() => $_clearField(8);
}
class AppointmentByMatchResult extends $pb.GeneratedMessage {
factory AppointmentByMatchResult({
$core.Iterable<$1.MatchFieldResult>? matchResults,
}) {
final result = create();
if (matchResults != null) result.matchResults.addAll(matchResults);
return result;
}
AppointmentByMatchResult._();
factory AppointmentByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$1.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $1.MatchFieldResult.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByMatchResult clone() => AppointmentByMatchResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentByMatchResult copyWith(void Function(AppointmentByMatchResult) updates) => super.copyWith((message) => updates(message as AppointmentByMatchResult)) as AppointmentByMatchResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentByMatchResult create() => AppointmentByMatchResult._();
@$core.override
AppointmentByMatchResult createEmptyInstance() => create();
static $pb.PbList<AppointmentByMatchResult> createRepeated() => $pb.PbList<AppointmentByMatchResult>();
@$core.pragma('dart2js:noInline')
static AppointmentByMatchResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentByMatchResult>(create);
static AppointmentByMatchResult? _defaultInstance;
@$pb.TagNumber(2)
$pb.PbList<$1.MatchFieldResult> get matchResults => $_getList(0);
}
class CrossFindAppointmentResult extends $pb.GeneratedMessage {
factory CrossFindAppointmentResult({
$core.Iterable<$3.Appointment>? objects,
$1.ResultHeader? header,
$core.String? queryContext,
}) {
final result = create();
if (objects != null) result.objects.addAll(objects);
if (header != null) result.header = header;
if (queryContext != null) result.queryContext = queryContext;
return result;
}
CrossFindAppointmentResult._();
factory CrossFindAppointmentResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory CrossFindAppointmentResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CrossFindAppointmentResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$3.Appointment>(1, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Appointment.create)
..aOM<$1.ResultHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..aOS(3, _omitFieldNames ? '' : 'QueryContext', protoName: 'QueryContext')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CrossFindAppointmentResult clone() => CrossFindAppointmentResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
CrossFindAppointmentResult copyWith(void Function(CrossFindAppointmentResult) updates) => super.copyWith((message) => updates(message as CrossFindAppointmentResult)) as CrossFindAppointmentResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static CrossFindAppointmentResult create() => CrossFindAppointmentResult._();
@$core.override
CrossFindAppointmentResult createEmptyInstance() => create();
static $pb.PbList<CrossFindAppointmentResult> createRepeated() => $pb.PbList<CrossFindAppointmentResult>();
@$core.pragma('dart2js:noInline')
static CrossFindAppointmentResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CrossFindAppointmentResult>(create);
static CrossFindAppointmentResult? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$3.Appointment> get objects => $_getList(0);
@$pb.TagNumber(2)
$1.ResultHeader get header => $_getN(1);
@$pb.TagNumber(2)
set header($1.ResultHeader value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasHeader() => $_has(1);
@$pb.TagNumber(2)
void clearHeader() => $_clearField(2);
@$pb.TagNumber(2)
$1.ResultHeader ensureHeader() => $_ensure(1);
@$pb.TagNumber(3)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(3)
set queryContext($core.String value) => $_setString(2, value);
@$pb.TagNumber(3)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(3)
void clearQueryContext() => $_clearField(3);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentQuery.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names

View File

@@ -1,300 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentQuery.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:async' as $async;
import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'appointmentQuery.pb.dart' as $0;
import 'clickhouse.pb.dart' as $2;
import 'shared.pb.dart' as $1;
export 'appointmentQuery.pb.dart';
@$pb.GrpcServiceName('api.AppointmentQuery')
class AppointmentQueryClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AppointmentQueryClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.AppointmentByIdResult> getByIds($0.AppointmentByIdQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByIdResult> getByIdsMine($0.AppointmentByIdQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getByIdsMine, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByFilterResult> find($0.AppointmentByFilterQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$find, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByMatchResult> findMatchingFieldValues($0.AppointmentByMatchQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
}
$grpc.ResponseFuture<$1.ElementByMatchResult> findMatchingFieldElements($1.ElementByMatchQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
}
$grpc.ResponseFuture<$1.ExtractResult> extract($1.ExtractQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$extract, request, options: options);
}
$grpc.ResponseFuture<$1.ExtractResult> crossExtract($1.CrossExtractQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$crossExtract, request, options: options);
}
$grpc.ResponseFuture<$2.GetKPIDataResult> getKPIData($2.GetKPIDataQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getKPIData, request, options: options);
}
$grpc.ResponseFuture<$1.CountLinesResult> countLines($1.CountLinesQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$countLines, request, options: options);
}
$grpc.ResponseFuture<$0.CrossFindAppointmentResult> crossFind($1.CrossFindQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$crossFind, request, options: options);
}
$grpc.ResponseFuture<$1.CrossFindByMatchResult> crossFindMatchingFieldValues($1.CrossFindByMatchQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$crossFindMatchingFieldValues, request, options: options);
}
$grpc.ResponseFuture<$1.ElementByMatchResult> crossFindMatchingFieldElements($1.CrossFindElementByMatchQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$crossFindMatchingFieldElements, request, options: options);
}
// method descriptors
static final _$getByIds = $grpc.ClientMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'/api.AppointmentQuery/GetByIds',
($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer);
static final _$getByIdsMine = $grpc.ClientMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'/api.AppointmentQuery/GetByIdsMine',
($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer);
static final _$find = $grpc.ClientMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'/api.AppointmentQuery/Find',
($0.AppointmentByFilterQuery value) => value.writeToBuffer(),
$0.AppointmentByFilterResult.fromBuffer);
static final _$findMatchingFieldValues = $grpc.ClientMethod<$0.AppointmentByMatchQuery, $0.AppointmentByMatchResult>(
'/api.AppointmentQuery/FindMatchingFieldValues',
($0.AppointmentByMatchQuery value) => value.writeToBuffer(),
$0.AppointmentByMatchResult.fromBuffer);
static final _$findMatchingFieldElements = $grpc.ClientMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
'/api.AppointmentQuery/FindMatchingFieldElements',
($1.ElementByMatchQuery value) => value.writeToBuffer(),
$1.ElementByMatchResult.fromBuffer);
static final _$extract = $grpc.ClientMethod<$1.ExtractQuery, $1.ExtractResult>(
'/api.AppointmentQuery/Extract',
($1.ExtractQuery value) => value.writeToBuffer(),
$1.ExtractResult.fromBuffer);
static final _$crossExtract = $grpc.ClientMethod<$1.CrossExtractQuery, $1.ExtractResult>(
'/api.AppointmentQuery/CrossExtract',
($1.CrossExtractQuery value) => value.writeToBuffer(),
$1.ExtractResult.fromBuffer);
static final _$getKPIData = $grpc.ClientMethod<$2.GetKPIDataQuery, $2.GetKPIDataResult>(
'/api.AppointmentQuery/GetKPIData',
($2.GetKPIDataQuery value) => value.writeToBuffer(),
$2.GetKPIDataResult.fromBuffer);
static final _$countLines = $grpc.ClientMethod<$1.CountLinesQuery, $1.CountLinesResult>(
'/api.AppointmentQuery/CountLines',
($1.CountLinesQuery value) => value.writeToBuffer(),
$1.CountLinesResult.fromBuffer);
static final _$crossFind = $grpc.ClientMethod<$1.CrossFindQuery, $0.CrossFindAppointmentResult>(
'/api.AppointmentQuery/CrossFind',
($1.CrossFindQuery value) => value.writeToBuffer(),
$0.CrossFindAppointmentResult.fromBuffer);
static final _$crossFindMatchingFieldValues = $grpc.ClientMethod<$1.CrossFindByMatchQuery, $1.CrossFindByMatchResult>(
'/api.AppointmentQuery/CrossFindMatchingFieldValues',
($1.CrossFindByMatchQuery value) => value.writeToBuffer(),
$1.CrossFindByMatchResult.fromBuffer);
static final _$crossFindMatchingFieldElements = $grpc.ClientMethod<$1.CrossFindElementByMatchQuery, $1.ElementByMatchResult>(
'/api.AppointmentQuery/CrossFindMatchingFieldElements',
($1.CrossFindElementByMatchQuery value) => value.writeToBuffer(),
$1.ElementByMatchResult.fromBuffer);
}
@$pb.GrpcServiceName('api.AppointmentQuery')
abstract class AppointmentQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.AppointmentQuery';
AppointmentQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'GetByIdsMine',
getByIdsMine_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'Find',
find_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByFilterQuery.fromBuffer(value),
($0.AppointmentByFilterResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByMatchQuery, $0.AppointmentByMatchResult>(
'FindMatchingFieldValues',
findMatchingFieldValues_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByMatchQuery.fromBuffer(value),
($0.AppointmentByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
'FindMatchingFieldElements',
findMatchingFieldElements_Pre,
false,
false,
($core.List<$core.int> value) => $1.ElementByMatchQuery.fromBuffer(value),
($1.ElementByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ExtractQuery, $1.ExtractResult>(
'Extract',
extract_Pre,
false,
false,
($core.List<$core.int> value) => $1.ExtractQuery.fromBuffer(value),
($1.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CrossExtractQuery, $1.ExtractResult>(
'CrossExtract',
crossExtract_Pre,
false,
false,
($core.List<$core.int> value) => $1.CrossExtractQuery.fromBuffer(value),
($1.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$2.GetKPIDataQuery, $2.GetKPIDataResult>(
'GetKPIData',
getKPIData_Pre,
false,
false,
($core.List<$core.int> value) => $2.GetKPIDataQuery.fromBuffer(value),
($2.GetKPIDataResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CountLinesQuery, $1.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
($1.CountLinesResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CrossFindQuery, $0.CrossFindAppointmentResult>(
'CrossFind',
crossFind_Pre,
false,
false,
($core.List<$core.int> value) => $1.CrossFindQuery.fromBuffer(value),
($0.CrossFindAppointmentResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CrossFindByMatchQuery, $1.CrossFindByMatchResult>(
'CrossFindMatchingFieldValues',
crossFindMatchingFieldValues_Pre,
false,
false,
($core.List<$core.int> value) => $1.CrossFindByMatchQuery.fromBuffer(value),
($1.CrossFindByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CrossFindElementByMatchQuery, $1.ElementByMatchResult>(
'CrossFindMatchingFieldElements',
crossFindMatchingFieldElements_Pre,
false,
false,
($core.List<$core.int> value) => $1.CrossFindElementByMatchQuery.fromBuffer(value),
($1.ElementByMatchResult value) => value.writeToBuffer()));
}
$async.Future<$0.AppointmentByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$0.AppointmentByIdResult> getByIds($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByIdResult> getByIdsMine_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByIdQuery> $request) async {
return getByIdsMine($call, await $request);
}
$async.Future<$0.AppointmentByIdResult> getByIdsMine($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByFilterQuery> $request) async {
return find($call, await $request);
}
$async.Future<$0.AppointmentByFilterResult> find($grpc.ServiceCall call, $0.AppointmentByFilterQuery request);
$async.Future<$0.AppointmentByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByMatchQuery> $request) async {
return findMatchingFieldValues($call, await $request);
}
$async.Future<$0.AppointmentByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $0.AppointmentByMatchQuery request);
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$1.ElementByMatchQuery> $request) async {
return findMatchingFieldElements($call, await $request);
}
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $1.ElementByMatchQuery request);
$async.Future<$1.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$1.ExtractQuery> $request) async {
return extract($call, await $request);
}
$async.Future<$1.ExtractResult> extract($grpc.ServiceCall call, $1.ExtractQuery request);
$async.Future<$1.ExtractResult> crossExtract_Pre($grpc.ServiceCall $call, $async.Future<$1.CrossExtractQuery> $request) async {
return crossExtract($call, await $request);
}
$async.Future<$1.ExtractResult> crossExtract($grpc.ServiceCall call, $1.CrossExtractQuery request);
$async.Future<$2.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$2.GetKPIDataQuery> $request) async {
return getKPIData($call, await $request);
}
$async.Future<$2.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $2.GetKPIDataQuery request);
$async.Future<$1.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$1.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
$async.Future<$0.CrossFindAppointmentResult> crossFind_Pre($grpc.ServiceCall $call, $async.Future<$1.CrossFindQuery> $request) async {
return crossFind($call, await $request);
}
$async.Future<$0.CrossFindAppointmentResult> crossFind($grpc.ServiceCall call, $1.CrossFindQuery request);
$async.Future<$1.CrossFindByMatchResult> crossFindMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$1.CrossFindByMatchQuery> $request) async {
return crossFindMatchingFieldValues($call, await $request);
}
$async.Future<$1.CrossFindByMatchResult> crossFindMatchingFieldValues($grpc.ServiceCall call, $1.CrossFindByMatchQuery request);
$async.Future<$1.ElementByMatchResult> crossFindMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$1.CrossFindElementByMatchQuery> $request) async {
return crossFindMatchingFieldElements($call, await $request);
}
$async.Future<$1.ElementByMatchResult> crossFindMatchingFieldElements($grpc.ServiceCall call, $1.CrossFindElementByMatchQuery request);
}

View File

@@ -1,173 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from appointmentQuery.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use appointmentByIdQueryDescriptor instead')
const AppointmentByIdQuery$json = {
'1': 'AppointmentByIdQuery',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.QueryEntityID', '8': {}, '10': 'IDs'},
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentQueryOptions', '10': 'Options'},
],
'7': {},
};
/// Descriptor for `AppointmentByIdQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByIdQueryDescriptor = $convert.base64Decode(
'ChRBcHBvaW50bWVudEJ5SWRRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZW'
'N0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIvCgNJRHMYAiADKAsyEi5hcGkuUXVlcnlFbnRp'
'dHlJREIJuoEBBZIBAggBUgNJRHMSNgoHT3B0aW9ucxgDIAEoCzIcLmFwaS5BcHBvaW50bWVudF'
'F1ZXJ5T3B0aW9uc1IHT3B0aW9uczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
@$core.Deprecated('Use appointmentByIdResultDescriptor instead')
const AppointmentByIdResult$json = {
'1': 'AppointmentByIdResult',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Appointment', '10': 'Objects'},
],
'7': {},
};
/// Descriptor for `AppointmentByIdResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByIdResultDescriptor = $convert.base64Decode(
'ChVBcHBvaW50bWVudEJ5SWRSZXN1bHQSKQoGSGVhZGVyGAEgASgLMhEuYXBpLlJlc3VsdEhlYW'
'RlclIGSGVhZGVyEioKB09iamVjdHMYAiADKAsyEC5hcGkuQXBwb2ludG1lbnRSB09iamVjdHM6'
'D5JBAgoAorsYBlJlc3VsdA==');
@$core.Deprecated('Use appointmentByFilterQueryDescriptor instead')
const AppointmentByFilterQuery$json = {
'1': 'AppointmentByFilterQuery',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
{'1': 'BlockFilters', '3': 6, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'Options', '3': 7, '4': 1, '5': 11, '6': '.api.AppointmentQueryOptions', '10': 'Options'},
{'1': 'UsageContextEntity', '3': 8, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `AppointmentByFilterQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByFilterQueryDescriptor = $convert.base64Decode(
'ChhBcHBvaW50bWVudEJ5RmlsdGVyUXVlcnkSPQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UH'
'JvamVjdEhlYWRlckIMkkEAuoEBBYoBAhABUgZIZWFkZXISRgoLbGltaXRGaWx0ZXIYBCABKAlC'
'JJJBITIYTnVtYmVyIG9mIG1heGltdW0gcmVzdWx0SgUiNTAwIlILbGltaXRGaWx0ZXISIgoMcX'
'VlcnlDb250ZXh0GAUgASgJUgxxdWVyeUNvbnRleHQSNAoMQmxvY2tGaWx0ZXJzGAYgAygLMhAu'
'YXBpLkJsb2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSNgoHT3B0aW9ucxgHIAEoCzIcLmFwaS5BcH'
'BvaW50bWVudFF1ZXJ5T3B0aW9uc1IHT3B0aW9ucxLDAgoSVXNhZ2VDb250ZXh0RW50aXR5GAgg'
'ASgOMg8uYXBpLkVudGl0eVR5cGVCgQKSQf0BMlxPcHRpb25hbCA6IEVudGl0eSB0byBhcHBseS'
'B0aGUgcmVzdHJpY3Rpb24gcnVsZXMgKG9uIHRoZSBwYXRoIGRlZmluZWQgd2l0aCBVc2FnZUNv'
'bnRleHRQYXRoKUqcASJGb3IgQWN0b3IsIHRvIGxpbWl0IHRoZSByZXN1bHRzIGFjY29yZGluZy'
'B0byBPcmRlciBTaGlwRnJvbSByZXN0cmljdGlvbiBydWxlcywgZGVmaW5lIFVzYWdlQ29udGV4'
'dEVudGl0eSB0byBPcmRlciBhbmQgVXNhZ2VDb250ZXh0UGF0aCB0byBQYXlsb2FkLlNoaXBGcm'
'9tIlISVXNhZ2VDb250ZXh0RW50aXR5EoQBChBVc2FnZUNvbnRleHRQYXRoGAkgASgJQliSQVUy'
'U09wdGlvbmFsIDogUGF0aCBvZiByZXN0cmljdGlvbiBydWxlIHRvIGFwcGx5IChVc2FnZUNvbn'
'RleHRFbnRpdHkgc2hvdWxkIGJlIGRlZmluZWQpUhBVc2FnZUNvbnRleHRQYXRoOg6SQQsKCdIB'
'BkhlYWRlcg==');
@$core.Deprecated('Use appointmentByFilterResultDescriptor instead')
const AppointmentByFilterResult$json = {
'1': 'AppointmentByFilterResult',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Appointment', '10': 'Objects'},
{'1': 'queryContext', '3': 3, '4': 1, '5': 9, '10': 'queryContext'},
],
};
/// Descriptor for `AppointmentByFilterResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByFilterResultDescriptor = $convert.base64Decode(
'ChlBcHBvaW50bWVudEJ5RmlsdGVyUmVzdWx0EikKBkhlYWRlchgBIAEoCzIRLmFwaS5SZXN1bH'
'RIZWFkZXJSBkhlYWRlchIqCgdPYmplY3RzGAIgAygLMhAuYXBpLkFwcG9pbnRtZW50UgdPYmpl'
'Y3RzEiIKDHF1ZXJ5Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
@$core.Deprecated('Use appointmentQueryOptionsDescriptor instead')
const AppointmentQueryOptions$json = {
'1': 'AppointmentQueryOptions',
'2': [
{'1': 'Only', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'Only'},
],
};
/// Descriptor for `AppointmentQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentQueryOptionsDescriptor = $convert.base64Decode(
'ChdBcHBvaW50bWVudFF1ZXJ5T3B0aW9ucxKfAQoET25seRgBIAMoCUKKAZJBhgEyUk9wdGlvbm'
'FsIDogTGlzdCBvZiBmaWVsZHMgdG8gaW5jbHVkZSBpbiB0aGUgcmVzcG9uc2UgZm9yIGVhY2gg'
'cmV0dXJuZWQgQXBwb2ludG1lbnRKMFsiSUQuUmVmSUQiLCAiUGF5bG9hZC5OYW1lIiwgIlBheW'
'xvYWQuTGluZXMuSUQiXVIET25seQ==');
@$core.Deprecated('Use appointmentByMatchQueryDescriptor instead')
const AppointmentByMatchQuery$json = {
'1': 'AppointmentByMatchQuery',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'BlockFilters', '3': 5, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'MatchFields', '3': 6, '4': 3, '5': 11, '6': '.api.MatchField', '8': {}, '10': 'MatchFields'},
{'1': 'UsageContextEntity', '3': 7, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `AppointmentByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByMatchQueryDescriptor = $convert.base64Decode(
'ChdBcHBvaW50bWVudEJ5TWF0Y2hRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm'
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchI0CgxCbG9ja0ZpbHRlcnMYBSADKAsyEC5h'
'cGkuQmxvY2tGaWx0ZXJSDEJsb2NrRmlsdGVycxJpCgtNYXRjaEZpZWxkcxgGIAMoCzIPLmFwaS'
'5NYXRjaEZpZWxkQjaSQTMyMU1hdGNoRmllbGQgbGlzdCBzdHJ1Y3R1cmUsIGZvciBGaW5kTWF0'
'Y2hpbmcgcXVlcnlSC01hdGNoRmllbGRzEsMCChJVc2FnZUNvbnRleHRFbnRpdHkYByABKA4yDy'
'5hcGkuRW50aXR5VHlwZUKBApJB/QEyXE9wdGlvbmFsIDogRW50aXR5IHRvIGFwcGx5IHRoZSBy'
'ZXN0cmljdGlvbiBydWxlcyAob24gdGhlIHBhdGggZGVmaW5lZCB3aXRoIFVzYWdlQ29udGV4dF'
'BhdGgpSpwBIkZvciBBY3RvciwgdG8gbGltaXQgdGhlIHJlc3VsdHMgYWNjb3JkaW5nIHRvIE9y'
'ZGVyIFNoaXBGcm9tIHJlc3RyaWN0aW9uIHJ1bGVzLCBkZWZpbmUgVXNhZ2VDb250ZXh0RW50aX'
'R5IHRvIE9yZGVyIGFuZCBVc2FnZUNvbnRleHRQYXRoIHRvIFBheWxvYWQuU2hpcEZyb20iUhJV'
'c2FnZUNvbnRleHRFbnRpdHkShAEKEFVzYWdlQ29udGV4dFBhdGgYCCABKAlCWJJBVTJTT3B0aW'
'9uYWwgOiBQYXRoIG9mIHJlc3RyaWN0aW9uIHJ1bGUgdG8gYXBwbHkgKFVzYWdlQ29udGV4dEVu'
'dGl0eSBzaG91bGQgYmUgZGVmaW5lZClSEFVzYWdlQ29udGV4dFBhdGg6DpJBCwoJ0gEGSGVhZG'
'Vy');
@$core.Deprecated('Use appointmentByMatchResultDescriptor instead')
const AppointmentByMatchResult$json = {
'1': 'AppointmentByMatchResult',
'2': [
{'1': 'MatchResults', '3': 2, '4': 3, '5': 11, '6': '.api.MatchFieldResult', '10': 'MatchResults'},
],
};
/// Descriptor for `AppointmentByMatchResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentByMatchResultDescriptor = $convert.base64Decode(
'ChhBcHBvaW50bWVudEJ5TWF0Y2hSZXN1bHQSOQoMTWF0Y2hSZXN1bHRzGAIgAygLMhUuYXBpLk'
'1hdGNoRmllbGRSZXN1bHRSDE1hdGNoUmVzdWx0cw==');
@$core.Deprecated('Use crossFindAppointmentResultDescriptor instead')
const CrossFindAppointmentResult$json = {
'1': 'CrossFindAppointmentResult',
'2': [
{'1': 'Objects', '3': 1, '4': 3, '5': 11, '6': '.api.Appointment', '10': 'Objects'},
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
{'1': 'QueryContext', '3': 3, '4': 1, '5': 9, '10': 'QueryContext'},
],
};
/// Descriptor for `CrossFindAppointmentResult`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List crossFindAppointmentResultDescriptor = $convert.base64Decode(
'ChpDcm9zc0ZpbmRBcHBvaW50bWVudFJlc3VsdBIqCgdPYmplY3RzGAEgAygLMhAuYXBpLkFwcG'
'9pbnRtZW50UgdPYmplY3RzEikKBkhlYWRlchgCIAEoCzIRLmFwaS5SZXN1bHRIZWFkZXJSBkhl'
'YWRlchIiCgxRdWVyeUNvbnRleHQYAyABKAlSDFF1ZXJ5Q29udGV4dA==');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from attachmentType.proto.
// Generated code. Do not modify.
// source: attachmentType.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from attachmentType.proto.
// Generated code. Do not modify.
// source: attachmentType.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,80 +15,66 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'attachmentType.pb.dart' as $0;
import 'attachmentType.pb.dart' as $14;
export 'attachmentType.pb.dart';
@$pb.GrpcServiceName('api.AttachmentTypeService')
class AttachmentTypeServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$create = $grpc.ClientMethod<$14.CreateAttachmentTypeRequest, $14.CreateAttachmentTypeResponse>(
'/api.AttachmentTypeService/Create',
($14.CreateAttachmentTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.CreateAttachmentTypeResponse.fromBuffer(value));
static final _$get = $grpc.ClientMethod<$14.GetAttachmentTypeRequest, $14.GetAttachmentTypeResponse>(
'/api.AttachmentTypeService/Get',
($14.GetAttachmentTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.GetAttachmentTypeResponse.fromBuffer(value));
static final _$list = $grpc.ClientMethod<$14.ListAttachmentTypeRequest, $14.ListAttachmentTypeResponse>(
'/api.AttachmentTypeService/List',
($14.ListAttachmentTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.ListAttachmentTypeResponse.fromBuffer(value));
static final _$update = $grpc.ClientMethod<$14.UpdateAttachmentTypeRequest, $14.UpdateAttachmentTypeResponse>(
'/api.AttachmentTypeService/Update',
($14.UpdateAttachmentTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.UpdateAttachmentTypeResponse.fromBuffer(value));
static final _$delete = $grpc.ClientMethod<$14.DeleteAttachmentTypeRequest, $14.DeleteAttachmentTypeResponse>(
'/api.AttachmentTypeService/Delete',
($14.DeleteAttachmentTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.DeleteAttachmentTypeResponse.fromBuffer(value));
static final _$deleteAll = $grpc.ClientMethod<$14.DeleteAllAttachmentsTypeRequest, $14.DeleteAllAttachmentsTypeResponse>(
'/api.AttachmentTypeService/DeleteAll',
($14.DeleteAllAttachmentsTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $14.DeleteAllAttachmentsTypeResponse.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AttachmentTypeServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
AttachmentTypeServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.CreateAttachmentTypeResponse> create($0.CreateAttachmentTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.CreateAttachmentTypeResponse> create($14.CreateAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$create, request, options: options);
}
$grpc.ResponseFuture<$0.GetAttachmentTypeResponse> get($0.GetAttachmentTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.GetAttachmentTypeResponse> get($14.GetAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$get, request, options: options);
}
$grpc.ResponseFuture<$0.ListAttachmentTypeResponse> list($0.ListAttachmentTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.ListAttachmentTypeResponse> list($14.ListAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$list, request, options: options);
}
$grpc.ResponseFuture<$0.UpdateAttachmentTypeResponse> update($0.UpdateAttachmentTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.UpdateAttachmentTypeResponse> update($14.UpdateAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$update, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAttachmentTypeResponse> delete($0.DeleteAttachmentTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.DeleteAttachmentTypeResponse> delete($14.DeleteAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$delete, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllAttachmentsTypeResponse> deleteAll($0.DeleteAllAttachmentsTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$14.DeleteAllAttachmentsTypeResponse> deleteAll($14.DeleteAllAttachmentsTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteAll, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAttachmentsTypeForResourceResponse> deleteAttachmentsTypeForResource($0.DeleteAttachmentsTypeForResourceRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAttachmentsTypeForResource, request, options: options);
}
// method descriptors
static final _$create = $grpc.ClientMethod<$0.CreateAttachmentTypeRequest, $0.CreateAttachmentTypeResponse>(
'/api.AttachmentTypeService/Create',
($0.CreateAttachmentTypeRequest value) => value.writeToBuffer(),
$0.CreateAttachmentTypeResponse.fromBuffer);
static final _$get = $grpc.ClientMethod<$0.GetAttachmentTypeRequest, $0.GetAttachmentTypeResponse>(
'/api.AttachmentTypeService/Get',
($0.GetAttachmentTypeRequest value) => value.writeToBuffer(),
$0.GetAttachmentTypeResponse.fromBuffer);
static final _$list = $grpc.ClientMethod<$0.ListAttachmentTypeRequest, $0.ListAttachmentTypeResponse>(
'/api.AttachmentTypeService/List',
($0.ListAttachmentTypeRequest value) => value.writeToBuffer(),
$0.ListAttachmentTypeResponse.fromBuffer);
static final _$update = $grpc.ClientMethod<$0.UpdateAttachmentTypeRequest, $0.UpdateAttachmentTypeResponse>(
'/api.AttachmentTypeService/Update',
($0.UpdateAttachmentTypeRequest value) => value.writeToBuffer(),
$0.UpdateAttachmentTypeResponse.fromBuffer);
static final _$delete = $grpc.ClientMethod<$0.DeleteAttachmentTypeRequest, $0.DeleteAttachmentTypeResponse>(
'/api.AttachmentTypeService/Delete',
($0.DeleteAttachmentTypeRequest value) => value.writeToBuffer(),
$0.DeleteAttachmentTypeResponse.fromBuffer);
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllAttachmentsTypeRequest, $0.DeleteAllAttachmentsTypeResponse>(
'/api.AttachmentTypeService/DeleteAll',
($0.DeleteAllAttachmentsTypeRequest value) => value.writeToBuffer(),
$0.DeleteAllAttachmentsTypeResponse.fromBuffer);
static final _$deleteAttachmentsTypeForResource = $grpc.ClientMethod<$0.DeleteAttachmentsTypeForResourceRequest, $0.DeleteAttachmentsTypeForResourceResponse>(
'/api.AttachmentTypeService/DeleteAttachmentsTypeForResource',
($0.DeleteAttachmentsTypeForResourceRequest value) => value.writeToBuffer(),
$0.DeleteAttachmentsTypeForResourceResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.AttachmentTypeService')
@@ -97,97 +82,78 @@ abstract class AttachmentTypeServiceBase extends $grpc.Service {
$core.String get $name => 'api.AttachmentTypeService';
AttachmentTypeServiceBase() {
$addMethod($grpc.ServiceMethod<$0.CreateAttachmentTypeRequest, $0.CreateAttachmentTypeResponse>(
$addMethod($grpc.ServiceMethod<$14.CreateAttachmentTypeRequest, $14.CreateAttachmentTypeResponse>(
'Create',
create_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateAttachmentTypeRequest.fromBuffer(value),
($0.CreateAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetAttachmentTypeRequest, $0.GetAttachmentTypeResponse>(
($core.List<$core.int> value) => $14.CreateAttachmentTypeRequest.fromBuffer(value),
($14.CreateAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$14.GetAttachmentTypeRequest, $14.GetAttachmentTypeResponse>(
'Get',
get_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAttachmentTypeRequest.fromBuffer(value),
($0.GetAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAttachmentTypeRequest, $0.ListAttachmentTypeResponse>(
($core.List<$core.int> value) => $14.GetAttachmentTypeRequest.fromBuffer(value),
($14.GetAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$14.ListAttachmentTypeRequest, $14.ListAttachmentTypeResponse>(
'List',
list_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAttachmentTypeRequest.fromBuffer(value),
($0.ListAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateAttachmentTypeRequest, $0.UpdateAttachmentTypeResponse>(
($core.List<$core.int> value) => $14.ListAttachmentTypeRequest.fromBuffer(value),
($14.ListAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$14.UpdateAttachmentTypeRequest, $14.UpdateAttachmentTypeResponse>(
'Update',
update_Pre,
false,
false,
($core.List<$core.int> value) => $0.UpdateAttachmentTypeRequest.fromBuffer(value),
($0.UpdateAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAttachmentTypeRequest, $0.DeleteAttachmentTypeResponse>(
($core.List<$core.int> value) => $14.UpdateAttachmentTypeRequest.fromBuffer(value),
($14.UpdateAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$14.DeleteAttachmentTypeRequest, $14.DeleteAttachmentTypeResponse>(
'Delete',
delete_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAttachmentTypeRequest.fromBuffer(value),
($0.DeleteAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllAttachmentsTypeRequest, $0.DeleteAllAttachmentsTypeResponse>(
($core.List<$core.int> value) => $14.DeleteAttachmentTypeRequest.fromBuffer(value),
($14.DeleteAttachmentTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$14.DeleteAllAttachmentsTypeRequest, $14.DeleteAllAttachmentsTypeResponse>(
'DeleteAll',
deleteAll_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllAttachmentsTypeRequest.fromBuffer(value),
($0.DeleteAllAttachmentsTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAttachmentsTypeForResourceRequest, $0.DeleteAttachmentsTypeForResourceResponse>(
'DeleteAttachmentsTypeForResource',
deleteAttachmentsTypeForResource_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAttachmentsTypeForResourceRequest.fromBuffer(value),
($0.DeleteAttachmentsTypeForResourceResponse value) => value.writeToBuffer()));
($core.List<$core.int> value) => $14.DeleteAllAttachmentsTypeRequest.fromBuffer(value),
($14.DeleteAllAttachmentsTypeResponse value) => value.writeToBuffer()));
}
$async.Future<$0.CreateAttachmentTypeResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateAttachmentTypeRequest> $request) async {
$async.Future<$14.CreateAttachmentTypeResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$14.CreateAttachmentTypeRequest> $request) async {
return create($call, await $request);
}
$async.Future<$0.CreateAttachmentTypeResponse> create($grpc.ServiceCall call, $0.CreateAttachmentTypeRequest request);
$async.Future<$0.GetAttachmentTypeResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAttachmentTypeRequest> $request) async {
$async.Future<$14.GetAttachmentTypeResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$14.GetAttachmentTypeRequest> $request) async {
return get($call, await $request);
}
$async.Future<$0.GetAttachmentTypeResponse> get($grpc.ServiceCall call, $0.GetAttachmentTypeRequest request);
$async.Future<$0.ListAttachmentTypeResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAttachmentTypeRequest> $request) async {
$async.Future<$14.ListAttachmentTypeResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$14.ListAttachmentTypeRequest> $request) async {
return list($call, await $request);
}
$async.Future<$0.ListAttachmentTypeResponse> list($grpc.ServiceCall call, $0.ListAttachmentTypeRequest request);
$async.Future<$0.UpdateAttachmentTypeResponse> update_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateAttachmentTypeRequest> $request) async {
$async.Future<$14.UpdateAttachmentTypeResponse> update_Pre($grpc.ServiceCall $call, $async.Future<$14.UpdateAttachmentTypeRequest> $request) async {
return update($call, await $request);
}
$async.Future<$0.UpdateAttachmentTypeResponse> update($grpc.ServiceCall call, $0.UpdateAttachmentTypeRequest request);
$async.Future<$0.DeleteAttachmentTypeResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAttachmentTypeRequest> $request) async {
$async.Future<$14.DeleteAttachmentTypeResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$14.DeleteAttachmentTypeRequest> $request) async {
return delete($call, await $request);
}
$async.Future<$0.DeleteAttachmentTypeResponse> delete($grpc.ServiceCall call, $0.DeleteAttachmentTypeRequest request);
$async.Future<$0.DeleteAllAttachmentsTypeResponse> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllAttachmentsTypeRequest> $request) async {
$async.Future<$14.DeleteAllAttachmentsTypeResponse> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$14.DeleteAllAttachmentsTypeRequest> $request) async {
return deleteAll($call, await $request);
}
$async.Future<$0.DeleteAllAttachmentsTypeResponse> deleteAll($grpc.ServiceCall call, $0.DeleteAllAttachmentsTypeRequest request);
$async.Future<$0.DeleteAttachmentsTypeForResourceResponse> deleteAttachmentsTypeForResource_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAttachmentsTypeForResourceRequest> $request) async {
return deleteAttachmentsTypeForResource($call, await $request);
}
$async.Future<$0.DeleteAttachmentsTypeForResourceResponse> deleteAttachmentsTypeForResource($grpc.ServiceCall call, $0.DeleteAttachmentsTypeForResourceRequest request);
$async.Future<$14.CreateAttachmentTypeResponse> create($grpc.ServiceCall call, $14.CreateAttachmentTypeRequest request);
$async.Future<$14.GetAttachmentTypeResponse> get($grpc.ServiceCall call, $14.GetAttachmentTypeRequest request);
$async.Future<$14.ListAttachmentTypeResponse> list($grpc.ServiceCall call, $14.ListAttachmentTypeRequest request);
$async.Future<$14.UpdateAttachmentTypeResponse> update($grpc.ServiceCall call, $14.UpdateAttachmentTypeRequest request);
$async.Future<$14.DeleteAttachmentTypeResponse> delete($grpc.ServiceCall call, $14.DeleteAttachmentTypeRequest request);
$async.Future<$14.DeleteAllAttachmentsTypeResponse> deleteAll($grpc.ServiceCall call, $14.DeleteAllAttachmentsTypeRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from attachmentType.proto.
// Generated code. Do not modify.
// source: attachmentType.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -23,19 +22,22 @@ const CreateAttachmentTypeRequest$json = {
{'1': 'Entity', '3': 3, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
{'1': 'Label', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Label'},
{'1': 'SharePolicy', '3': 5, '4': 1, '5': 14, '6': '.api.SharePolicy', '8': {}, '10': 'SharePolicy'},
{'1': 'ManagerRoles', '3': 6, '4': 3, '5': 9, '10': 'ManagerRoles'},
{'1': 'ViewerRoles', '3': 7, '4': 3, '5': 9, '10': 'ViewerRoles'},
],
'7': {},
};
/// Descriptor for `CreateAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAttachmentTypeRequestDescriptor = $convert.base64Decode(
'ChtDcmVhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJCCgRDb2RlGAIgASgJQi6SQRKK'
'AQ9eW2EtekEtWjAtOS1dKyS6gQEVchMQATIPXlthLXpBLVowLTktXSskUgRDb2RlEjIKBkVudG'
'l0eRgDIAEoDjIPLmFwaS5FbnRpdHlUeXBlQgm6gQEFggECEAFSBkVudGl0eRIeCgVMYWJlbBgE'
'IAEoCUIIuoEBBHICEAFSBUxhYmVsEj0KC1NoYXJlUG9saWN5GAUgASgOMhAuYXBpLlNoYXJlUG'
'9saWN5Qgm6gQEFggECEAFSC1NoYXJlUG9saWN5OjSSQTEKL9IBBkhlYWRlctIBBENvZGXSAQZF'
'bnRpdHnSAQVMYWJlbNIBC1NoYXJlUG9saWN5');
'ChtDcmVhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkEKBENvZGUYAiABKAlCLZJBEooB'
'D15bYS16QS1aMC05LV0rJPpCFXITEAEyD15bYS16QS1aMC05LV0rJFIEQ29kZRIxCgZFbnRpdH'
'kYAyABKA4yDy5hcGkuRW50aXR5VHlwZUII+kIFggECEAFSBkVudGl0eRIdCgVMYWJlbBgEIAEo'
'CUIH+kIEcgIQAVIFTGFiZWwSPAoLU2hhcmVQb2xpY3kYBSABKA4yEC5hcGkuU2hhcmVQb2xpY3'
'lCCPpCBYIBAhABUgtTaGFyZVBvbGljeRIiCgxNYW5hZ2VyUm9sZXMYBiADKAlSDE1hbmFnZXJS'
'b2xlcxIgCgtWaWV3ZXJSb2xlcxgHIAMoCVILVmlld2VyUm9sZXM6NJJBMQov0gEGSGVhZGVy0g'
'EEQ29kZdIBBkVudGl0edIBBUxhYmVs0gELU2hhcmVQb2xpY3k=');
@$core.Deprecated('Use createAttachmentTypeResponseDescriptor instead')
const CreateAttachmentTypeResponse$json = {
@@ -47,8 +49,8 @@ const CreateAttachmentTypeResponse$json = {
/// Descriptor for `CreateAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createAttachmentTypeResponseDescriptor = $convert.base64Decode(
'ChxDcmVhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkYKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgm6gQEFigECEAFSDkF0dGFjaG1lbnRUeXBl');
'ChxDcmVhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
@$core.Deprecated('Use getAttachmentTypeRequestDescriptor instead')
const GetAttachmentTypeRequest$json = {
@@ -79,12 +81,12 @@ const GetAttachmentTypeRequest$json = {
/// Descriptor for `GetAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAttachmentTypeRequestDescriptor = $convert.base64Decode(
'ChhHZXRBdHRhY2htZW50VHlwZVJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJACgRDb2RlGAIgASgJQiwYAZJBEYoB'
'Dl5bYS16QS1aMC05LV0quoEBEnIQMg5eW2EtekEtWjAtOS1dKlIEQ29kZRI0CgZFbnRpdHkYAy'
'ABKA4yDy5hcGkuRW50aXR5VHlwZUILGAG6gQEFggECEAFSBkVudGl0eRI6CgJJRBgEIAEoCUIq'
'kkERigEOXlthLXpBLVowLTktXSq6gQESchAyDl5bYS16QS1aMC05LV0qUgJJRDoekkEbChnSAQ'
'ZIZWFkZXLSAQRDb2Rl0gEGRW50aXR5');
'ChhHZXRBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkERigEO'
'XlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GAMgAS'
'gOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRI5CgJJRBgEIAEoCUIpkkER'
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSAklEOh6SQRsKGdIBBkhlYW'
'RlctIBBENvZGXSAQZFbnRpdHk=');
@$core.Deprecated('Use getAttachmentTypeResponseDescriptor instead')
const GetAttachmentTypeResponse$json = {
@@ -96,8 +98,8 @@ const GetAttachmentTypeResponse$json = {
/// Descriptor for `GetAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAttachmentTypeResponseDescriptor = $convert.base64Decode(
'ChlHZXRBdHRhY2htZW50VHlwZVJlc3BvbnNlEkYKDkF0dGFjaG1lbnRUeXBlGAEgASgLMhMuYX'
'BpLkF0dGFjaG1lbnRUeXBlQgm6gQEFigECEAFSDkF0dGFjaG1lbnRUeXBl');
'ChlHZXRBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMhMuYX'
'BpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
@$core.Deprecated('Use listAttachmentTypeRequestDescriptor instead')
const ListAttachmentTypeRequest$json = {
@@ -111,9 +113,9 @@ const ListAttachmentTypeRequest$json = {
/// Descriptor for `ListAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAttachmentTypeRequestDescriptor = $convert.base64Decode(
'ChlMaXN0QXR0YWNobWVudFR5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISMgoGRW50aXR5GAIgASgOMg8uYXBp'
'LkVudGl0eVR5cGVCCbqBAQWCAQIQAVIGRW50aXR5Og6SQQsKCdIBBkhlYWRlcg==');
'ChlMaXN0QXR0YWNobWVudFR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIxCgZFbnRpdHkYAiABKA4yDy5hcGku'
'RW50aXR5VHlwZUII+kIFggECEAFSBkVudGl0eToOkkELCgnSAQZIZWFkZXI=');
@$core.Deprecated('Use listAttachmentTypeResponseDescriptor instead')
const ListAttachmentTypeResponse$json = {
@@ -125,8 +127,8 @@ const ListAttachmentTypeResponse$json = {
/// Descriptor for `ListAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAttachmentTypeResponseDescriptor = $convert.base64Decode(
'ChpMaXN0QXR0YWNobWVudFR5cGVSZXNwb25zZRJICg9BdHRhY2htZW50VHlwZXMYASADKAsyEy'
'5hcGkuQXR0YWNobWVudFR5cGVCCbqBAQWSAQIIAVIPQXR0YWNobWVudFR5cGVz');
'ChpMaXN0QXR0YWNobWVudFR5cGVSZXNwb25zZRJHCg9BdHRhY2htZW50VHlwZXMYASADKAsyEy'
'5hcGkuQXR0YWNobWVudFR5cGVCCPpCBZIBAggBUg9BdHRhY2htZW50VHlwZXM=');
@$core.Deprecated('Use updateAttachmentTypeRequestDescriptor instead')
const UpdateAttachmentTypeRequest$json = {
@@ -153,20 +155,23 @@ const UpdateAttachmentTypeRequest$json = {
{'1': 'Label', '3': 4, '4': 1, '5': 9, '10': 'Label'},
{'1': 'SharePolicy', '3': 5, '4': 1, '5': 14, '6': '.api.SharePolicy', '8': {}, '10': 'SharePolicy'},
{'1': 'ID', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'ID'},
{'1': 'ManagerRoles', '3': 7, '4': 3, '5': 9, '10': 'ManagerRoles'},
{'1': 'ViewerRoles', '3': 8, '4': 3, '5': 9, '10': 'ViewerRoles'},
],
'7': {},
};
/// Descriptor for `UpdateAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateAttachmentTypeRequestDescriptor = $convert.base64Decode(
'ChtVcGRhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJACgRDb2RlGAIgASgJQiwYAZJB'
'EYoBDl5bYS16QS1aMC05LV0quoEBEnIQMg5eW2EtekEtWjAtOS1dKlIEQ29kZRI0CgZFbnRpdH'
'kYAyABKA4yDy5hcGkuRW50aXR5VHlwZUILGAG6gQEFggECEAFSBkVudGl0eRIUCgVMYWJlbBgE'
'IAEoCVIFTGFiZWwSPQoLU2hhcmVQb2xpY3kYBSABKA4yEC5hcGkuU2hhcmVQb2xpY3lCCbqBAQ'
'WCAQIQAVILU2hhcmVQb2xpY3kSOgoCSUQYBiABKAlCKpJBEYoBDl5bYS16QS1aMC05LV0quoEB'
'EnIQMg5eW2EtekEtWjAtOS1dKlICSUQ6HpJBGwoZ0gEGSGVhZGVy0gEEQ29kZdIBBkVudGl0eQ'
'==');
'ChtVcGRhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkER'
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GA'
'MgASgOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRIUCgVMYWJlbBgEIAEo'
'CVIFTGFiZWwSPAoLU2hhcmVQb2xpY3kYBSABKA4yEC5hcGkuU2hhcmVQb2xpY3lCCPpCBYIBAh'
'ABUgtTaGFyZVBvbGljeRI5CgJJRBgGIAEoCUIpkkERigEOXlthLXpBLVowLTktXSr6QhJyEDIO'
'XlthLXpBLVowLTktXSpSAklEEiIKDE1hbmFnZXJSb2xlcxgHIAMoCVIMTWFuYWdlclJvbGVzEi'
'AKC1ZpZXdlclJvbGVzGAggAygJUgtWaWV3ZXJSb2xlczoekkEbChnSAQZIZWFkZXLSAQRDb2Rl'
'0gEGRW50aXR5');
@$core.Deprecated('Use updateAttachmentTypeResponseDescriptor instead')
const UpdateAttachmentTypeResponse$json = {
@@ -178,8 +183,8 @@ const UpdateAttachmentTypeResponse$json = {
/// Descriptor for `UpdateAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateAttachmentTypeResponseDescriptor = $convert.base64Decode(
'ChxVcGRhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkYKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgm6gQEFigECEAFSDkF0dGFjaG1lbnRUeXBl');
'ChxVcGRhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
@$core.Deprecated('Use deleteAttachmentTypeRequestDescriptor instead')
const DeleteAttachmentTypeRequest$json = {
@@ -210,12 +215,12 @@ const DeleteAttachmentTypeRequest$json = {
/// Descriptor for `DeleteAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAttachmentTypeRequestDescriptor = $convert.base64Decode(
'ChtEZWxldGVBdHRhY2htZW50VHlwZVJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJACgRDb2RlGAIgASgJQiwYAZJB'
'EYoBDl5bYS16QS1aMC05LV0quoEBEnIQMg5eW2EtekEtWjAtOS1dKlIEQ29kZRI0CgZFbnRpdH'
'kYAyABKA4yDy5hcGkuRW50aXR5VHlwZUILGAG6gQEFggECEAFSBkVudGl0eRI6CgJJRBgEIAEo'
'CUIqkkERigEOXlthLXpBLVowLTktXSq6gQESchAyDl5bYS16QS1aMC05LV0qUgJJRDoekkEbCh'
'nSAQZIZWFkZXLSAQRDb2Rl0gEGRW50aXR5');
'ChtEZWxldGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkER'
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GA'
'MgASgOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRI5CgJJRBgEIAEoCUIp'
'kkERigEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSAklEOh6SQRsKGdIBBk'
'hlYWRlctIBBENvZGXSAQZFbnRpdHk=');
@$core.Deprecated('Use deleteAttachmentTypeResponseDescriptor instead')
const DeleteAttachmentTypeResponse$json = {
@@ -232,45 +237,20 @@ const DeleteAllAttachmentsTypeRequest$json = {
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
],
'7': {'3': true},
'7': {},
};
/// Descriptor for `DeleteAllAttachmentsTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAttachmentsTypeRequestDescriptor = $convert.base64Decode(
'Ch9EZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS'
'5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXI6EBgBkkELCgnSAQZIZWFk'
'ZXI=');
'Ch9EZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS'
'5SZXF1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlcjoOkkELCgnSAQZIZWFkZXI=');
@$core.Deprecated('Use deleteAllAttachmentsTypeResponseDescriptor instead')
const DeleteAllAttachmentsTypeResponse$json = {
'1': 'DeleteAllAttachmentsTypeResponse',
'7': {'3': true},
};
/// Descriptor for `DeleteAllAttachmentsTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAttachmentsTypeResponseDescriptor = $convert.base64Decode(
'CiBEZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXNwb25zZToCGAE=');
@$core.Deprecated('Use deleteAttachmentsTypeForResourceRequestDescriptor instead')
const DeleteAttachmentsTypeForResourceRequest$json = {
'1': 'DeleteAttachmentsTypeForResourceRequest',
'2': [
{'1': 'ResourceID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ResourceID'},
],
'7': {},
};
/// Descriptor for `DeleteAttachmentsTypeForResourceRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAttachmentsTypeForResourceRequestDescriptor = $convert.base64Decode(
'CidEZWxldGVBdHRhY2htZW50c1R5cGVGb3JSZXNvdXJjZVJlcXVlc3QSKAoKUmVzb3VyY2VJRB'
'gBIAEoCUIIuoEBBHICEAFSClJlc291cmNlSUQ6EpJBDwoN0gEKUmVzb3VyY2VJRA==');
@$core.Deprecated('Use deleteAttachmentsTypeForResourceResponseDescriptor instead')
const DeleteAttachmentsTypeForResourceResponse$json = {
'1': 'DeleteAttachmentsTypeForResourceResponse',
};
/// Descriptor for `DeleteAttachmentsTypeForResourceResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAttachmentsTypeForResourceResponseDescriptor = $convert.base64Decode(
'CihEZWxldGVBdHRhY2htZW50c1R5cGVGb3JSZXNvdXJjZVJlc3BvbnNl');
'CiBEZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXNwb25zZQ==');

File diff suppressed because it is too large Load Diff

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from attachmentV2.proto.
// Generated code. Do not modify.
// source: attachmentV2.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -25,11 +24,11 @@ class AttachmentKind extends $pb.ProtobufEnum {
ATTACHMENT_KIND_LINK,
];
static final $core.List<AttachmentKind?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
static AttachmentKind? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
static final $core.Map<$core.int, AttachmentKind> _byValue = $pb.ProtobufEnum.initByValue(values);
static AttachmentKind? valueOf($core.int value) => _byValue[value];
const AttachmentKind._(super.value, super.name);
const AttachmentKind._(super.v, super.n);
}
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from attachmentV2.proto.
// Generated code. Do not modify.
// source: attachmentV2.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,80 +15,74 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'attachmentV2.pb.dart' as $0;
import 'attachmentV2.pb.dart' as $15;
export 'attachmentV2.pb.dart';
@$pb.GrpcServiceName('api.AttachmentServiceV2')
class AttachmentServiceV2Client extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$upload = $grpc.ClientMethod<$15.UploadAttachmentV2Request, $15.UploadAttachmentV2Response>(
'/api.AttachmentServiceV2/Upload',
($15.UploadAttachmentV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.UploadAttachmentV2Response.fromBuffer(value));
static final _$addLink = $grpc.ClientMethod<$15.AddLinkV2Request, $15.AddLinkV2Response>(
'/api.AttachmentServiceV2/AddLink',
($15.AddLinkV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.AddLinkV2Response.fromBuffer(value));
static final _$download = $grpc.ClientMethod<$15.DownloadAttachmentV2Request, $15.DownloadAttachmentV2Response>(
'/api.AttachmentServiceV2/Download',
($15.DownloadAttachmentV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.DownloadAttachmentV2Response.fromBuffer(value));
static final _$delete = $grpc.ClientMethod<$15.DeleteAttachmentV2Request, $15.DeleteAttachmentV2Response>(
'/api.AttachmentServiceV2/Delete',
($15.DeleteAttachmentV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.DeleteAttachmentV2Response.fromBuffer(value));
static final _$list = $grpc.ClientMethod<$15.ListAttachmentsV2Request, $15.ListAttachmentsV2Response>(
'/api.AttachmentServiceV2/List',
($15.ListAttachmentsV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.ListAttachmentsV2Response.fromBuffer(value));
static final _$share = $grpc.ClientMethod<$15.ShareAttachmentV2Request, $15.ShareAttachmentV2Response>(
'/api.AttachmentServiceV2/Share',
($15.ShareAttachmentV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.ShareAttachmentV2Response.fromBuffer(value));
static final _$deleteAll = $grpc.ClientMethod<$15.DeleteAllAttachmentsV2Request, $15.DeleteAllAttachmentsV2Response>(
'/api.AttachmentServiceV2/DeleteAll',
($15.DeleteAllAttachmentsV2Request value) => value.writeToBuffer(),
($core.List<$core.int> value) => $15.DeleteAllAttachmentsV2Response.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
AttachmentServiceV2Client($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
AttachmentServiceV2Client(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.UploadAttachmentV2Response> upload($0.UploadAttachmentV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.UploadAttachmentV2Response> upload($15.UploadAttachmentV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$upload, request, options: options);
}
$grpc.ResponseFuture<$0.AddLinkV2Response> addLink($0.AddLinkV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.AddLinkV2Response> addLink($15.AddLinkV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$addLink, request, options: options);
}
$grpc.ResponseFuture<$0.DownloadAttachmentV2Response> download($0.DownloadAttachmentV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.DownloadAttachmentV2Response> download($15.DownloadAttachmentV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$download, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAttachmentV2Response> delete($0.DeleteAttachmentV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.DeleteAttachmentV2Response> delete($15.DeleteAttachmentV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$delete, request, options: options);
}
$grpc.ResponseFuture<$0.ListAttachmentsV2Response> list($0.ListAttachmentsV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.ListAttachmentsV2Response> list($15.ListAttachmentsV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$list, request, options: options);
}
$grpc.ResponseFuture<$0.ShareAttachmentV2Response> share($0.ShareAttachmentV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.ShareAttachmentV2Response> share($15.ShareAttachmentV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$share, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllAttachmentsV2Response> deleteAll($0.DeleteAllAttachmentsV2Request request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$15.DeleteAllAttachmentsV2Response> deleteAll($15.DeleteAllAttachmentsV2Request request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteAll, request, options: options);
}
// method descriptors
static final _$upload = $grpc.ClientMethod<$0.UploadAttachmentV2Request, $0.UploadAttachmentV2Response>(
'/api.AttachmentServiceV2/Upload',
($0.UploadAttachmentV2Request value) => value.writeToBuffer(),
$0.UploadAttachmentV2Response.fromBuffer);
static final _$addLink = $grpc.ClientMethod<$0.AddLinkV2Request, $0.AddLinkV2Response>(
'/api.AttachmentServiceV2/AddLink',
($0.AddLinkV2Request value) => value.writeToBuffer(),
$0.AddLinkV2Response.fromBuffer);
static final _$download = $grpc.ClientMethod<$0.DownloadAttachmentV2Request, $0.DownloadAttachmentV2Response>(
'/api.AttachmentServiceV2/Download',
($0.DownloadAttachmentV2Request value) => value.writeToBuffer(),
$0.DownloadAttachmentV2Response.fromBuffer);
static final _$delete = $grpc.ClientMethod<$0.DeleteAttachmentV2Request, $0.DeleteAttachmentV2Response>(
'/api.AttachmentServiceV2/Delete',
($0.DeleteAttachmentV2Request value) => value.writeToBuffer(),
$0.DeleteAttachmentV2Response.fromBuffer);
static final _$list = $grpc.ClientMethod<$0.ListAttachmentsV2Request, $0.ListAttachmentsV2Response>(
'/api.AttachmentServiceV2/List',
($0.ListAttachmentsV2Request value) => value.writeToBuffer(),
$0.ListAttachmentsV2Response.fromBuffer);
static final _$share = $grpc.ClientMethod<$0.ShareAttachmentV2Request, $0.ShareAttachmentV2Response>(
'/api.AttachmentServiceV2/Share',
($0.ShareAttachmentV2Request value) => value.writeToBuffer(),
$0.ShareAttachmentV2Response.fromBuffer);
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllAttachmentsV2Request, $0.DeleteAllAttachmentsV2Response>(
'/api.AttachmentServiceV2/DeleteAll',
($0.DeleteAllAttachmentsV2Request value) => value.writeToBuffer(),
$0.DeleteAllAttachmentsV2Response.fromBuffer);
}
@$pb.GrpcServiceName('api.AttachmentServiceV2')
@@ -97,97 +90,90 @@ abstract class AttachmentServiceV2ServiceBase extends $grpc.Service {
$core.String get $name => 'api.AttachmentServiceV2';
AttachmentServiceV2ServiceBase() {
$addMethod($grpc.ServiceMethod<$0.UploadAttachmentV2Request, $0.UploadAttachmentV2Response>(
$addMethod($grpc.ServiceMethod<$15.UploadAttachmentV2Request, $15.UploadAttachmentV2Response>(
'Upload',
upload_Pre,
false,
false,
($core.List<$core.int> value) => $0.UploadAttachmentV2Request.fromBuffer(value),
($0.UploadAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AddLinkV2Request, $0.AddLinkV2Response>(
($core.List<$core.int> value) => $15.UploadAttachmentV2Request.fromBuffer(value),
($15.UploadAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.AddLinkV2Request, $15.AddLinkV2Response>(
'AddLink',
addLink_Pre,
false,
false,
($core.List<$core.int> value) => $0.AddLinkV2Request.fromBuffer(value),
($0.AddLinkV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DownloadAttachmentV2Request, $0.DownloadAttachmentV2Response>(
($core.List<$core.int> value) => $15.AddLinkV2Request.fromBuffer(value),
($15.AddLinkV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.DownloadAttachmentV2Request, $15.DownloadAttachmentV2Response>(
'Download',
download_Pre,
false,
false,
($core.List<$core.int> value) => $0.DownloadAttachmentV2Request.fromBuffer(value),
($0.DownloadAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAttachmentV2Request, $0.DeleteAttachmentV2Response>(
($core.List<$core.int> value) => $15.DownloadAttachmentV2Request.fromBuffer(value),
($15.DownloadAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.DeleteAttachmentV2Request, $15.DeleteAttachmentV2Response>(
'Delete',
delete_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAttachmentV2Request.fromBuffer(value),
($0.DeleteAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListAttachmentsV2Request, $0.ListAttachmentsV2Response>(
($core.List<$core.int> value) => $15.DeleteAttachmentV2Request.fromBuffer(value),
($15.DeleteAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.ListAttachmentsV2Request, $15.ListAttachmentsV2Response>(
'List',
list_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListAttachmentsV2Request.fromBuffer(value),
($0.ListAttachmentsV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ShareAttachmentV2Request, $0.ShareAttachmentV2Response>(
($core.List<$core.int> value) => $15.ListAttachmentsV2Request.fromBuffer(value),
($15.ListAttachmentsV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.ShareAttachmentV2Request, $15.ShareAttachmentV2Response>(
'Share',
share_Pre,
false,
false,
($core.List<$core.int> value) => $0.ShareAttachmentV2Request.fromBuffer(value),
($0.ShareAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllAttachmentsV2Request, $0.DeleteAllAttachmentsV2Response>(
($core.List<$core.int> value) => $15.ShareAttachmentV2Request.fromBuffer(value),
($15.ShareAttachmentV2Response value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$15.DeleteAllAttachmentsV2Request, $15.DeleteAllAttachmentsV2Response>(
'DeleteAll',
deleteAll_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllAttachmentsV2Request.fromBuffer(value),
($0.DeleteAllAttachmentsV2Response value) => value.writeToBuffer()));
($core.List<$core.int> value) => $15.DeleteAllAttachmentsV2Request.fromBuffer(value),
($15.DeleteAllAttachmentsV2Response value) => value.writeToBuffer()));
}
$async.Future<$0.UploadAttachmentV2Response> upload_Pre($grpc.ServiceCall $call, $async.Future<$0.UploadAttachmentV2Request> $request) async {
$async.Future<$15.UploadAttachmentV2Response> upload_Pre($grpc.ServiceCall $call, $async.Future<$15.UploadAttachmentV2Request> $request) async {
return upload($call, await $request);
}
$async.Future<$0.UploadAttachmentV2Response> upload($grpc.ServiceCall call, $0.UploadAttachmentV2Request request);
$async.Future<$0.AddLinkV2Response> addLink_Pre($grpc.ServiceCall $call, $async.Future<$0.AddLinkV2Request> $request) async {
$async.Future<$15.AddLinkV2Response> addLink_Pre($grpc.ServiceCall $call, $async.Future<$15.AddLinkV2Request> $request) async {
return addLink($call, await $request);
}
$async.Future<$0.AddLinkV2Response> addLink($grpc.ServiceCall call, $0.AddLinkV2Request request);
$async.Future<$0.DownloadAttachmentV2Response> download_Pre($grpc.ServiceCall $call, $async.Future<$0.DownloadAttachmentV2Request> $request) async {
$async.Future<$15.DownloadAttachmentV2Response> download_Pre($grpc.ServiceCall $call, $async.Future<$15.DownloadAttachmentV2Request> $request) async {
return download($call, await $request);
}
$async.Future<$0.DownloadAttachmentV2Response> download($grpc.ServiceCall call, $0.DownloadAttachmentV2Request request);
$async.Future<$0.DeleteAttachmentV2Response> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAttachmentV2Request> $request) async {
$async.Future<$15.DeleteAttachmentV2Response> delete_Pre($grpc.ServiceCall $call, $async.Future<$15.DeleteAttachmentV2Request> $request) async {
return delete($call, await $request);
}
$async.Future<$0.DeleteAttachmentV2Response> delete($grpc.ServiceCall call, $0.DeleteAttachmentV2Request request);
$async.Future<$0.ListAttachmentsV2Response> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListAttachmentsV2Request> $request) async {
$async.Future<$15.ListAttachmentsV2Response> list_Pre($grpc.ServiceCall $call, $async.Future<$15.ListAttachmentsV2Request> $request) async {
return list($call, await $request);
}
$async.Future<$0.ListAttachmentsV2Response> list($grpc.ServiceCall call, $0.ListAttachmentsV2Request request);
$async.Future<$0.ShareAttachmentV2Response> share_Pre($grpc.ServiceCall $call, $async.Future<$0.ShareAttachmentV2Request> $request) async {
$async.Future<$15.ShareAttachmentV2Response> share_Pre($grpc.ServiceCall $call, $async.Future<$15.ShareAttachmentV2Request> $request) async {
return share($call, await $request);
}
$async.Future<$0.ShareAttachmentV2Response> share($grpc.ServiceCall call, $0.ShareAttachmentV2Request request);
$async.Future<$0.DeleteAllAttachmentsV2Response> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllAttachmentsV2Request> $request) async {
$async.Future<$15.DeleteAllAttachmentsV2Response> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$15.DeleteAllAttachmentsV2Request> $request) async {
return deleteAll($call, await $request);
}
$async.Future<$0.DeleteAllAttachmentsV2Response> deleteAll($grpc.ServiceCall call, $0.DeleteAllAttachmentsV2Request request);
$async.Future<$15.UploadAttachmentV2Response> upload($grpc.ServiceCall call, $15.UploadAttachmentV2Request request);
$async.Future<$15.AddLinkV2Response> addLink($grpc.ServiceCall call, $15.AddLinkV2Request request);
$async.Future<$15.DownloadAttachmentV2Response> download($grpc.ServiceCall call, $15.DownloadAttachmentV2Request request);
$async.Future<$15.DeleteAttachmentV2Response> delete($grpc.ServiceCall call, $15.DeleteAttachmentV2Request request);
$async.Future<$15.ListAttachmentsV2Response> list($grpc.ServiceCall call, $15.ListAttachmentsV2Request request);
$async.Future<$15.ShareAttachmentV2Response> share($grpc.ServiceCall call, $15.ShareAttachmentV2Request request);
$async.Future<$15.DeleteAllAttachmentsV2Response> deleteAll($grpc.ServiceCall call, $15.DeleteAllAttachmentsV2Request request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from attachmentV2.proto.
// Generated code. Do not modify.
// source: attachmentV2.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -33,6 +32,7 @@ final $typed_data.Uint8List attachmentKindDescriptor = $convert.base64Decode(
const Attachment$json = {
'1': 'Attachment',
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
{'1': 'AttachmentType', '3': 4, '4': 1, '5': 11, '6': '.api.AttachmentType', '8': {}, '10': 'AttachmentType'},
@@ -41,30 +41,58 @@ const Attachment$json = {
{'1': 'UploadedAt', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'UploadedAt'},
{'1': 'Kind', '3': 12, '4': 1, '5': 14, '6': '.api.AttachmentKind', '8': {}, '10': 'Kind'},
{'1': 'WebURI', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'WebURI'},
{'1': 'ResourceType', '3': 14, '4': 1, '5': 14, '6': '.api.ResourceType', '8': {}, '10': 'ResourceType'},
{'1': 'ResourceID', '3': 15, '4': 1, '5': 9, '8': {}, '10': 'ResourceID'},
],
};
/// Descriptor for `Attachment`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List attachmentDescriptor = $convert.base64Decode(
'CgpBdHRhY2htZW50EhwKBE5hbWUYAiABKAlCCLqBAQRyAhABUgROYW1lEioKC0VudGl0eVJlZk'
'lEGAMgASgJQgi6gQEEcgIQAVILRW50aXR5UmVmSUQSRgoOQXR0YWNobWVudFR5cGUYBCABKAsy'
'Ey5hcGkuQXR0YWNobWVudFR5cGVCCbqBAQWKAQIQAVIOQXR0YWNobWVudFR5cGUSxQEKA1VSSR'
'gFIAEoCUKyAZJBpgEyowFVUkkgb2YgdGhlIGF0dGFjaG1lbnQgdGhyb3VnaCB3aGljaCBpdCBj'
'YW4gYmUgZG93bmxvYWRlZCAobXVzdCBiZSBhdXRoZW50aWNhdGVkIHdpdGggYSBiZWFyZXIgdG'
'9rZW4pLiBJbiBjYXNlIHRoZSBBdHRhY2htZW50IGlzIGEgbGluaywgdGhlIFVSSSBpcyB0aGUg'
'bGluayBpdHNlbGYuuoEBBHICEAFSA1VSSRIkCghNSU1FVHlwZRgGIAEoCUIIuoEBBHICEAFSCE'
'1JTUVUeXBlEoMBCgpVcGxvYWRlZEF0GAsgASgJQmOSQVcyVVVUQyBkYXRlL3RpbWUgaW4gPGEg'
'aHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEnPklTTyA4NjAxPC'
'9hPiBmb3JtYXS6gQEFcgPQAQFSClVwbG9hZGVkQXQSUwoES2luZBgMIAEoDjITLmFwaS5BdHRh'
'Y2htZW50S2luZEIqkkEnMiVLaW5kIG9mIHRoZSBhdHRhY2htZW50IChmaWxlIG9yIGxpbmspUg'
'RLaW5kEq8BCgZXZWJVUkkYDSABKAlClgGSQYoBMocBVVJJIG9mIHRoZSBhdHRhY2htZW50IHRo'
'cm91Z2ggd2hpY2ggaXQgY2FuIGJlIGFjY2Vzc2VkIG9uIGFuIGF1dGhlbnRpY2F0ZWQgd2ViIG'
'FwcC4gSW4gY2FzZSB0aGUgQXR0YWNobWVudCBpcyBhIGxpbmssIHRoZSBVUkkgaXMgZW1wdHku'
'uoEBBHICEAFSBldlYlVSSRJACgxSZXNvdXJjZVR5cGUYDiABKA4yES5hcGkuUmVzb3VyY2VUeX'
'BlQgm6gQEFggECEAFSDFJlc291cmNlVHlwZRIoCgpSZXNvdXJjZUlEGA8gASgJQgi6gQEEcgIQ'
'AVIKUmVzb3VyY2VJRA==');
'CgpBdHRhY2htZW50EiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUHJvamVjdElEEhsKBE'
'5hbWUYAiABKAlCB/pCBHICEAFSBE5hbWUSKQoLRW50aXR5UmVmSUQYAyABKAlCB/pCBHICEAFS'
'C0VudGl0eVJlZklEEkUKDkF0dGFjaG1lbnRUeXBlGAQgASgLMhMuYXBpLkF0dGFjaG1lbnRUeX'
'BlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGUSxAEKA1VSSRgFIAEoCUKxAZJBpgEyowFVUkkg'
'b2YgdGhlIGF0dGFjaG1lbnQgdGhyb3VnaCB3aGljaCBpdCBjYW4gYmUgZG93bmxvYWRlZCAobX'
'VzdCBiZSBhdXRoZW50aWNhdGVkIHdpdGggYSBiZWFyZXIgdG9rZW4pLiBJbiBjYXNlIHRoZSBB'
'dHRhY2htZW50IGlzIGEgbGluaywgdGhlIFVSSSBpcyB0aGUgbGluayBpdHNlbGYu+kIEcgIQAV'
'IDVVJJEiMKCE1JTUVUeXBlGAYgASgJQgf6QgRyAhABUghNSU1FVHlwZRKCAQoKVXBsb2FkZWRB'
'dBgLIAEoCUJikkFXMlVVVEMgZGF0ZS90aW1lIGluIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraX'
'BlZGlhLm9yZy93aWtpL0lTT184NjAxJz5JU08gODYwMTwvYT4gZm9ybWF0+kIFcgPQAQFSClVw'
'bG9hZGVkQXQSUwoES2luZBgMIAEoDjITLmFwaS5BdHRhY2htZW50S2luZEIqkkEnMiVLaW5kIG'
'9mIHRoZSBhdHRhY2htZW50IChmaWxlIG9yIGxpbmspUgRLaW5kEq4BCgZXZWJVUkkYDSABKAlC'
'lQGSQYoBMocBVVJJIG9mIHRoZSBhdHRhY2htZW50IHRocm91Z2ggd2hpY2ggaXQgY2FuIGJlIG'
'FjY2Vzc2VkIG9uIGFuIGF1dGhlbnRpY2F0ZWQgd2ViIGFwcC4gSW4gY2FzZSB0aGUgQXR0YWNo'
'bWVudCBpcyBhIGxpbmssIHRoZSBVUkkgaXMgZW1wdHku+kIEcgIQAVIGV2ViVVJJ');
@$core.Deprecated('Use fileDataRequestDescriptor instead')
const FileDataRequest$json = {
'1': 'FileDataRequest',
'2': [
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'Content', '3': 2, '4': 1, '5': 12, '10': 'Content'},
],
'7': {},
};
/// Descriptor for `FileDataRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List fileDataRequestDescriptor = $convert.base64Decode(
'Cg9GaWxlRGF0YVJlcXVlc3QSGwoETmFtZRgBIAEoCUIH+kIEcgIQAVIETmFtZRIYCgdDb250ZW'
'50GAIgASgMUgdDb250ZW50OgySQQkKB9IBBE5hbWU=');
@$core.Deprecated('Use fileDataResponseDescriptor instead')
const FileDataResponse$json = {
'1': 'FileDataResponse',
'2': [
{'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
{'1': 'ContentType', '3': 2, '4': 1, '5': 9, '10': 'ContentType'},
{'1': 'Content', '3': 3, '4': 1, '5': 12, '10': 'Content'},
],
'7': {},
};
/// Descriptor for `FileDataResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List fileDataResponseDescriptor = $convert.base64Decode(
'ChBGaWxlRGF0YVJlc3BvbnNlEhIKBE5hbWUYASABKAlSBE5hbWUSIAoLQ29udGVudFR5cGUYAi'
'ABKAlSC0NvbnRlbnRUeXBlEhgKB0NvbnRlbnQYAyABKAxSB0NvbnRlbnQ6DJJBCQoH0gEETmFt'
'ZQ==');
@$core.Deprecated('Use downloadAttachmentV2RequestDescriptor instead')
const DownloadAttachmentV2Request$json = {
@@ -79,12 +107,12 @@ const DownloadAttachmentV2Request$json = {
/// Descriptor for `DownloadAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List downloadAttachmentV2RequestDescriptor = $convert.base64Decode(
'ChtEb3dubG9hZEF0dGFjaG1lbnRWMlJlcXVlc3QSQwoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcX'
'Vlc3RBdHRhY2htZW50VHlwZUhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISQwoETmFtZRgCIAEo'
'CUIvkkEkMiJOYW1lIG9mIHRoZSBhdHRhY2htZW50IHRvIGRvd25sb2FkuoEBBHICEAFSBE5hbW'
'USZwoLRW50aXR5UmVmSUQYAyABKAlCRZJBOjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdo'
'ZXJlIHRoZSBhdHRhY2htZW50IGlzIGxvY2F0ZWS6gQEEcgIQAVILRW50aXR5UmVmSUQ6I5JBIA'
'oe0gEGSGVhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE');
'ChtEb3dubG9hZEF0dGFjaG1lbnRWMlJlcXVlc3QSQgoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcX'
'Vlc3RBdHRhY2htZW50VHlwZUhlYWRlckII+kIFigECEAFSBkhlYWRlchJCCgROYW1lGAIgASgJ'
'Qi6SQSQyIk5hbWUgb2YgdGhlIGF0dGFjaG1lbnQgdG8gZG93bmxvYWT6QgRyAhABUgROYW1lEm'
'YKC0VudGl0eVJlZklEGAMgASgJQkSSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVy'
'ZSB0aGUgYXR0YWNobWVudCBpcyBsb2NhdGVk+kIEcgIQAVILRW50aXR5UmVmSUQ6I5JBIAoe0g'
'EGSGVhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE');
@$core.Deprecated('Use downloadAttachmentV2ResponseDescriptor instead')
const DownloadAttachmentV2Response$json = {
@@ -99,8 +127,8 @@ const DownloadAttachmentV2Response$json = {
final $typed_data.Uint8List downloadAttachmentV2ResponseDescriptor = $convert.base64Decode(
'ChxEb3dubG9hZEF0dGFjaG1lbnRWMlJlc3BvbnNlElYKBkhlYWRlchgCIAEoCzIhLmFwaS5BdH'
'RhY2htZW50VHlwZVJlc3BvbnNlSGVhZGVyQhuSQRgyFkhlYWRlciBvZiB0aGUgcmVzcG9uc2VS'
'BkhlYWRlchI0CgRGaWxlGAEgASgLMhUuYXBpLkZpbGVEYXRhUmVzcG9uc2VCCbqBAQWKAQIQAV'
'IERmlsZQ==');
'BkhlYWRlchIzCgRGaWxlGAEgASgLMhUuYXBpLkZpbGVEYXRhUmVzcG9uc2VCCPpCBYoBAhABUg'
'RGaWxl');
@$core.Deprecated('Use uploadAttachmentV2RequestDescriptor instead')
const UploadAttachmentV2Request$json = {
@@ -115,12 +143,12 @@ const UploadAttachmentV2Request$json = {
/// Descriptor for `UploadAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List uploadAttachmentV2RequestDescriptor = $convert.base64Decode(
'ChlVcGxvYWRBdHRhY2htZW50VjJSZXF1ZXN0EkMKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEmcKC0VudGl0eVJlZklE'
'GAMgASgJQkWSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVyZSB0aGUgYXR0YWNobW'
'VudCBpcyBsb2NhdGVkuoEBBHICEAFSC0VudGl0eVJlZklEEj8KCkF0dGFjaG1lbnQYBCABKAsy'
'FC5hcGkuRmlsZURhdGFSZXF1ZXN0Qgm6gQEFigECEAFSCkF0dGFjaG1lbnQ6PJJBOQo30gEGSG'
'VhZGVy0gEQQXR0YWNobWVudFR5cGVJRNIBC0VudGl0eVJlZklE0gEKQXR0YWNobWVudA==');
'ChlVcGxvYWRBdHRhY2htZW50VjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISZgoLRW50aXR5UmVmSUQY'
'AyABKAlCRJJBOjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2htZW'
'50IGlzIGxvY2F0ZWT6QgRyAhABUgtFbnRpdHlSZWZJRBI+CgpBdHRhY2htZW50GAQgASgLMhQu'
'YXBpLkZpbGVEYXRhUmVxdWVzdEII+kIFigECEAFSCkF0dGFjaG1lbnQ6PJJBOQo30gEGSGVhZG'
'Vy0gEQQXR0YWNobWVudFR5cGVJRNIBC0VudGl0eVJlZklE0gEKQXR0YWNobWVudA==');
@$core.Deprecated('Use uploadAttachmentV2ResponseDescriptor instead')
const UploadAttachmentV2Response$json = {
@@ -135,8 +163,8 @@ const UploadAttachmentV2Response$json = {
final $typed_data.Uint8List uploadAttachmentV2ResponseDescriptor = $convert.base64Decode(
'ChpVcGxvYWRBdHRhY2htZW50VjJSZXNwb25zZRJWCgZIZWFkZXIYAiABKAsyIS5hcGkuQXR0YW'
'NobWVudFR5cGVSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZI'
'ZWFkZXISOgoKQXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgm6gQEFigECEAFSCk'
'F0dGFjaG1lbnQ=');
'ZWFkZXISOQoKQXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgj6QgWKAQIQAVIKQX'
'R0YWNobWVudA==');
@$core.Deprecated('Use addLinkV2RequestDescriptor instead')
const AddLinkV2Request$json = {
@@ -152,13 +180,13 @@ const AddLinkV2Request$json = {
/// Descriptor for `AddLinkV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List addLinkV2RequestDescriptor = $convert.base64Decode(
'ChBBZGRMaW5rVjJSZXF1ZXN0EkMKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZXN0QXR0YWNobW'
'VudFR5cGVIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEmcKC0VudGl0eVJlZklEGAMgASgJQkWS'
'QToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVyZSB0aGUgYXR0YWNobWVudCBpcyBsb2'
'NhdGVkuoEBBHICEAFSC0VudGl0eVJlZklEEkYKBE5hbWUYBCABKAlCMpJBJzIlTmFtZSBvZiB0'
'aGUgbGluayB0byBhZGQgdG8gdGhlIGVudGl0ebqBAQRyAhABUgROYW1lEjcKA1VSSRgFIAEoCU'
'IlkkEaMhhVUkkgdG8gYWRkIHRvIHRoZSBlbnRpdHm6gQEEcgIQAVIDVVJJOjySQTkKN9IBBkhl'
'YWRlctIBEEF0dGFjaG1lbnRUeXBlSUTSAQtFbnRpdHlSZWZJRNIBBE5hbWXSAQNVUkk=');
'ChBBZGRMaW5rVjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZXN0QXR0YWNobW'
'VudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISZgoLRW50aXR5UmVmSUQYAyABKAlCRJJB'
'OjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2htZW50IGlzIGxvY2'
'F0ZWT6QgRyAhABUgtFbnRpdHlSZWZJRBJFCgROYW1lGAQgASgJQjGSQScyJU5hbWUgb2YgdGhl'
'IGxpbmsgdG8gYWRkIHRvIHRoZSBlbnRpdHn6QgRyAhABUgROYW1lEjYKA1VSSRgFIAEoCUIkkk'
'EaMhhVUkkgdG8gYWRkIHRvIHRoZSBlbnRpdHn6QgRyAhABUgNVUkk6PJJBOQo30gEGSGVhZGVy'
'0gEQQXR0YWNobWVudFR5cGVJRNIBC0VudGl0eVJlZklE0gEETmFtZdIBA1VSSQ==');
@$core.Deprecated('Use addLinkV2ResponseDescriptor instead')
const AddLinkV2Response$json = {
@@ -172,9 +200,9 @@ const AddLinkV2Response$json = {
/// Descriptor for `AddLinkV2Response`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List addLinkV2ResponseDescriptor = $convert.base64Decode(
'ChFBZGRMaW5rVjJSZXNwb25zZRJWCgZIZWFkZXIYAiABKAsyIS5hcGkuQXR0YWNobWVudFR5cG'
'VSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISOgoK'
'QXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgm6gQEFigECEAFSCkF0dGFjaG1lbn'
'Q=');
'VSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISOQoK'
'QXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgj6QgWKAQIQAVIKQXR0YWNobWVudA'
'==');
@$core.Deprecated('Use deleteAttachmentV2RequestDescriptor instead')
const DeleteAttachmentV2Request$json = {
@@ -189,12 +217,12 @@ const DeleteAttachmentV2Request$json = {
/// Descriptor for `DeleteAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAttachmentV2RequestDescriptor = $convert.base64Decode(
'ChlEZWxldGVBdHRhY2htZW50VjJSZXF1ZXN0EkMKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkMKBE5hbWUYAiABKAlC'
'L5JBJDIiTmFtZSBvZiB0aGUgYXR0YWNobWVudCB0byBkb3dubG9hZLqBAQRyAhABUgROYW1lEm'
'cKC0VudGl0eVJlZklEGAMgASgJQkWSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVy'
'ZSB0aGUgYXR0YWNobWVudCBpcyBsb2NhdGVkuoEBBHICEAFSC0VudGl0eVJlZklEOjaSQTMKMd'
'IBBkhlYWRlctIBBE5hbWXSAQtFbnRpdHlSZWZJRNIBEEF0dGFjaG1lbnRUeXBlSUQ=');
'ChlEZWxldGVBdHRhY2htZW50VjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISQgoETmFtZRgCIAEoCUIu'
'kkEkMiJOYW1lIG9mIHRoZSBhdHRhY2htZW50IHRvIGRvd25sb2Fk+kIEcgIQAVIETmFtZRJmCg'
'tFbnRpdHlSZWZJRBgDIAEoCUJEkkE6MjhJZGVudGlmaWVyIG9mIHRoZSBlbnRpdHkgd2hlcmUg'
'dGhlIGF0dGFjaG1lbnQgaXMgbG9jYXRlZPpCBHICEAFSC0VudGl0eVJlZklEOjaSQTMKMdIBBk'
'hlYWRlctIBBE5hbWXSAQtFbnRpdHlSZWZJRNIBEEF0dGFjaG1lbnRUeXBlSUQ=');
@$core.Deprecated('Use deleteAttachmentV2ResponseDescriptor instead')
const DeleteAttachmentV2Response$json = {
@@ -223,12 +251,12 @@ const ListAttachmentsV2Request$json = {
/// Descriptor for `ListAttachmentsV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAttachmentsV2RequestDescriptor = $convert.base64Decode(
'ChhMaXN0QXR0YWNobWVudHNWMlJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJqCgtFbnRpdHlSZWZJRBgDIAEoCUJI'
'kkFFMkNPcHRpb25hbCA6IElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVyZSB0aGUgYXR0YW'
'NobWVudCBpcyBsb2NhdGVkUgtFbnRpdHlSZWZJRBJzCgpFbnRpdHlUeXBlGAQgASgOMg8uYXBp'
'LkVudGl0eVR5cGVCQpJBPzI9T3B0aW9uYWwgOiBUeXBlIG9mIHRoZSBlbnRpdHkgd2hlcmUgdG'
'hlIGF0dGFjaG1lbnQgaXMgbG9jYXRlZFIKRW50aXR5VHlwZToOkkELCgnSAQZIZWFkZXI=');
'ChhMaXN0QXR0YWNobWVudHNWMlJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEmoKC0VudGl0eVJlZklEGAMgASgJQkiS'
'QUUyQ09wdGlvbmFsIDogSWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2'
'htZW50IGlzIGxvY2F0ZWRSC0VudGl0eVJlZklEEnMKCkVudGl0eVR5cGUYBCABKA4yDy5hcGku'
'RW50aXR5VHlwZUJCkkE/Mj1PcHRpb25hbCA6IFR5cGUgb2YgdGhlIGVudGl0eSB3aGVyZSB0aG'
'UgYXR0YWNobWVudCBpcyBsb2NhdGVkUgpFbnRpdHlUeXBlOg6SQQsKCdIBBkhlYWRlcg==');
@$core.Deprecated('Use listAttachmentsV2ResponseDescriptor instead')
const ListAttachmentsV2Response$json = {
@@ -242,9 +270,9 @@ const ListAttachmentsV2Response$json = {
/// Descriptor for `ListAttachmentsV2Response`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listAttachmentsV2ResponseDescriptor = $convert.base64Decode(
'ChlMaXN0QXR0YWNobWVudHNWMlJlc3BvbnNlEkgKBkhlYWRlchgCIAEoCzITLmFwaS5SZXNwb2'
'5zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISbAoLQXR0YWNo'
'bWVudHMYASADKAsyDy5hcGkuQXR0YWNobWVudEI5kkEtMitMaXN0IG9mIGF0dGFjaG1lbnRzIG'
'1hdGNoaW5nIHRvIHRoZSByZXF1ZXN0uoEBBZIBAggBUgtBdHRhY2htZW50cw==');
'5zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISawoLQXR0YWNo'
'bWVudHMYASADKAsyDy5hcGkuQXR0YWNobWVudEI4kkEtMitMaXN0IG9mIGF0dGFjaG1lbnRzIG'
'1hdGNoaW5nIHRvIHRoZSByZXF1ZXN0+kIFkgECCAFSC0F0dGFjaG1lbnRz');
@$core.Deprecated('Use shareAttachmentV2RequestDescriptor instead')
const ShareAttachmentV2Request$json = {
@@ -259,12 +287,12 @@ const ShareAttachmentV2Request$json = {
/// Descriptor for `ShareAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List shareAttachmentV2RequestDescriptor = $convert.base64Decode(
'ChhTaGFyZUF0dGFjaG1lbnRWMlJlcXVlc3QSQwoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcXVlc3'
'RBdHRhY2htZW50VHlwZUhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISQwoETmFtZRgCIAEoCUIv'
'kkEkMiJOYW1lIG9mIHRoZSBhdHRhY2htZW50IHRvIGRvd25sb2FkuoEBBHICEAFSBE5hbWUSZw'
'oLRW50aXR5UmVmSUQYAyABKAlCRZJBOjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJl'
'IHRoZSBhdHRhY2htZW50IGlzIGxvY2F0ZWS6gQEEcgIQAVILRW50aXR5UmVmSUQ6NpJBMwox0g'
'EGSGVhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE0gEQQXR0YWNobWVudFR5cGVJRA==');
'ChhTaGFyZUF0dGFjaG1lbnRWMlJlcXVlc3QSQgoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcXVlc3'
'RBdHRhY2htZW50VHlwZUhlYWRlckII+kIFigECEAFSBkhlYWRlchJCCgROYW1lGAIgASgJQi6S'
'QSQyIk5hbWUgb2YgdGhlIGF0dGFjaG1lbnQgdG8gZG93bmxvYWT6QgRyAhABUgROYW1lEmYKC0'
'VudGl0eVJlZklEGAMgASgJQkSSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVyZSB0'
'aGUgYXR0YWNobWVudCBpcyBsb2NhdGVk+kIEcgIQAVILRW50aXR5UmVmSUQ6NpJBMwox0gEGSG'
'VhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE0gEQQXR0YWNobWVudFR5cGVJRA==');
@$core.Deprecated('Use shareAttachmentV2ResponseDescriptor instead')
const ShareAttachmentV2Response$json = {
@@ -279,9 +307,8 @@ const ShareAttachmentV2Response$json = {
final $typed_data.Uint8List shareAttachmentV2ResponseDescriptor = $convert.base64Decode(
'ChlTaGFyZUF0dGFjaG1lbnRWMlJlc3BvbnNlElYKBkhlYWRlchgCIAEoCzIhLmFwaS5BdHRhY2'
'htZW50VHlwZVJlc3BvbnNlSGVhZGVyQhuSQRgyFkhlYWRlciBvZiB0aGUgcmVzcG9uc2VSBkhl'
'YWRlchJqCglTaGFyZUxpbmsYASABKAlCTJJBQTI/TGluayB0byBhY2Nlc3MgdG8gdGhlIGF0dG'
'NobWVudCBpZiB0aGUgc2hhcmluZyBwb2xpY3kgYWxsb3dzIHRvuoEBBHICEAFSCVNoYXJlTGlu'
'aw==');
'YWRlchJpCglTaGFyZUxpbmsYASABKAlCS5JBQTI/TGluayB0byBhY2Nlc3MgdG8gdGhlIGF0dG'
'NobWVudCBpZiB0aGUgc2hhcmluZyBwb2xpY3kgYWxsb3dzIHRv+kIEcgIQAVIJU2hhcmVMaW5r');
@$core.Deprecated('Use deleteAllAttachmentsV2RequestDescriptor instead')
const DeleteAllAttachmentsV2Request$json = {
@@ -294,8 +321,8 @@ const DeleteAllAttachmentsV2Request$json = {
/// Descriptor for `DeleteAllAttachmentsV2Request`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllAttachmentsV2RequestDescriptor = $convert.base64Decode(
'Ch1EZWxldGVBbGxBdHRhY2htZW50c1YyUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
'Ch1EZWxldGVBbGxBdHRhY2htZW50c1YyUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use deleteAllAttachmentsV2ResponseDescriptor instead')
const DeleteAllAttachmentsV2Response$json = {

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from base.proto.
// Generated code. Do not modify.
// source: base.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -31,26 +30,48 @@ class AdminAddress extends $pb.GeneratedMessage {
$core.String? streetAddressThree,
$core.String? plusCode,
}) {
final result = create();
if (city != null) result.city = city;
if (countryCode != null) result.countryCode = countryCode;
if (geographicalCoordinates != null) result.geographicalCoordinates = geographicalCoordinates;
if (name != null) result.name = name;
if (pOBoxNumber != null) result.pOBoxNumber = pOBoxNumber;
if (postalCode != null) result.postalCode = postalCode;
if (provinceCode != null) result.provinceCode = provinceCode;
if (state != null) result.state = state;
if (streetAddressOne != null) result.streetAddressOne = streetAddressOne;
if (streetAddressTwo != null) result.streetAddressTwo = streetAddressTwo;
if (streetAddressThree != null) result.streetAddressThree = streetAddressThree;
if (plusCode != null) result.plusCode = plusCode;
return result;
final $result = create();
if (city != null) {
$result.city = city;
}
if (countryCode != null) {
$result.countryCode = countryCode;
}
if (geographicalCoordinates != null) {
$result.geographicalCoordinates = geographicalCoordinates;
}
if (name != null) {
$result.name = name;
}
if (pOBoxNumber != null) {
$result.pOBoxNumber = pOBoxNumber;
}
if (postalCode != null) {
$result.postalCode = postalCode;
}
if (provinceCode != null) {
$result.provinceCode = provinceCode;
}
if (state != null) {
$result.state = state;
}
if (streetAddressOne != null) {
$result.streetAddressOne = streetAddressOne;
}
if (streetAddressTwo != null) {
$result.streetAddressTwo = streetAddressTwo;
}
if (streetAddressThree != null) {
$result.streetAddressThree = streetAddressThree;
}
if (plusCode != null) {
$result.plusCode = plusCode;
}
return $result;
}
AdminAddress._();
factory AdminAddress.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdminAddress.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdminAddress._() : super();
factory AdminAddress.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdminAddress.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdminAddress', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'City', protoName: 'City')
@@ -68,17 +89,21 @@ class AdminAddress extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdminAddress clone() => AdminAddress()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdminAddress copyWith(void Function(AdminAddress) updates) => super.copyWith((message) => updates(message as AdminAddress)) as AdminAddress;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdminAddress create() => AdminAddress._();
@$core.override
AdminAddress createEmptyInstance() => create();
static $pb.PbList<AdminAddress> createRepeated() => $pb.PbList<AdminAddress>();
@$core.pragma('dart2js:noInline')
@@ -88,7 +113,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get city => $_getSZ(0);
@$pb.TagNumber(1)
set city($core.String value) => $_setString(0, value);
set city($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasCity() => $_has(0);
@$pb.TagNumber(1)
@@ -98,7 +123,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get countryCode => $_getSZ(1);
@$pb.TagNumber(2)
set countryCode($core.String value) => $_setString(1, value);
set countryCode($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasCountryCode() => $_has(1);
@$pb.TagNumber(2)
@@ -107,7 +132,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
AdminGeographicalCoordinates get geographicalCoordinates => $_getN(2);
@$pb.TagNumber(3)
set geographicalCoordinates(AdminGeographicalCoordinates value) => $_setField(3, value);
set geographicalCoordinates(AdminGeographicalCoordinates v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasGeographicalCoordinates() => $_has(2);
@$pb.TagNumber(3)
@@ -118,7 +143,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$core.String get name => $_getSZ(3);
@$pb.TagNumber(4)
set name($core.String value) => $_setString(3, value);
set name($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasName() => $_has(3);
@$pb.TagNumber(4)
@@ -127,7 +152,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
$core.String get pOBoxNumber => $_getSZ(4);
@$pb.TagNumber(5)
set pOBoxNumber($core.String value) => $_setString(4, value);
set pOBoxNumber($core.String v) { $_setString(4, v); }
@$pb.TagNumber(5)
$core.bool hasPOBoxNumber() => $_has(4);
@$pb.TagNumber(5)
@@ -136,7 +161,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(6)
$core.String get postalCode => $_getSZ(5);
@$pb.TagNumber(6)
set postalCode($core.String value) => $_setString(5, value);
set postalCode($core.String v) { $_setString(5, v); }
@$pb.TagNumber(6)
$core.bool hasPostalCode() => $_has(5);
@$pb.TagNumber(6)
@@ -145,7 +170,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(7)
$core.String get provinceCode => $_getSZ(6);
@$pb.TagNumber(7)
set provinceCode($core.String value) => $_setString(6, value);
set provinceCode($core.String v) { $_setString(6, v); }
@$pb.TagNumber(7)
$core.bool hasProvinceCode() => $_has(6);
@$pb.TagNumber(7)
@@ -154,7 +179,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(8)
$core.String get state => $_getSZ(7);
@$pb.TagNumber(8)
set state($core.String value) => $_setString(7, value);
set state($core.String v) { $_setString(7, v); }
@$pb.TagNumber(8)
$core.bool hasState() => $_has(7);
@$pb.TagNumber(8)
@@ -163,7 +188,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(9)
$core.String get streetAddressOne => $_getSZ(8);
@$pb.TagNumber(9)
set streetAddressOne($core.String value) => $_setString(8, value);
set streetAddressOne($core.String v) { $_setString(8, v); }
@$pb.TagNumber(9)
$core.bool hasStreetAddressOne() => $_has(8);
@$pb.TagNumber(9)
@@ -172,7 +197,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(10)
$core.String get streetAddressTwo => $_getSZ(9);
@$pb.TagNumber(10)
set streetAddressTwo($core.String value) => $_setString(9, value);
set streetAddressTwo($core.String v) { $_setString(9, v); }
@$pb.TagNumber(10)
$core.bool hasStreetAddressTwo() => $_has(9);
@$pb.TagNumber(10)
@@ -181,7 +206,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(11)
$core.String get streetAddressThree => $_getSZ(10);
@$pb.TagNumber(11)
set streetAddressThree($core.String value) => $_setString(10, value);
set streetAddressThree($core.String v) { $_setString(10, v); }
@$pb.TagNumber(11)
$core.bool hasStreetAddressThree() => $_has(10);
@$pb.TagNumber(11)
@@ -190,7 +215,7 @@ class AdminAddress extends $pb.GeneratedMessage {
@$pb.TagNumber(12)
$core.String get plusCode => $_getSZ(11);
@$pb.TagNumber(12)
set plusCode($core.String value) => $_setString(11, value);
set plusCode($core.String v) { $_setString(11, v); }
@$pb.TagNumber(12)
$core.bool hasPlusCode() => $_has(11);
@$pb.TagNumber(12)
@@ -204,16 +229,18 @@ class AdminGeographicalCoordinates extends $pb.GeneratedMessage {
$core.String? latitude,
$core.String? longitude,
}) {
final result = create();
if (latitude != null) result.latitude = latitude;
if (longitude != null) result.longitude = longitude;
return result;
final $result = create();
if (latitude != null) {
$result.latitude = latitude;
}
if (longitude != null) {
$result.longitude = longitude;
}
return $result;
}
AdminGeographicalCoordinates._();
factory AdminGeographicalCoordinates.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AdminGeographicalCoordinates.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
AdminGeographicalCoordinates._() : super();
factory AdminGeographicalCoordinates.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory AdminGeographicalCoordinates.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AdminGeographicalCoordinates', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Latitude', protoName: 'Latitude')
@@ -221,17 +248,21 @@ class AdminGeographicalCoordinates extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
AdminGeographicalCoordinates clone() => AdminGeographicalCoordinates()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
AdminGeographicalCoordinates copyWith(void Function(AdminGeographicalCoordinates) updates) => super.copyWith((message) => updates(message as AdminGeographicalCoordinates)) as AdminGeographicalCoordinates;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AdminGeographicalCoordinates create() => AdminGeographicalCoordinates._();
@$core.override
AdminGeographicalCoordinates createEmptyInstance() => create();
static $pb.PbList<AdminGeographicalCoordinates> createRepeated() => $pb.PbList<AdminGeographicalCoordinates>();
@$core.pragma('dart2js:noInline')
@@ -241,7 +272,7 @@ class AdminGeographicalCoordinates extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get latitude => $_getSZ(0);
@$pb.TagNumber(1)
set latitude($core.String value) => $_setString(0, value);
set latitude($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasLatitude() => $_has(0);
@$pb.TagNumber(1)
@@ -250,7 +281,7 @@ class AdminGeographicalCoordinates extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get longitude => $_getSZ(1);
@$pb.TagNumber(2)
set longitude($core.String value) => $_setString(1, value);
set longitude($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasLongitude() => $_has(1);
@$pb.TagNumber(2)
@@ -262,16 +293,18 @@ class Paging extends $pb.GeneratedMessage {
$core.int? limit,
$core.int? offset,
}) {
final result = create();
if (limit != null) result.limit = limit;
if (offset != null) result.offset = offset;
return result;
final $result = create();
if (limit != null) {
$result.limit = limit;
}
if (offset != null) {
$result.offset = offset;
}
return $result;
}
Paging._();
factory Paging.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Paging.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
Paging._() : super();
factory Paging.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory Paging.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Paging', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..a<$core.int>(1, _omitFieldNames ? '' : 'Limit', $pb.PbFieldType.O3, protoName: 'Limit')
@@ -279,17 +312,21 @@ class Paging extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Paging clone() => Paging()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Paging copyWith(void Function(Paging) updates) => super.copyWith((message) => updates(message as Paging)) as Paging;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Paging create() => Paging._();
@$core.override
Paging createEmptyInstance() => create();
static $pb.PbList<Paging> createRepeated() => $pb.PbList<Paging>();
@$core.pragma('dart2js:noInline')
@@ -299,7 +336,7 @@ class Paging extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.int get limit => $_getIZ(0);
@$pb.TagNumber(1)
set limit($core.int value) => $_setSignedInt32(0, value);
set limit($core.int v) { $_setSignedInt32(0, v); }
@$pb.TagNumber(1)
$core.bool hasLimit() => $_has(0);
@$pb.TagNumber(1)
@@ -308,7 +345,7 @@ class Paging extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.int get offset => $_getIZ(1);
@$pb.TagNumber(2)
set offset($core.int value) => $_setSignedInt32(1, value);
set offset($core.int v) { $_setSignedInt32(1, v); }
@$pb.TagNumber(2)
$core.bool hasOffset() => $_has(1);
@$pb.TagNumber(2)
@@ -316,5 +353,5 @@ class Paging extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from base.proto.
// Generated code. Do not modify.
// source: base.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from base.proto.
// Generated code. Do not modify.
// source: base.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -35,17 +34,17 @@ const AdminAddress$json = {
/// Descriptor for `AdminAddress`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List adminAddressDescriptor = $convert.base64Decode(
'CgxBZG1pbkFkZHJlc3MSEgoEQ2l0eRgBIAEoCVIEQ2l0eRKeAQoLQ291bnRyeUNvZGUYAiABKA'
'lCfJJBcDJYQ291bnRyeSBDb2RlIGluIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9y'
'CgxBZG1pbkFkZHJlc3MSEgoEQ2l0eRgBIAEoCVIEQ2l0eRKdAQoLQ291bnRyeUNvZGUYAiABKA'
'lCe5JBcDJYQ291bnRyeSBDb2RlIGluIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9y'
'Zy93aWtpL0lTT18zMTY2LTEnPklTT18zMTY2LTE8L2E+IGZvcm1hdEoUWyJGUiIsICJGUkEiLC'
'AiMjUwIl26gQEFcgP4AQFSC0NvdW50cnlDb2RlElsKF0dlb2dyYXBoaWNhbENvb3JkaW5hdGVz'
'GAMgASgLMiEuYXBpLkFkbWluR2VvZ3JhcGhpY2FsQ29vcmRpbmF0ZXNSF0dlb2dyYXBoaWNhbE'
'Nvb3JkaW5hdGVzEhIKBE5hbWUYBCABKAlSBE5hbWUSIAoLUE9Cb3hOdW1iZXIYBSABKAlSC1BP'
'Qm94TnVtYmVyEh4KClBvc3RhbENvZGUYBiABKAlSClBvc3RhbENvZGUSIgoMUHJvdmluY2VDb2'
'RlGAcgASgJUgxQcm92aW5jZUNvZGUSFAoFU3RhdGUYCCABKAlSBVN0YXRlEioKEFN0cmVldEFk'
'ZHJlc3NPbmUYCSABKAlSEFN0cmVldEFkZHJlc3NPbmUSKgoQU3RyZWV0QWRkcmVzc1R3bxgKIA'
'EoCVIQU3RyZWV0QWRkcmVzc1R3bxIuChJTdHJlZXRBZGRyZXNzVGhyZWUYCyABKAlSElN0cmVl'
'dEFkZHJlc3NUaHJlZRIaCghQbHVzQ29kZRgMIAEoCVIIUGx1c0NvZGU=');
'AiMjUwIl36QgVyA/gBAVILQ291bnRyeUNvZGUSWwoXR2VvZ3JhcGhpY2FsQ29vcmRpbmF0ZXMY'
'AyABKAsyIS5hcGkuQWRtaW5HZW9ncmFwaGljYWxDb29yZGluYXRlc1IXR2VvZ3JhcGhpY2FsQ2'
'9vcmRpbmF0ZXMSEgoETmFtZRgEIAEoCVIETmFtZRIgCgtQT0JveE51bWJlchgFIAEoCVILUE9C'
'b3hOdW1iZXISHgoKUG9zdGFsQ29kZRgGIAEoCVIKUG9zdGFsQ29kZRIiCgxQcm92aW5jZUNvZG'
'UYByABKAlSDFByb3ZpbmNlQ29kZRIUCgVTdGF0ZRgIIAEoCVIFU3RhdGUSKgoQU3RyZWV0QWRk'
'cmVzc09uZRgJIAEoCVIQU3RyZWV0QWRkcmVzc09uZRIqChBTdHJlZXRBZGRyZXNzVHdvGAogAS'
'gJUhBTdHJlZXRBZGRyZXNzVHdvEi4KElN0cmVldEFkZHJlc3NUaHJlZRgLIAEoCVISU3RyZWV0'
'QWRkcmVzc1RocmVlEhoKCFBsdXNDb2RlGAwgASgJUghQbHVzQ29kZQ==');
@$core.Deprecated('Use adminGeographicalCoordinatesDescriptor instead')
const AdminGeographicalCoordinates$json = {

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from billing.proto.
// Generated code. Do not modify.
// source: billing.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -28,19 +27,27 @@ class GenerateRequest extends $pb.GeneratedMessage {
$core.String? toDate,
GenerateBillingFormat? outputFormat,
}) {
final result = create();
if (organisationID != null) result.organisationID = organisationID;
if (comment != null) result.comment = comment;
if (fromDate != null) result.fromDate = fromDate;
if (toDate != null) result.toDate = toDate;
if (outputFormat != null) result.outputFormat = outputFormat;
return result;
final $result = create();
if (organisationID != null) {
$result.organisationID = organisationID;
}
if (comment != null) {
$result.comment = comment;
}
if (fromDate != null) {
$result.fromDate = fromDate;
}
if (toDate != null) {
$result.toDate = toDate;
}
if (outputFormat != null) {
$result.outputFormat = outputFormat;
}
return $result;
}
GenerateRequest._();
factory GenerateRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GenerateRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
GenerateRequest._() : super();
factory GenerateRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory GenerateRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GenerateRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
@@ -51,17 +58,21 @@ class GenerateRequest extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
GenerateRequest clone() => GenerateRequest()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
GenerateRequest copyWith(void Function(GenerateRequest) updates) => super.copyWith((message) => updates(message as GenerateRequest)) as GenerateRequest;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GenerateRequest create() => GenerateRequest._();
@$core.override
GenerateRequest createEmptyInstance() => create();
static $pb.PbList<GenerateRequest> createRepeated() => $pb.PbList<GenerateRequest>();
@$core.pragma('dart2js:noInline')
@@ -71,7 +82,7 @@ class GenerateRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get organisationID => $_getSZ(0);
@$pb.TagNumber(1)
set organisationID($core.String value) => $_setString(0, value);
set organisationID($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasOrganisationID() => $_has(0);
@$pb.TagNumber(1)
@@ -80,7 +91,7 @@ class GenerateRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get comment => $_getSZ(1);
@$pb.TagNumber(2)
set comment($core.String value) => $_setString(1, value);
set comment($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasComment() => $_has(1);
@$pb.TagNumber(2)
@@ -90,7 +101,7 @@ class GenerateRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
$core.String get fromDate => $_getSZ(2);
@$pb.TagNumber(3)
set fromDate($core.String value) => $_setString(2, value);
set fromDate($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasFromDate() => $_has(2);
@$pb.TagNumber(3)
@@ -100,7 +111,7 @@ class GenerateRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$core.String get toDate => $_getSZ(3);
@$pb.TagNumber(4)
set toDate($core.String value) => $_setString(3, value);
set toDate($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasToDate() => $_has(3);
@$pb.TagNumber(4)
@@ -109,7 +120,7 @@ class GenerateRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
GenerateBillingFormat get outputFormat => $_getN(4);
@$pb.TagNumber(5)
set outputFormat(GenerateBillingFormat value) => $_setField(5, value);
set outputFormat(GenerateBillingFormat v) { $_setField(5, v); }
@$pb.TagNumber(5)
$core.bool hasOutputFormat() => $_has(4);
@$pb.TagNumber(5)
@@ -120,32 +131,36 @@ class GenerateResult extends $pb.GeneratedMessage {
factory GenerateResult({
$core.String? output,
}) {
final result = create();
if (output != null) result.output = output;
return result;
final $result = create();
if (output != null) {
$result.output = output;
}
return $result;
}
GenerateResult._();
factory GenerateResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory GenerateResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
GenerateResult._() : super();
factory GenerateResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory GenerateResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GenerateResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'Output', protoName: 'Output')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
GenerateResult clone() => GenerateResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
GenerateResult copyWith(void Function(GenerateResult) updates) => super.copyWith((message) => updates(message as GenerateResult)) as GenerateResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static GenerateResult create() => GenerateResult._();
@$core.override
GenerateResult createEmptyInstance() => create();
static $pb.PbList<GenerateResult> createRepeated() => $pb.PbList<GenerateResult>();
@$core.pragma('dart2js:noInline')
@@ -155,7 +170,7 @@ class GenerateResult extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get output => $_getSZ(0);
@$pb.TagNumber(1)
set output($core.String value) => $_setString(0, value);
set output($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasOutput() => $_has(0);
@$pb.TagNumber(1)
@@ -163,5 +178,5 @@ class GenerateResult extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from billing.proto.
// Generated code. Do not modify.
// source: billing.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -25,11 +24,11 @@ class GenerateBillingFormat extends $pb.ProtobufEnum {
BILLING_FORMAT_JSON,
];
static final $core.List<GenerateBillingFormat?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
static GenerateBillingFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
static final $core.Map<$core.int, GenerateBillingFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
static GenerateBillingFormat? valueOf($core.int value) => _byValue[value];
const GenerateBillingFormat._(super.value, super.name);
const GenerateBillingFormat._(super.v, super.n);
}
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from billing.proto.
// Generated code. Do not modify.
// source: billing.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,32 +15,26 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'billing.pb.dart' as $0;
import 'billing.pb.dart' as $54;
export 'billing.pb.dart';
@$pb.GrpcServiceName('api.BillingService')
class BillingServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$generate = $grpc.ClientMethod<$54.GenerateRequest, $54.GenerateResult>(
'/api.BillingService/Generate',
($54.GenerateRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $54.GenerateResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
BillingServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
BillingServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.GenerateResult> generate($0.GenerateRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$54.GenerateResult> generate($54.GenerateRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$generate, request, options: options);
}
// method descriptors
static final _$generate = $grpc.ClientMethod<$0.GenerateRequest, $0.GenerateResult>(
'/api.BillingService/Generate',
($0.GenerateRequest value) => value.writeToBuffer(),
$0.GenerateResult.fromBuffer);
}
@$pb.GrpcServiceName('api.BillingService')
@@ -49,19 +42,18 @@ abstract class BillingServiceBase extends $grpc.Service {
$core.String get $name => 'api.BillingService';
BillingServiceBase() {
$addMethod($grpc.ServiceMethod<$0.GenerateRequest, $0.GenerateResult>(
$addMethod($grpc.ServiceMethod<$54.GenerateRequest, $54.GenerateResult>(
'Generate',
generate_Pre,
false,
false,
($core.List<$core.int> value) => $0.GenerateRequest.fromBuffer(value),
($0.GenerateResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $54.GenerateRequest.fromBuffer(value),
($54.GenerateResult value) => value.writeToBuffer()));
}
$async.Future<$0.GenerateResult> generate_Pre($grpc.ServiceCall $call, $async.Future<$0.GenerateRequest> $request) async {
$async.Future<$54.GenerateResult> generate_Pre($grpc.ServiceCall $call, $async.Future<$54.GenerateRequest> $request) async {
return generate($call, await $request);
}
$async.Future<$0.GenerateResult> generate($grpc.ServiceCall call, $0.GenerateRequest request);
$async.Future<$54.GenerateResult> generate($grpc.ServiceCall call, $54.GenerateRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from billing.proto.
// Generated code. Do not modify.
// source: billing.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -44,15 +43,15 @@ const GenerateRequest$json = {
/// Descriptor for `GenerateRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List generateRequestDescriptor = $convert.base64Decode(
'Cg9HZW5lcmF0ZVJlcXVlc3QSMAoOT3JnYW5pc2F0aW9uSUQYASABKAlCCLqBAQRyAhABUg5Pcm'
'dhbmlzYXRpb25JRBIYCgdDb21tZW50GAIgASgJUgdDb21tZW50En8KCEZyb21EYXRlGAMgASgJ'
'QmOSQVcyVVVUQyBkYXRlL3RpbWUgaW4gPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3'
'JnL3dpa2kvSVNPXzg2MDEnPklTTyA4NjAxPC9hPiBmb3JtYXS6gQEFcgPQAQFSCEZyb21EYXRl'
'EnsKBlRvRGF0ZRgEIAEoCUJjkkFXMlVVVEMgZGF0ZS90aW1lIGluIDxhIGhyZWY9J2h0dHBzOi'
'8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0lTT184NjAxJz5JU08gODYwMTwvYT4gZm9ybWF0uoEB'
'BXID0AEBUgZUb0RhdGUSSQoMT3V0cHV0Rm9ybWF0GAUgASgOMhouYXBpLkdlbmVyYXRlQmlsbG'
'luZ0Zvcm1hdEIJuoEBBYIBAhABUgxPdXRwdXRGb3JtYXQ6KpJBJwol0gEOT3JnYW5pc2F0aW9u'
'SUTSAQhGcm9tRGF0ZdIBBlRvRGF0ZQ==');
'Cg9HZW5lcmF0ZVJlcXVlc3QSLwoOT3JnYW5pc2F0aW9uSUQYASABKAlCB/pCBHICEAFSDk9yZ2'
'FuaXNhdGlvbklEEhgKB0NvbW1lbnQYAiABKAlSB0NvbW1lbnQSfgoIRnJvbURhdGUYAyABKAlC'
'YpJBVzJVVVRDIGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcm'
'cvd2lraS9JU09fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID0AEBUghGcm9tRGF0ZRJ6'
'CgZUb0RhdGUYBCABKAlCYpJBVzJVVVRDIGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2'
'VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID'
'0AEBUgZUb0RhdGUSSAoMT3V0cHV0Rm9ybWF0GAUgASgOMhouYXBpLkdlbmVyYXRlQmlsbGluZ0'
'Zvcm1hdEII+kIFggECEAFSDE91dHB1dEZvcm1hdDoqkkEnCiXSAQ5PcmdhbmlzYXRpb25JRNIB'
'CEZyb21EYXRl0gEGVG9EYXRl');
@$core.Deprecated('Use generateResultDescriptor instead')
const GenerateResult$json = {

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from calendar.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names

View File

@@ -1,361 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from calendar.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
import 'dart:async' as $async;
import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'calendar.pb.dart' as $0;
export 'calendar.pb.dart';
@$pb.GrpcServiceName('api.CalendarService')
class CalendarServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
CalendarServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.CreateOnOrganisationResponse> createOnOrganisation($0.CreateOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$createOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.GetOnOrganisationResponse> getOnOrganisation($0.GetOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.ListOnOrganisationResponse> listOnOrganisation($0.ListOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.UpdateOnOrganisationResponse> updateOnOrganisation($0.UpdateOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$updateOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteOnOrganisationResponse> deleteOnOrganisation($0.DeleteOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation($0.DeleteAllForOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllForOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllForProjectResponse> deleteAllForProject($0.DeleteAllForProjectRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllForProject, request, options: options);
}
$grpc.ResponseFuture<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnOrganisation($0.ComputeSLAPeriodOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$computeSLAPeriodOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.CreateOnSiteResponse> createOnSite($0.CreateOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$createOnSite, request, options: options);
}
$grpc.ResponseFuture<$0.GetOnSiteResponse> getOnSite($0.GetOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getOnSite, request, options: options);
}
$grpc.ResponseFuture<$0.ListOnSiteResponse> listOnSite($0.ListOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$listOnSite, request, options: options);
}
$grpc.ResponseFuture<$0.UpdateOnSiteResponse> updateOnSite($0.UpdateOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$updateOnSite, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteOnSiteResponse> deleteOnSite($0.DeleteOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteOnSite, request, options: options);
}
$grpc.ResponseFuture<$0.GetPublicHolidaysResponse> getPublicHolidays($0.GetPublicHolidaysRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getPublicHolidays, request, options: options);
}
$grpc.ResponseFuture<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnSite($0.ComputeSLAPeriodOnSiteRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$computeSLAPeriodOnSite, request, options: options);
}
// method descriptors
static final _$createOnOrganisation = $grpc.ClientMethod<$0.CreateOnOrganisationRequest, $0.CreateOnOrganisationResponse>(
'/api.CalendarService/CreateOnOrganisation',
($0.CreateOnOrganisationRequest value) => value.writeToBuffer(),
$0.CreateOnOrganisationResponse.fromBuffer);
static final _$getOnOrganisation = $grpc.ClientMethod<$0.GetOnOrganisationRequest, $0.GetOnOrganisationResponse>(
'/api.CalendarService/GetOnOrganisation',
($0.GetOnOrganisationRequest value) => value.writeToBuffer(),
$0.GetOnOrganisationResponse.fromBuffer);
static final _$listOnOrganisation = $grpc.ClientMethod<$0.ListOnOrganisationRequest, $0.ListOnOrganisationResponse>(
'/api.CalendarService/ListOnOrganisation',
($0.ListOnOrganisationRequest value) => value.writeToBuffer(),
$0.ListOnOrganisationResponse.fromBuffer);
static final _$updateOnOrganisation = $grpc.ClientMethod<$0.UpdateOnOrganisationRequest, $0.UpdateOnOrganisationResponse>(
'/api.CalendarService/UpdateOnOrganisation',
($0.UpdateOnOrganisationRequest value) => value.writeToBuffer(),
$0.UpdateOnOrganisationResponse.fromBuffer);
static final _$deleteOnOrganisation = $grpc.ClientMethod<$0.DeleteOnOrganisationRequest, $0.DeleteOnOrganisationResponse>(
'/api.CalendarService/DeleteOnOrganisation',
($0.DeleteOnOrganisationRequest value) => value.writeToBuffer(),
$0.DeleteOnOrganisationResponse.fromBuffer);
static final _$deleteAllForOrganisation = $grpc.ClientMethod<$0.DeleteAllForOrganisationRequest, $0.DeleteAllForOrganisationResponse>(
'/api.CalendarService/DeleteAllForOrganisation',
($0.DeleteAllForOrganisationRequest value) => value.writeToBuffer(),
$0.DeleteAllForOrganisationResponse.fromBuffer);
static final _$deleteAllForProject = $grpc.ClientMethod<$0.DeleteAllForProjectRequest, $0.DeleteAllForProjectResponse>(
'/api.CalendarService/DeleteAllForProject',
($0.DeleteAllForProjectRequest value) => value.writeToBuffer(),
$0.DeleteAllForProjectResponse.fromBuffer);
static final _$computeSLAPeriodOnOrganisation = $grpc.ClientMethod<$0.ComputeSLAPeriodOnOrganisationRequest, $0.ComputeSLAPeriodResponse>(
'/api.CalendarService/ComputeSLAPeriodOnOrganisation',
($0.ComputeSLAPeriodOnOrganisationRequest value) => value.writeToBuffer(),
$0.ComputeSLAPeriodResponse.fromBuffer);
static final _$createOnSite = $grpc.ClientMethod<$0.CreateOnSiteRequest, $0.CreateOnSiteResponse>(
'/api.CalendarService/CreateOnSite',
($0.CreateOnSiteRequest value) => value.writeToBuffer(),
$0.CreateOnSiteResponse.fromBuffer);
static final _$getOnSite = $grpc.ClientMethod<$0.GetOnSiteRequest, $0.GetOnSiteResponse>(
'/api.CalendarService/GetOnSite',
($0.GetOnSiteRequest value) => value.writeToBuffer(),
$0.GetOnSiteResponse.fromBuffer);
static final _$listOnSite = $grpc.ClientMethod<$0.ListOnSiteRequest, $0.ListOnSiteResponse>(
'/api.CalendarService/ListOnSite',
($0.ListOnSiteRequest value) => value.writeToBuffer(),
$0.ListOnSiteResponse.fromBuffer);
static final _$updateOnSite = $grpc.ClientMethod<$0.UpdateOnSiteRequest, $0.UpdateOnSiteResponse>(
'/api.CalendarService/UpdateOnSite',
($0.UpdateOnSiteRequest value) => value.writeToBuffer(),
$0.UpdateOnSiteResponse.fromBuffer);
static final _$deleteOnSite = $grpc.ClientMethod<$0.DeleteOnSiteRequest, $0.DeleteOnSiteResponse>(
'/api.CalendarService/DeleteOnSite',
($0.DeleteOnSiteRequest value) => value.writeToBuffer(),
$0.DeleteOnSiteResponse.fromBuffer);
static final _$getPublicHolidays = $grpc.ClientMethod<$0.GetPublicHolidaysRequest, $0.GetPublicHolidaysResponse>(
'/api.CalendarService/GetPublicHolidays',
($0.GetPublicHolidaysRequest value) => value.writeToBuffer(),
$0.GetPublicHolidaysResponse.fromBuffer);
static final _$computeSLAPeriodOnSite = $grpc.ClientMethod<$0.ComputeSLAPeriodOnSiteRequest, $0.ComputeSLAPeriodResponse>(
'/api.CalendarService/ComputeSLAPeriodOnSite',
($0.ComputeSLAPeriodOnSiteRequest value) => value.writeToBuffer(),
$0.ComputeSLAPeriodResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.CalendarService')
abstract class CalendarServiceBase extends $grpc.Service {
$core.String get $name => 'api.CalendarService';
CalendarServiceBase() {
$addMethod($grpc.ServiceMethod<$0.CreateOnOrganisationRequest, $0.CreateOnOrganisationResponse>(
'CreateOnOrganisation',
createOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateOnOrganisationRequest.fromBuffer(value),
($0.CreateOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetOnOrganisationRequest, $0.GetOnOrganisationResponse>(
'GetOnOrganisation',
getOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetOnOrganisationRequest.fromBuffer(value),
($0.GetOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListOnOrganisationRequest, $0.ListOnOrganisationResponse>(
'ListOnOrganisation',
listOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListOnOrganisationRequest.fromBuffer(value),
($0.ListOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateOnOrganisationRequest, $0.UpdateOnOrganisationResponse>(
'UpdateOnOrganisation',
updateOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.UpdateOnOrganisationRequest.fromBuffer(value),
($0.UpdateOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteOnOrganisationRequest, $0.DeleteOnOrganisationResponse>(
'DeleteOnOrganisation',
deleteOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteOnOrganisationRequest.fromBuffer(value),
($0.DeleteOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllForOrganisationRequest, $0.DeleteAllForOrganisationResponse>(
'DeleteAllForOrganisation',
deleteAllForOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllForOrganisationRequest.fromBuffer(value),
($0.DeleteAllForOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllForProjectRequest, $0.DeleteAllForProjectResponse>(
'DeleteAllForProject',
deleteAllForProject_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllForProjectRequest.fromBuffer(value),
($0.DeleteAllForProjectResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ComputeSLAPeriodOnOrganisationRequest, $0.ComputeSLAPeriodResponse>(
'ComputeSLAPeriodOnOrganisation',
computeSLAPeriodOnOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.ComputeSLAPeriodOnOrganisationRequest.fromBuffer(value),
($0.ComputeSLAPeriodResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.CreateOnSiteRequest, $0.CreateOnSiteResponse>(
'CreateOnSite',
createOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateOnSiteRequest.fromBuffer(value),
($0.CreateOnSiteResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetOnSiteRequest, $0.GetOnSiteResponse>(
'GetOnSite',
getOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetOnSiteRequest.fromBuffer(value),
($0.GetOnSiteResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListOnSiteRequest, $0.ListOnSiteResponse>(
'ListOnSite',
listOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListOnSiteRequest.fromBuffer(value),
($0.ListOnSiteResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateOnSiteRequest, $0.UpdateOnSiteResponse>(
'UpdateOnSite',
updateOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.UpdateOnSiteRequest.fromBuffer(value),
($0.UpdateOnSiteResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteOnSiteRequest, $0.DeleteOnSiteResponse>(
'DeleteOnSite',
deleteOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteOnSiteRequest.fromBuffer(value),
($0.DeleteOnSiteResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetPublicHolidaysRequest, $0.GetPublicHolidaysResponse>(
'GetPublicHolidays',
getPublicHolidays_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetPublicHolidaysRequest.fromBuffer(value),
($0.GetPublicHolidaysResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ComputeSLAPeriodOnSiteRequest, $0.ComputeSLAPeriodResponse>(
'ComputeSLAPeriodOnSite',
computeSLAPeriodOnSite_Pre,
false,
false,
($core.List<$core.int> value) => $0.ComputeSLAPeriodOnSiteRequest.fromBuffer(value),
($0.ComputeSLAPeriodResponse value) => value.writeToBuffer()));
}
$async.Future<$0.CreateOnOrganisationResponse> createOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateOnOrganisationRequest> $request) async {
return createOnOrganisation($call, await $request);
}
$async.Future<$0.CreateOnOrganisationResponse> createOnOrganisation($grpc.ServiceCall call, $0.CreateOnOrganisationRequest request);
$async.Future<$0.GetOnOrganisationResponse> getOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.GetOnOrganisationRequest> $request) async {
return getOnOrganisation($call, await $request);
}
$async.Future<$0.GetOnOrganisationResponse> getOnOrganisation($grpc.ServiceCall call, $0.GetOnOrganisationRequest request);
$async.Future<$0.ListOnOrganisationResponse> listOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.ListOnOrganisationRequest> $request) async {
return listOnOrganisation($call, await $request);
}
$async.Future<$0.ListOnOrganisationResponse> listOnOrganisation($grpc.ServiceCall call, $0.ListOnOrganisationRequest request);
$async.Future<$0.UpdateOnOrganisationResponse> updateOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateOnOrganisationRequest> $request) async {
return updateOnOrganisation($call, await $request);
}
$async.Future<$0.UpdateOnOrganisationResponse> updateOnOrganisation($grpc.ServiceCall call, $0.UpdateOnOrganisationRequest request);
$async.Future<$0.DeleteOnOrganisationResponse> deleteOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteOnOrganisationRequest> $request) async {
return deleteOnOrganisation($call, await $request);
}
$async.Future<$0.DeleteOnOrganisationResponse> deleteOnOrganisation($grpc.ServiceCall call, $0.DeleteOnOrganisationRequest request);
$async.Future<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllForOrganisationRequest> $request) async {
return deleteAllForOrganisation($call, await $request);
}
$async.Future<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation($grpc.ServiceCall call, $0.DeleteAllForOrganisationRequest request);
$async.Future<$0.DeleteAllForProjectResponse> deleteAllForProject_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllForProjectRequest> $request) async {
return deleteAllForProject($call, await $request);
}
$async.Future<$0.DeleteAllForProjectResponse> deleteAllForProject($grpc.ServiceCall call, $0.DeleteAllForProjectRequest request);
$async.Future<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.ComputeSLAPeriodOnOrganisationRequest> $request) async {
return computeSLAPeriodOnOrganisation($call, await $request);
}
$async.Future<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnOrganisation($grpc.ServiceCall call, $0.ComputeSLAPeriodOnOrganisationRequest request);
$async.Future<$0.CreateOnSiteResponse> createOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateOnSiteRequest> $request) async {
return createOnSite($call, await $request);
}
$async.Future<$0.CreateOnSiteResponse> createOnSite($grpc.ServiceCall call, $0.CreateOnSiteRequest request);
$async.Future<$0.GetOnSiteResponse> getOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.GetOnSiteRequest> $request) async {
return getOnSite($call, await $request);
}
$async.Future<$0.GetOnSiteResponse> getOnSite($grpc.ServiceCall call, $0.GetOnSiteRequest request);
$async.Future<$0.ListOnSiteResponse> listOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ListOnSiteRequest> $request) async {
return listOnSite($call, await $request);
}
$async.Future<$0.ListOnSiteResponse> listOnSite($grpc.ServiceCall call, $0.ListOnSiteRequest request);
$async.Future<$0.UpdateOnSiteResponse> updateOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateOnSiteRequest> $request) async {
return updateOnSite($call, await $request);
}
$async.Future<$0.UpdateOnSiteResponse> updateOnSite($grpc.ServiceCall call, $0.UpdateOnSiteRequest request);
$async.Future<$0.DeleteOnSiteResponse> deleteOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteOnSiteRequest> $request) async {
return deleteOnSite($call, await $request);
}
$async.Future<$0.DeleteOnSiteResponse> deleteOnSite($grpc.ServiceCall call, $0.DeleteOnSiteRequest request);
$async.Future<$0.GetPublicHolidaysResponse> getPublicHolidays_Pre($grpc.ServiceCall $call, $async.Future<$0.GetPublicHolidaysRequest> $request) async {
return getPublicHolidays($call, await $request);
}
$async.Future<$0.GetPublicHolidaysResponse> getPublicHolidays($grpc.ServiceCall call, $0.GetPublicHolidaysRequest request);
$async.Future<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ComputeSLAPeriodOnSiteRequest> $request) async {
return computeSLAPeriodOnSite($call, await $request);
}
$async.Future<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnSite($grpc.ServiceCall call, $0.ComputeSLAPeriodOnSiteRequest request);
}

View File

@@ -1,524 +0,0 @@
// This is a generated file - do not edit.
//
// Generated from calendar.proto.
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use workTimeDayDescriptor instead')
const WorkTimeDay$json = {
'1': 'WorkTimeDay',
'2': [
{'1': 'WeekDay', '3': 1, '4': 1, '5': 14, '6': '.api.WeekDay', '10': 'WeekDay'},
{'1': 'IsWorkingDay', '3': 2, '4': 1, '5': 8, '10': 'IsWorkingDay'},
{'1': 'TimeRanges', '3': 3, '4': 3, '5': 11, '6': '.api.TimeRange', '10': 'TimeRanges'},
],
};
/// Descriptor for `WorkTimeDay`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List workTimeDayDescriptor = $convert.base64Decode(
'CgtXb3JrVGltZURheRImCgdXZWVrRGF5GAEgASgOMgwuYXBpLldlZWtEYXlSB1dlZWtEYXkSIg'
'oMSXNXb3JraW5nRGF5GAIgASgIUgxJc1dvcmtpbmdEYXkSLgoKVGltZVJhbmdlcxgDIAMoCzIO'
'LmFwaS5UaW1lUmFuZ2VSClRpbWVSYW5nZXM=');
@$core.Deprecated('Use exceptionalClosureDescriptor instead')
const ExceptionalClosure$json = {
'1': 'ExceptionalClosure',
'2': [
{'1': 'Labels', '3': 1, '4': 3, '5': 11, '6': '.api.LabelByLanguage', '10': 'Labels'},
{'1': 'StartDate', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'StartDate'},
{'1': 'EndDate', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EndDate'},
{'1': 'FullDay', '3': 4, '4': 1, '5': 8, '10': 'FullDay'},
{'1': 'StartHour', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'StartHour'},
{'1': 'EndHour', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'EndHour'},
],
};
/// Descriptor for `ExceptionalClosure`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List exceptionalClosureDescriptor = $convert.base64Decode(
'ChJFeGNlcHRpb25hbENsb3N1cmUSLAoGTGFiZWxzGAEgAygLMhQuYXBpLkxhYmVsQnlMYW5ndW'
'FnZVIGTGFiZWxzEpYBCglTdGFydERhdGUYAiABKAlCeJJBOIoBNV4yMFswLTldezJ9LSgwWzEt'
'OV18MVswLTJdKS0oMFsxLTldfFsxMl1bMC05XXwzWzAxXSkkuoEBOXI3MjVeMjBbMC05XXsyfS'
'0oMFsxLTldfDFbMC0yXSktKDBbMS05XXxbMTJdWzAtOV18M1swMV0pJFIJU3RhcnREYXRlEpIB'
'CgdFbmREYXRlGAMgASgJQniSQTiKATVeMjBbMC05XXsyfS0oMFsxLTldfDFbMC0yXSktKDBbMS'
'05XXxbMTJdWzAtOV18M1swMV0pJLqBATlyNzI1XjIwWzAtOV17Mn0tKDBbMS05XXwxWzAtMl0p'
'LSgwWzEtOV18WzEyXVswLTldfDNbMDFdKSRSB0VuZERhdGUSGAoHRnVsbERheRgEIAEoCFIHRn'
'VsbERheRJuCglTdGFydEhvdXIYBSABKAlCUJJBJIoBIV4oPzpbMDFdWzAtOV18MlswLTNdKTpb'
'MC01XVswLTldJLqBASVyIzIhXig/OlswMV1bMC05XXwyWzAtM10pOlswLTVdWzAtOV0kUglTdG'
'FydEhvdXISagoHRW5kSG91chgGIAEoCUJQkkEkigEhXig/OlswMV1bMC05XXwyWzAtM10pOlsw'
'LTVdWzAtOV0kuoEBJXIjMiFeKD86WzAxXVswLTldfDJbMC0zXSk6WzAtNV1bMC05XSRSB0VuZE'
'hvdXI=');
@$core.Deprecated('Use calendarDescriptor instead')
const Calendar$json = {
'1': 'Calendar',
'2': [
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
{'1': 'RscType', '3': 2, '4': 1, '5': 14, '6': '.api.ResourceType', '10': 'RscType'},
{'1': 'ResourceID', '3': 3, '4': 1, '5': 9, '10': 'ResourceID'},
{'1': 'Name', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'Description', '3': 5, '4': 1, '5': 9, '10': 'Description'},
{'1': 'ExceptionalClosures', '3': 6, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'ExceptionalClosures'},
{'1': 'WorkTimeDays', '3': 7, '4': 3, '5': 11, '6': '.api.WorkTimeDay', '8': {}, '10': 'WorkTimeDays'},
],
};
/// Descriptor for `Calendar`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List calendarDescriptor = $convert.base64Decode(
'CghDYWxlbmRhchIYCgJJRBgBIAEoCUIIuoEBBHICEAFSAklEEisKB1JzY1R5cGUYAiABKA4yES'
'5hcGkuUmVzb3VyY2VUeXBlUgdSc2NUeXBlEh4KClJlc291cmNlSUQYAyABKAlSClJlc291cmNl'
'SUQSHAoETmFtZRgEIAEoCUIIuoEBBHICEAFSBE5hbWUSIAoLRGVzY3JpcHRpb24YBSABKAlSC0'
'Rlc2NyaXB0aW9uEkkKE0V4Y2VwdGlvbmFsQ2xvc3VyZXMYBiADKAsyFy5hcGkuRXhjZXB0aW9u'
'YWxDbG9zdXJlUhNFeGNlcHRpb25hbENsb3N1cmVzEkEKDFdvcmtUaW1lRGF5cxgHIAMoCzIQLm'
'FwaS5Xb3JrVGltZURheUIL6sEYB1dlZWtEYXlSDFdvcmtUaW1lRGF5cw==');
@$core.Deprecated('Use createOnOrganisationRequestDescriptor instead')
const CreateOnOrganisationRequest$json = {
'1': 'CreateOnOrganisationRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestOrganisationHeader', '8': {}, '10': 'Header'},
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'Description', '3': 3, '4': 1, '5': 9, '10': 'Description'},
{'1': 'ExceptionalClosures', '3': 4, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'ExceptionalClosures'},
{'1': 'WorkTimeDays', '3': 7, '4': 3, '5': 11, '6': '.api.WorkTimeDay', '8': {}, '10': 'WorkTimeDays'},
],
'7': {},
};
/// Descriptor for `CreateOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createOnOrganisationRequestDescriptor = $convert.base64Decode(
'ChtDcmVhdGVPbk9yZ2FuaXNhdGlvblJlcXVlc3QSQQoGSGVhZGVyGAEgASgLMh4uYXBpLlJlcX'
'Vlc3RPcmdhbmlzYXRpb25IZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhwKBE5hbWUYAiABKAlC'
'CLqBAQRyAhABUgROYW1lEiAKC0Rlc2NyaXB0aW9uGAMgASgJUgtEZXNjcmlwdGlvbhJJChNFeG'
'NlcHRpb25hbENsb3N1cmVzGAQgAygLMhcuYXBpLkV4Y2VwdGlvbmFsQ2xvc3VyZVITRXhjZXB0'
'aW9uYWxDbG9zdXJlcxJBCgxXb3JrVGltZURheXMYByADKAsyEC5hcGkuV29ya1RpbWVEYXlCC+'
'rBGAdXZWVrRGF5UgxXb3JrVGltZURheXM6FZJBEgoQ0gEGSGVhZGVy0gEETmFtZQ==');
@$core.Deprecated('Use createOnOrganisationResponseDescriptor instead')
const CreateOnOrganisationResponse$json = {
'1': 'CreateOnOrganisationResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `CreateOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createOnOrganisationResponseDescriptor = $convert.base64Decode(
'ChxDcmVhdGVPbk9yZ2FuaXNhdGlvblJlc3BvbnNlEjQKCENhbGVuZGFyGAEgASgLMg0uYXBpLk'
'NhbGVuZGFyQgm6gQEFigECEAFSCENhbGVuZGFy');
@$core.Deprecated('Use getOnOrganisationRequestDescriptor instead')
const GetOnOrganisationRequest$json = {
'1': 'GetOnOrganisationRequest',
'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'},
],
'7': {},
};
/// Descriptor for `GetOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getOnOrganisationRequestDescriptor = $convert.base64Decode(
'ChhHZXRPbk9yZ2FuaXNhdGlvblJlcXVlc3QSQQoGSGVhZGVyGAEgASgLMh4uYXBpLlJlcXVlc3'
'RPcmdhbmlzYXRpb25IZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhgKAklEGAIgASgJQgi6gQEE'
'cgIQAVICSUQ6E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
@$core.Deprecated('Use getOnOrganisationResponseDescriptor instead')
const GetOnOrganisationResponse$json = {
'1': 'GetOnOrganisationResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `GetOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getOnOrganisationResponseDescriptor = $convert.base64Decode(
'ChlHZXRPbk9yZ2FuaXNhdGlvblJlc3BvbnNlEjQKCENhbGVuZGFyGAEgASgLMg0uYXBpLkNhbG'
'VuZGFyQgm6gQEFigECEAFSCENhbGVuZGFy');
@$core.Deprecated('Use listOnOrganisationRequestDescriptor instead')
const ListOnOrganisationRequest$json = {
'1': 'ListOnOrganisationRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestOrganisationHeader', '8': {}, '10': 'Header'},
],
'7': {},
};
/// Descriptor for `ListOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listOnOrganisationRequestDescriptor = $convert.base64Decode(
'ChlMaXN0T25PcmdhbmlzYXRpb25SZXF1ZXN0EkEKBkhlYWRlchgBIAEoCzIeLmFwaS5SZXF1ZX'
'N0T3JnYW5pc2F0aW9uSGVhZGVyQgm6gQEFigECEAFSBkhlYWRlcjoOkkELCgnSAQZIZWFkZXI=');
@$core.Deprecated('Use listOnOrganisationResponseDescriptor instead')
const ListOnOrganisationResponse$json = {
'1': 'ListOnOrganisationResponse',
'2': [
{'1': 'Calendars', '3': 1, '4': 3, '5': 11, '6': '.api.Calendar', '10': 'Calendars'},
],
};
/// Descriptor for `ListOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listOnOrganisationResponseDescriptor = $convert.base64Decode(
'ChpMaXN0T25PcmdhbmlzYXRpb25SZXNwb25zZRIrCglDYWxlbmRhcnMYASADKAsyDS5hcGkuQ2'
'FsZW5kYXJSCUNhbGVuZGFycw==');
@$core.Deprecated('Use updateOnOrganisationRequestDescriptor instead')
const UpdateOnOrganisationRequest$json = {
'1': 'UpdateOnOrganisationRequest',
'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': 'Name', '3': 3, '4': 1, '5': 9, '10': 'Name'},
{'1': 'Description', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Description'},
{'1': 'ExceptionalClosures', '3': 5, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'ExceptionalClosures'},
{'1': 'WorkTimeDays', '3': 7, '4': 3, '5': 11, '6': '.api.WorkTimeDay', '8': {}, '10': 'WorkTimeDays'},
],
'7': {},
};
/// Descriptor for `UpdateOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateOnOrganisationRequestDescriptor = $convert.base64Decode(
'ChtVcGRhdGVPbk9yZ2FuaXNhdGlvblJlcXVlc3QSQQoGSGVhZGVyGAEgASgLMh4uYXBpLlJlcX'
'Vlc3RPcmdhbmlzYXRpb25IZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhgKAklEGAIgASgJQgi6'
'gQEEcgIQAVICSUQSEgoETmFtZRgDIAEoCVIETmFtZRIqCgtEZXNjcmlwdGlvbhgEIAEoCUIIuo'
'EBBHICEAFSC0Rlc2NyaXB0aW9uEkkKE0V4Y2VwdGlvbmFsQ2xvc3VyZXMYBSADKAsyFy5hcGku'
'RXhjZXB0aW9uYWxDbG9zdXJlUhNFeGNlcHRpb25hbENsb3N1cmVzEkEKDFdvcmtUaW1lRGF5cx'
'gHIAMoCzIQLmFwaS5Xb3JrVGltZURheUIL6sEYB1dlZWtEYXlSDFdvcmtUaW1lRGF5czoTkkEQ'
'Cg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use updateOnOrganisationResponseDescriptor instead')
const UpdateOnOrganisationResponse$json = {
'1': 'UpdateOnOrganisationResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `UpdateOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateOnOrganisationResponseDescriptor = $convert.base64Decode(
'ChxVcGRhdGVPbk9yZ2FuaXNhdGlvblJlc3BvbnNlEjQKCENhbGVuZGFyGAEgASgLMg0uYXBpLk'
'NhbGVuZGFyQgm6gQEFigECEAFSCENhbGVuZGFy');
@$core.Deprecated('Use deleteOnOrganisationRequestDescriptor instead')
const DeleteOnOrganisationRequest$json = {
'1': 'DeleteOnOrganisationRequest',
'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'},
],
'7': {},
};
/// Descriptor for `DeleteOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteOnOrganisationRequestDescriptor = $convert.base64Decode(
'ChtEZWxldGVPbk9yZ2FuaXNhdGlvblJlcXVlc3QSQQoGSGVhZGVyGAEgASgLMh4uYXBpLlJlcX'
'Vlc3RPcmdhbmlzYXRpb25IZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhgKAklEGAIgASgJQgi6'
'gQEEcgIQAVICSUQ6E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
@$core.Deprecated('Use deleteOnOrganisationResponseDescriptor instead')
const DeleteOnOrganisationResponse$json = {
'1': 'DeleteOnOrganisationResponse',
};
/// Descriptor for `DeleteOnOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteOnOrganisationResponseDescriptor = $convert.base64Decode(
'ChxEZWxldGVPbk9yZ2FuaXNhdGlvblJlc3BvbnNl');
@$core.Deprecated('Use getPublicHolidaysRequestDescriptor instead')
const GetPublicHolidaysRequest$json = {
'1': 'GetPublicHolidaysRequest',
'2': [
{'1': 'CountryCode', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'CountryCode'},
{'1': 'UpToYear', '3': 2, '4': 1, '5': 13, '8': {}, '10': 'UpToYear'},
],
};
/// Descriptor for `GetPublicHolidaysRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPublicHolidaysRequestDescriptor = $convert.base64Decode(
'ChhHZXRQdWJsaWNIb2xpZGF5c1JlcXVlc3QSKwoLQ291bnRyeUNvZGUYASABKAlCCbqBAQVyA4'
'gCAVILQ291bnRyeUNvZGUSKAoIVXBUb1llYXIYAiABKA1CDLqBAQgqBhCYESjpD1IIVXBUb1ll'
'YXI=');
@$core.Deprecated('Use getPublicHolidaysResponseDescriptor instead')
const GetPublicHolidaysResponse$json = {
'1': 'GetPublicHolidaysResponse',
'2': [
{'1': 'Holidays', '3': 1, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'Holidays'},
],
};
/// Descriptor for `GetPublicHolidaysResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getPublicHolidaysResponseDescriptor = $convert.base64Decode(
'ChlHZXRQdWJsaWNIb2xpZGF5c1Jlc3BvbnNlEjMKCEhvbGlkYXlzGAEgAygLMhcuYXBpLkV4Y2'
'VwdGlvbmFsQ2xvc3VyZVIISG9saWRheXM=');
@$core.Deprecated('Use computeSLAPeriodOnOrganisationRequestDescriptor instead')
const ComputeSLAPeriodOnOrganisationRequest$json = {
'1': 'ComputeSLAPeriodOnOrganisationRequest',
'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': 'minPeriods', '3': 3, '4': 3, '5': 11, '6': '.api.Period', '10': 'minPeriods'},
{'1': 'maxPeriods', '3': 4, '4': 3, '5': 11, '6': '.api.Period', '10': 'maxPeriods'},
{'1': 'StartSearchTime', '3': 5, '4': 1, '5': 9, '10': 'StartSearchTime'},
{'1': 'LimitSearchTime', '3': 6, '4': 1, '5': 9, '10': 'LimitSearchTime'},
],
'7': {},
};
/// Descriptor for `ComputeSLAPeriodOnOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List computeSLAPeriodOnOrganisationRequestDescriptor = $convert.base64Decode(
'CiVDb21wdXRlU0xBUGVyaW9kT25PcmdhbmlzYXRpb25SZXF1ZXN0EkEKBkhlYWRlchgBIAEoCz'
'IeLmFwaS5SZXF1ZXN0T3JnYW5pc2F0aW9uSGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIYCgJJ'
'RBgCIAEoCUIIuoEBBHICEAFSAklEEisKCm1pblBlcmlvZHMYAyADKAsyCy5hcGkuUGVyaW9kUg'
'ptaW5QZXJpb2RzEisKCm1heFBlcmlvZHMYBCADKAsyCy5hcGkuUGVyaW9kUgptYXhQZXJpb2Rz'
'EigKD1N0YXJ0U2VhcmNoVGltZRgFIAEoCVIPU3RhcnRTZWFyY2hUaW1lEigKD0xpbWl0U2Vhcm'
'NoVGltZRgGIAEoCVIPTGltaXRTZWFyY2hUaW1lOiWSQSIKINIBBkhlYWRlctIBAklE0gEPU3Rh'
'cnRTZWFyY2hUaW1l');
@$core.Deprecated('Use createOnSiteRequestDescriptor instead')
const CreateOnSiteRequest$json = {
'1': 'CreateOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
{'1': 'Description', '3': 3, '4': 1, '5': 9, '10': 'Description'},
{'1': 'ExceptionalClosures', '3': 4, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'ExceptionalClosures'},
{'1': 'WorkTimeDays', '3': 7, '4': 3, '5': 11, '6': '.api.WorkTimeDay', '8': {}, '10': 'WorkTimeDays'},
],
'7': {},
};
/// Descriptor for `CreateOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createOnSiteRequestDescriptor = $convert.base64Decode(
'ChNDcmVhdGVPblNpdGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISHAoETmFtZRgCIAEoCUIIuoEBBHICEAFSBE5h'
'bWUSIAoLRGVzY3JpcHRpb24YAyABKAlSC0Rlc2NyaXB0aW9uEkkKE0V4Y2VwdGlvbmFsQ2xvc3'
'VyZXMYBCADKAsyFy5hcGkuRXhjZXB0aW9uYWxDbG9zdXJlUhNFeGNlcHRpb25hbENsb3N1cmVz'
'EkEKDFdvcmtUaW1lRGF5cxgHIAMoCzIQLmFwaS5Xb3JrVGltZURheUIL6sEYB1dlZWtEYXlSDF'
'dvcmtUaW1lRGF5czoVkkESChDSAQZIZWFkZXLSAQROYW1l');
@$core.Deprecated('Use createOnSiteResponseDescriptor instead')
const CreateOnSiteResponse$json = {
'1': 'CreateOnSiteResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `CreateOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createOnSiteResponseDescriptor = $convert.base64Decode(
'ChRDcmVhdGVPblNpdGVSZXNwb25zZRI0CghDYWxlbmRhchgBIAEoCzINLmFwaS5DYWxlbmRhck'
'IJuoEBBYoBAhABUghDYWxlbmRhcg==');
@$core.Deprecated('Use getOnSiteRequestDescriptor instead')
const GetOnSiteRequest$json = {
'1': 'GetOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
],
'7': {},
};
/// Descriptor for `GetOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getOnSiteRequestDescriptor = $convert.base64Decode(
'ChBHZXRPblNpdGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvamVjdE'
'hlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJRDoTkkEQ'
'Cg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use getOnSiteResponseDescriptor instead')
const GetOnSiteResponse$json = {
'1': 'GetOnSiteResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `GetOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getOnSiteResponseDescriptor = $convert.base64Decode(
'ChFHZXRPblNpdGVSZXNwb25zZRI0CghDYWxlbmRhchgBIAEoCzINLmFwaS5DYWxlbmRhckIJuo'
'EBBYoBAhABUghDYWxlbmRhcg==');
@$core.Deprecated('Use listOnSiteRequestDescriptor instead')
const ListOnSiteRequest$json = {
'1': 'ListOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
],
'7': {},
};
/// Descriptor for `ListOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listOnSiteRequestDescriptor = $convert.base64Decode(
'ChFMaXN0T25TaXRlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
@$core.Deprecated('Use listOnSiteResponseDescriptor instead')
const ListOnSiteResponse$json = {
'1': 'ListOnSiteResponse',
'2': [
{'1': 'Calendars', '3': 1, '4': 3, '5': 11, '6': '.api.Calendar', '10': 'Calendars'},
],
};
/// Descriptor for `ListOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listOnSiteResponseDescriptor = $convert.base64Decode(
'ChJMaXN0T25TaXRlUmVzcG9uc2USKwoJQ2FsZW5kYXJzGAEgAygLMg0uYXBpLkNhbGVuZGFyUg'
'lDYWxlbmRhcnM=');
@$core.Deprecated('Use updateOnSiteRequestDescriptor instead')
const UpdateOnSiteRequest$json = {
'1': 'UpdateOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
{'1': 'Name', '3': 3, '4': 1, '5': 9, '10': 'Name'},
{'1': 'Description', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Description'},
{'1': 'ExceptionalClosures', '3': 5, '4': 3, '5': 11, '6': '.api.ExceptionalClosure', '10': 'ExceptionalClosures'},
{'1': 'WorkTimeDays', '3': 7, '4': 3, '5': 11, '6': '.api.WorkTimeDay', '8': {}, '10': 'WorkTimeDays'},
],
'7': {},
};
/// Descriptor for `UpdateOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateOnSiteRequestDescriptor = $convert.base64Decode(
'ChNVcGRhdGVPblNpdGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJRBIS'
'CgROYW1lGAMgASgJUgROYW1lEioKC0Rlc2NyaXB0aW9uGAQgASgJQgi6gQEEcgIQAVILRGVzY3'
'JpcHRpb24SSQoTRXhjZXB0aW9uYWxDbG9zdXJlcxgFIAMoCzIXLmFwaS5FeGNlcHRpb25hbENs'
'b3N1cmVSE0V4Y2VwdGlvbmFsQ2xvc3VyZXMSQQoMV29ya1RpbWVEYXlzGAcgAygLMhAuYXBpLl'
'dvcmtUaW1lRGF5QgvqwRgHV2Vla0RheVIMV29ya1RpbWVEYXlzOhOSQRAKDtIBBkhlYWRlctIB'
'AklE');
@$core.Deprecated('Use updateOnSiteResponseDescriptor instead')
const UpdateOnSiteResponse$json = {
'1': 'UpdateOnSiteResponse',
'2': [
{'1': 'Calendar', '3': 1, '4': 1, '5': 11, '6': '.api.Calendar', '8': {}, '10': 'Calendar'},
],
};
/// Descriptor for `UpdateOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateOnSiteResponseDescriptor = $convert.base64Decode(
'ChRVcGRhdGVPblNpdGVSZXNwb25zZRI0CghDYWxlbmRhchgBIAEoCzINLmFwaS5DYWxlbmRhck'
'IJuoEBBYoBAhABUghDYWxlbmRhcg==');
@$core.Deprecated('Use deleteOnSiteRequestDescriptor instead')
const DeleteOnSiteRequest$json = {
'1': 'DeleteOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
],
'7': {},
};
/// Descriptor for `DeleteOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteOnSiteRequestDescriptor = $convert.base64Decode(
'ChNEZWxldGVPblNpdGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJRDoT'
'kkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use deleteOnSiteResponseDescriptor instead')
const DeleteOnSiteResponse$json = {
'1': 'DeleteOnSiteResponse',
};
/// Descriptor for `DeleteOnSiteResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteOnSiteResponseDescriptor = $convert.base64Decode(
'ChREZWxldGVPblNpdGVSZXNwb25zZQ==');
@$core.Deprecated('Use computeSLAPeriodOnSiteRequestDescriptor instead')
const ComputeSLAPeriodOnSiteRequest$json = {
'1': 'ComputeSLAPeriodOnSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ID'},
{'1': 'minPeriods', '3': 3, '4': 3, '5': 11, '6': '.api.Period', '10': 'minPeriods'},
{'1': 'maxPeriods', '3': 4, '4': 3, '5': 11, '6': '.api.Period', '10': 'maxPeriods'},
{'1': 'StartSearchTime', '3': 5, '4': 1, '5': 9, '10': 'StartSearchTime'},
{'1': 'LimitSearchTime', '3': 6, '4': 1, '5': 9, '10': 'LimitSearchTime'},
],
'7': {},
};
/// Descriptor for `ComputeSLAPeriodOnSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List computeSLAPeriodOnSiteRequestDescriptor = $convert.base64Decode(
'Ch1Db21wdXRlU0xBUGVyaW9kT25TaXRlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEhgKAklEGAIgASgJQgi6gQEE'
'cgIQAVICSUQSKwoKbWluUGVyaW9kcxgDIAMoCzILLmFwaS5QZXJpb2RSCm1pblBlcmlvZHMSKw'
'oKbWF4UGVyaW9kcxgEIAMoCzILLmFwaS5QZXJpb2RSCm1heFBlcmlvZHMSKAoPU3RhcnRTZWFy'
'Y2hUaW1lGAUgASgJUg9TdGFydFNlYXJjaFRpbWUSKAoPTGltaXRTZWFyY2hUaW1lGAYgASgJUg'
'9MaW1pdFNlYXJjaFRpbWU6JZJBIgog0gEGSGVhZGVy0gECSUTSAQ9TdGFydFNlYXJjaFRpbWU=');
@$core.Deprecated('Use computeSLAPeriodResponseDescriptor instead')
const ComputeSLAPeriodResponse$json = {
'1': 'ComputeSLAPeriodResponse',
'2': [
{'1': 'StartSLA', '3': 1, '4': 1, '5': 9, '10': 'StartSLA'},
{'1': 'EndSLA', '3': 2, '4': 1, '5': 9, '10': 'EndSLA'},
],
};
/// Descriptor for `ComputeSLAPeriodResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List computeSLAPeriodResponseDescriptor = $convert.base64Decode(
'ChhDb21wdXRlU0xBUGVyaW9kUmVzcG9uc2USGgoIU3RhcnRTTEEYASABKAlSCFN0YXJ0U0xBEh'
'YKBkVuZFNMQRgCIAEoCVIGRW5kU0xB');
@$core.Deprecated('Use deleteAllForOrganisationRequestDescriptor instead')
const DeleteAllForOrganisationRequest$json = {
'1': 'DeleteAllForOrganisationRequest',
'2': [
{'1': 'OrganisationID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
],
'7': {},
};
/// Descriptor for `DeleteAllForOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllForOrganisationRequestDescriptor = $convert.base64Decode(
'Ch9EZWxldGVBbGxGb3JPcmdhbmlzYXRpb25SZXF1ZXN0EjAKDk9yZ2FuaXNhdGlvbklEGAEgAS'
'gJQgi6gQEEcgIQAVIOT3JnYW5pc2F0aW9uSUQ6FpJBEwoR0gEOT3JnYW5pc2F0aW9uSUQ=');
@$core.Deprecated('Use deleteAllForOrganisationResponseDescriptor instead')
const DeleteAllForOrganisationResponse$json = {
'1': 'DeleteAllForOrganisationResponse',
};
/// Descriptor for `DeleteAllForOrganisationResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllForOrganisationResponseDescriptor = $convert.base64Decode(
'CiBEZWxldGVBbGxGb3JPcmdhbmlzYXRpb25SZXNwb25zZQ==');
@$core.Deprecated('Use deleteAllForProjectRequestDescriptor instead')
const DeleteAllForProjectRequest$json = {
'1': 'DeleteAllForProjectRequest',
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
],
'7': {},
};
/// Descriptor for `DeleteAllForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllForProjectRequestDescriptor = $convert.base64Decode(
'ChpEZWxldGVBbGxGb3JQcm9qZWN0UmVxdWVzdBImCglQcm9qZWN0SUQYASABKAlCCLqBAQRyAh'
'ABUglQcm9qZWN0SUQ6EZJBDgoM0gEJUHJvamVjdElE');
@$core.Deprecated('Use deleteAllForProjectResponseDescriptor instead')
const DeleteAllForProjectResponse$json = {
'1': 'DeleteAllForProjectResponse',
};
/// Descriptor for `DeleteAllForProjectResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteAllForProjectResponseDescriptor = $convert.base64Decode(
'ChtEZWxldGVBbGxGb3JQcm9qZWN0UmVzcG9uc2U=');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from claim-type.proto.
// Generated code. Do not modify.
// source: claim-type.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claim-type.proto.
// Generated code. Do not modify.
// source: claim-type.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,81 +15,66 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'claim-type.pb.dart' as $0;
import 'claim-type.pb.dart' as $44;
export 'claim-type.pb.dart';
@$pb.GrpcServiceName('api.ClaimTypeService')
class ClaimTypeServiceClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$create = $grpc.ClientMethod<$44.CreateClaimTypeRequest, $44.CreateClaimTypeResponse>(
'/api.ClaimTypeService/Create',
($44.CreateClaimTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.CreateClaimTypeResponse.fromBuffer(value));
static final _$get = $grpc.ClientMethod<$44.GetClaimTypeRequest, $44.GetClaimTypeResponse>(
'/api.ClaimTypeService/Get',
($44.GetClaimTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.GetClaimTypeResponse.fromBuffer(value));
static final _$list = $grpc.ClientMethod<$44.ListClaimTypeRequest, $44.ListClaimTypeResponse>(
'/api.ClaimTypeService/List',
($44.ListClaimTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.ListClaimTypeResponse.fromBuffer(value));
static final _$update = $grpc.ClientMethod<$44.UpdateClaimTypeRequest, $44.UpdateClaimTypeResponse>(
'/api.ClaimTypeService/Update',
($44.UpdateClaimTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.UpdateClaimTypeResponse.fromBuffer(value));
static final _$delete = $grpc.ClientMethod<$44.DeleteClaimTypeRequest, $44.DeleteClaimTypeResponse>(
'/api.ClaimTypeService/Delete',
($44.DeleteClaimTypeRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.DeleteClaimTypeResponse.fromBuffer(value));
static final _$deleteClaimTypesForProject = $grpc.ClientMethod<$44.DeleteClaimTypesForProjectRequest, $44.DeleteClaimTypesForProjectResponse>(
'/api.ClaimTypeService/DeleteClaimTypesForProject',
($44.DeleteClaimTypesForProjectRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $44.DeleteClaimTypesForProjectResponse.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
ClaimTypeServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
ClaimTypeServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.CreateClaimTypeResponse> create($0.CreateClaimTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.CreateClaimTypeResponse> create($44.CreateClaimTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$create, request, options: options);
}
$grpc.ResponseFuture<$0.GetClaimTypeResponse> get($0.GetClaimTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.GetClaimTypeResponse> get($44.GetClaimTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$get, request, options: options);
}
$grpc.ResponseFuture<$0.ListClaimTypeResponse> list($0.ListClaimTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.ListClaimTypeResponse> list($44.ListClaimTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$list, request, options: options);
}
$grpc.ResponseFuture<$0.UpdateClaimTypeResponse> update($0.UpdateClaimTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.UpdateClaimTypeResponse> update($44.UpdateClaimTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$update, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteClaimTypeResponse> delete($0.DeleteClaimTypeRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.DeleteClaimTypeResponse> delete($44.DeleteClaimTypeRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$delete, request, options: options);
}
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($0.DeleteClaimTypesForProjectRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$44.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($44.DeleteClaimTypesForProjectRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleteClaimTypesForProject, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteClaimTypesForResourceResponse> deleteClaimTypesForResource($0.DeleteClaimTypesForResourceRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteClaimTypesForResource, request, options: options);
}
// method descriptors
static final _$create = $grpc.ClientMethod<$0.CreateClaimTypeRequest, $0.CreateClaimTypeResponse>(
'/api.ClaimTypeService/Create',
($0.CreateClaimTypeRequest value) => value.writeToBuffer(),
$0.CreateClaimTypeResponse.fromBuffer);
static final _$get = $grpc.ClientMethod<$0.GetClaimTypeRequest, $0.GetClaimTypeResponse>(
'/api.ClaimTypeService/Get',
($0.GetClaimTypeRequest value) => value.writeToBuffer(),
$0.GetClaimTypeResponse.fromBuffer);
static final _$list = $grpc.ClientMethod<$0.ListClaimTypeRequest, $0.ListClaimTypeResponse>(
'/api.ClaimTypeService/List',
($0.ListClaimTypeRequest value) => value.writeToBuffer(),
$0.ListClaimTypeResponse.fromBuffer);
static final _$update = $grpc.ClientMethod<$0.UpdateClaimTypeRequest, $0.UpdateClaimTypeResponse>(
'/api.ClaimTypeService/Update',
($0.UpdateClaimTypeRequest value) => value.writeToBuffer(),
$0.UpdateClaimTypeResponse.fromBuffer);
static final _$delete = $grpc.ClientMethod<$0.DeleteClaimTypeRequest, $0.DeleteClaimTypeResponse>(
'/api.ClaimTypeService/Delete',
($0.DeleteClaimTypeRequest value) => value.writeToBuffer(),
$0.DeleteClaimTypeResponse.fromBuffer);
static final _$deleteClaimTypesForProject = $grpc.ClientMethod<$0.DeleteClaimTypesForProjectRequest, $0.DeleteClaimTypesForProjectResponse>(
'/api.ClaimTypeService/DeleteClaimTypesForProject',
($0.DeleteClaimTypesForProjectRequest value) => value.writeToBuffer(),
$0.DeleteClaimTypesForProjectResponse.fromBuffer);
static final _$deleteClaimTypesForResource = $grpc.ClientMethod<$0.DeleteClaimTypesForResourceRequest, $0.DeleteClaimTypesForResourceResponse>(
'/api.ClaimTypeService/DeleteClaimTypesForResource',
($0.DeleteClaimTypesForResourceRequest value) => value.writeToBuffer(),
$0.DeleteClaimTypesForResourceResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.ClaimTypeService')
@@ -98,97 +82,78 @@ abstract class ClaimTypeServiceBase extends $grpc.Service {
$core.String get $name => 'api.ClaimTypeService';
ClaimTypeServiceBase() {
$addMethod($grpc.ServiceMethod<$0.CreateClaimTypeRequest, $0.CreateClaimTypeResponse>(
$addMethod($grpc.ServiceMethod<$44.CreateClaimTypeRequest, $44.CreateClaimTypeResponse>(
'Create',
create_Pre,
false,
false,
($core.List<$core.int> value) => $0.CreateClaimTypeRequest.fromBuffer(value),
($0.CreateClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetClaimTypeRequest, $0.GetClaimTypeResponse>(
($core.List<$core.int> value) => $44.CreateClaimTypeRequest.fromBuffer(value),
($44.CreateClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$44.GetClaimTypeRequest, $44.GetClaimTypeResponse>(
'Get',
get_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetClaimTypeRequest.fromBuffer(value),
($0.GetClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListClaimTypeRequest, $0.ListClaimTypeResponse>(
($core.List<$core.int> value) => $44.GetClaimTypeRequest.fromBuffer(value),
($44.GetClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$44.ListClaimTypeRequest, $44.ListClaimTypeResponse>(
'List',
list_Pre,
false,
false,
($core.List<$core.int> value) => $0.ListClaimTypeRequest.fromBuffer(value),
($0.ListClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateClaimTypeRequest, $0.UpdateClaimTypeResponse>(
($core.List<$core.int> value) => $44.ListClaimTypeRequest.fromBuffer(value),
($44.ListClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$44.UpdateClaimTypeRequest, $44.UpdateClaimTypeResponse>(
'Update',
update_Pre,
false,
false,
($core.List<$core.int> value) => $0.UpdateClaimTypeRequest.fromBuffer(value),
($0.UpdateClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteClaimTypeRequest, $0.DeleteClaimTypeResponse>(
($core.List<$core.int> value) => $44.UpdateClaimTypeRequest.fromBuffer(value),
($44.UpdateClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$44.DeleteClaimTypeRequest, $44.DeleteClaimTypeResponse>(
'Delete',
delete_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteClaimTypeRequest.fromBuffer(value),
($0.DeleteClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteClaimTypesForProjectRequest, $0.DeleteClaimTypesForProjectResponse>(
($core.List<$core.int> value) => $44.DeleteClaimTypeRequest.fromBuffer(value),
($44.DeleteClaimTypeResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$44.DeleteClaimTypesForProjectRequest, $44.DeleteClaimTypesForProjectResponse>(
'DeleteClaimTypesForProject',
deleteClaimTypesForProject_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteClaimTypesForProjectRequest.fromBuffer(value),
($0.DeleteClaimTypesForProjectResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteClaimTypesForResourceRequest, $0.DeleteClaimTypesForResourceResponse>(
'DeleteClaimTypesForResource',
deleteClaimTypesForResource_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteClaimTypesForResourceRequest.fromBuffer(value),
($0.DeleteClaimTypesForResourceResponse value) => value.writeToBuffer()));
($core.List<$core.int> value) => $44.DeleteClaimTypesForProjectRequest.fromBuffer(value),
($44.DeleteClaimTypesForProjectResponse value) => value.writeToBuffer()));
}
$async.Future<$0.CreateClaimTypeResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateClaimTypeRequest> $request) async {
$async.Future<$44.CreateClaimTypeResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$44.CreateClaimTypeRequest> $request) async {
return create($call, await $request);
}
$async.Future<$0.CreateClaimTypeResponse> create($grpc.ServiceCall call, $0.CreateClaimTypeRequest request);
$async.Future<$0.GetClaimTypeResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetClaimTypeRequest> $request) async {
$async.Future<$44.GetClaimTypeResponse> get_Pre($grpc.ServiceCall $call, $async.Future<$44.GetClaimTypeRequest> $request) async {
return get($call, await $request);
}
$async.Future<$0.GetClaimTypeResponse> get($grpc.ServiceCall call, $0.GetClaimTypeRequest request);
$async.Future<$0.ListClaimTypeResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListClaimTypeRequest> $request) async {
$async.Future<$44.ListClaimTypeResponse> list_Pre($grpc.ServiceCall $call, $async.Future<$44.ListClaimTypeRequest> $request) async {
return list($call, await $request);
}
$async.Future<$0.ListClaimTypeResponse> list($grpc.ServiceCall call, $0.ListClaimTypeRequest request);
$async.Future<$0.UpdateClaimTypeResponse> update_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateClaimTypeRequest> $request) async {
$async.Future<$44.UpdateClaimTypeResponse> update_Pre($grpc.ServiceCall $call, $async.Future<$44.UpdateClaimTypeRequest> $request) async {
return update($call, await $request);
}
$async.Future<$0.UpdateClaimTypeResponse> update($grpc.ServiceCall call, $0.UpdateClaimTypeRequest request);
$async.Future<$0.DeleteClaimTypeResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteClaimTypeRequest> $request) async {
$async.Future<$44.DeleteClaimTypeResponse> delete_Pre($grpc.ServiceCall $call, $async.Future<$44.DeleteClaimTypeRequest> $request) async {
return delete($call, await $request);
}
$async.Future<$0.DeleteClaimTypeResponse> delete($grpc.ServiceCall call, $0.DeleteClaimTypeRequest request);
$async.Future<$0.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteClaimTypesForProjectRequest> $request) async {
$async.Future<$44.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject_Pre($grpc.ServiceCall $call, $async.Future<$44.DeleteClaimTypesForProjectRequest> $request) async {
return deleteClaimTypesForProject($call, await $request);
}
$async.Future<$0.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($grpc.ServiceCall call, $0.DeleteClaimTypesForProjectRequest request);
$async.Future<$0.DeleteClaimTypesForResourceResponse> deleteClaimTypesForResource_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteClaimTypesForResourceRequest> $request) async {
return deleteClaimTypesForResource($call, await $request);
}
$async.Future<$0.DeleteClaimTypesForResourceResponse> deleteClaimTypesForResource($grpc.ServiceCall call, $0.DeleteClaimTypesForResourceRequest request);
$async.Future<$44.CreateClaimTypeResponse> create($grpc.ServiceCall call, $44.CreateClaimTypeRequest request);
$async.Future<$44.GetClaimTypeResponse> get($grpc.ServiceCall call, $44.GetClaimTypeRequest request);
$async.Future<$44.ListClaimTypeResponse> list($grpc.ServiceCall call, $44.ListClaimTypeRequest request);
$async.Future<$44.UpdateClaimTypeResponse> update($grpc.ServiceCall call, $44.UpdateClaimTypeRequest request);
$async.Future<$44.DeleteClaimTypeResponse> delete($grpc.ServiceCall call, $44.DeleteClaimTypeRequest request);
$async.Future<$44.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($grpc.ServiceCall call, $44.DeleteClaimTypesForProjectRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claim-type.proto.
// Generated code. Do not modify.
// source: claim-type.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -33,35 +32,30 @@ const CreateClaimTypeRequest$json = {
{'1': 'DefaultStatus', '3': 13, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'DefaultStatus'},
{'1': 'Sector', '3': 14, '4': 1, '5': 14, '6': '.api.ClaimSector', '8': {}, '10': 'Sector'},
{'1': 'DefaultAssignees', '3': 15, '4': 3, '5': 9, '10': 'DefaultAssignees'},
{'1': 'AllowedAppointmentReaders', '3': 16, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentReaders'},
{'1': 'AllowedAppointmentAttendees', '3': 17, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentAttendees'},
],
'7': {},
};
/// Descriptor for `CreateClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createClaimTypeRequestDescriptor = $convert.base64Decode(
'ChZDcmVhdGVDbGFpbVR5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISIwoGUmVhc29uGAIgASgJQgu6gQEHcgUQ'
'ARj/AVIGUmVhc29uEkwKClJlYXNvbkNvZGUYAyABKAlCLJJBEYoBDl5bYS16QS1aMC05XSskuo'
'EBFHISEAEyDl5bYS16QS1aMC05XSskUgpSZWFzb25Db2RlEj8KCkVudGl0eVR5cGUYBCABKA4y'
'FC5hcGkuQ2xhaW1FbnRpdHlUeXBlQgm6gQEFggECEAFSCkVudGl0eVR5cGUSUAoSRGVmYXVsdE'
'NyaXRpY2FsaXR5GAUgASgOMhUuYXBpLkNsYWltQ3JpdGljYWxpdHlCCbqBAQWCAQIQAVISRGVm'
'YXVsdENyaXRpY2FsaXR5EjYKC1RyYW5zaXRpb25zGAYgAygLMhQuYXBpLkNsYWltVHJhbnNpdG'
'lvblILVHJhbnNpdGlvbnMSQQoQUG9zc2libGVDbG9zdXJlcxgHIAMoCzIVLmFwaS5DbGFpbVR5'
'cGVDbG9zdXJlUhBQb3NzaWJsZUNsb3N1cmVzEjgKF0NyaXRpY2FsaXR5QWxsb3dlZFJvbGVzGA'
'ggAygJUhdDcml0aWNhbGl0eUFsbG93ZWRSb2xlcxIqChBSZWFkQWxsb3dlZFJvbGVzGAkgAygJ'
'UhBSZWFkQWxsb3dlZFJvbGVzEiwKEVdyaXRlQWxsb3dlZFJvbGVzGAogAygJUhFXcml0ZUFsbG'
'93ZWRSb2xlcxIuChJBc3NpZ25BbGxvd2VkUm9sZXMYCyADKAlSEkFzc2lnbkFsbG93ZWRSb2xl'
'cxI6Cg9BbGxvd2VkU3RhdHVzZXMYDCADKA4yEC5hcGkuQ2xhaW1TdGF0dXNSD0FsbG93ZWRTdG'
'F0dXNlcxJBCg1EZWZhdWx0U3RhdHVzGA0gASgOMhAuYXBpLkNsYWltU3RhdHVzQgm6gQEFggEC'
'EAFSDURlZmF1bHRTdGF0dXMSMwoGU2VjdG9yGA4gASgOMhAuYXBpLkNsYWltU2VjdG9yQgm6gQ'
'EFggECEAFSBlNlY3RvchIqChBEZWZhdWx0QXNzaWduZWVzGA8gAygJUhBEZWZhdWx0QXNzaWdu'
'ZWVzEl0KGUFsbG93ZWRBcHBvaW50bWVudFJlYWRlcnMYECABKAsyHy5hcGkuQ2xhaW1UeXBlRX'
'h0cmFBbGxvd2VkVXNlcnNSGUFsbG93ZWRBcHBvaW50bWVudFJlYWRlcnMSYQobQWxsb3dlZEFw'
'cG9pbnRtZW50QXR0ZW5kZWVzGBEgASgLMh8uYXBpLkNsYWltVHlwZUV4dHJhQWxsb3dlZFVzZX'
'JzUhtBbGxvd2VkQXBwb2ludG1lbnRBdHRlbmRlZXM6OZJBNgo00gEGSGVhZGVy0gEGUmVhc29u'
'0gEKRW50aXR5VHlwZdIBEkRlZmF1bHRDcml0aWNhbGl0eQ==');
'ChZDcmVhdGVDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIiCgZSZWFzb24YAiABKAlCCvpCB3IFEAEY'
'/wFSBlJlYXNvbhJLCgpSZWFzb25Db2RlGAMgASgJQiuSQRGKAQ5eW2EtekEtWjAtOV0rJPpCFH'
'ISEAEyDl5bYS16QS1aMC05XSskUgpSZWFzb25Db2RlEj4KCkVudGl0eVR5cGUYBCABKA4yFC5h'
'cGkuQ2xhaW1FbnRpdHlUeXBlQgj6QgWCAQIQAVIKRW50aXR5VHlwZRJPChJEZWZhdWx0Q3JpdG'
'ljYWxpdHkYBSABKA4yFS5hcGkuQ2xhaW1Dcml0aWNhbGl0eUII+kIFggECEAFSEkRlZmF1bHRD'
'cml0aWNhbGl0eRI2CgtUcmFuc2l0aW9ucxgGIAMoCzIULmFwaS5DbGFpbVRyYW5zaXRpb25SC1'
'RyYW5zaXRpb25zEkEKEFBvc3NpYmxlQ2xvc3VyZXMYByADKAsyFS5hcGkuQ2xhaW1UeXBlQ2xv'
'c3VyZVIQUG9zc2libGVDbG9zdXJlcxI4ChdDcml0aWNhbGl0eUFsbG93ZWRSb2xlcxgIIAMoCV'
'IXQ3JpdGljYWxpdHlBbGxvd2VkUm9sZXMSKgoQUmVhZEFsbG93ZWRSb2xlcxgJIAMoCVIQUmVh'
'ZEFsbG93ZWRSb2xlcxIsChFXcml0ZUFsbG93ZWRSb2xlcxgKIAMoCVIRV3JpdGVBbGxvd2VkUm'
'9sZXMSLgoSQXNzaWduQWxsb3dlZFJvbGVzGAsgAygJUhJBc3NpZ25BbGxvd2VkUm9sZXMSOgoP'
'QWxsb3dlZFN0YXR1c2VzGAwgAygOMhAuYXBpLkNsYWltU3RhdHVzUg9BbGxvd2VkU3RhdHVzZX'
'MSQAoNRGVmYXVsdFN0YXR1cxgNIAEoDjIQLmFwaS5DbGFpbVN0YXR1c0II+kIFggECEAFSDURl'
'ZmF1bHRTdGF0dXMSMgoGU2VjdG9yGA4gASgOMhAuYXBpLkNsYWltU2VjdG9yQgj6QgWCAQIQAV'
'IGU2VjdG9yEioKEERlZmF1bHRBc3NpZ25lZXMYDyADKAlSEERlZmF1bHRBc3NpZ25lZXM6OZJB'
'Ngo00gEGSGVhZGVy0gEGUmVhc29u0gEKRW50aXR5VHlwZdIBEkRlZmF1bHRDcml0aWNhbGl0eQ'
'==');
@$core.Deprecated('Use createClaimTypeResponseDescriptor instead')
const CreateClaimTypeResponse$json = {
@@ -73,8 +67,8 @@ const CreateClaimTypeResponse$json = {
/// Descriptor for `CreateClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createClaimTypeResponseDescriptor = $convert.base64Decode(
'ChdDcmVhdGVDbGFpbVR5cGVSZXNwb25zZRI3CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
'1UeXBlQgm6gQEFigECEAFSCUNsYWltVHlwZQ==');
'ChdDcmVhdGVDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
'1UeXBlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
@$core.Deprecated('Use getClaimTypeRequestDescriptor instead')
const GetClaimTypeRequest$json = {
@@ -88,9 +82,9 @@ const GetClaimTypeRequest$json = {
/// Descriptor for `GetClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getClaimTypeRequestDescriptor = $convert.base64Decode(
'ChNHZXRDbGFpbVR5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJRDoT'
'kkEQCg7SAQZIZWFkZXLSAQJJRA==');
'ChNHZXRDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQ6E5JB'
'EAoO0gEGSGVhZGVy0gECSUQ=');
@$core.Deprecated('Use getClaimTypeResponseDescriptor instead')
const GetClaimTypeResponse$json = {
@@ -102,8 +96,8 @@ const GetClaimTypeResponse$json = {
/// Descriptor for `GetClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getClaimTypeResponseDescriptor = $convert.base64Decode(
'ChRHZXRDbGFpbVR5cGVSZXNwb25zZRI3CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW1UeX'
'BlQgm6gQEFigECEAFSCUNsYWltVHlwZQ==');
'ChRHZXRDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW1UeX'
'BlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
@$core.Deprecated('Use listClaimTypeRequestDescriptor instead')
const ListClaimTypeRequest$json = {
@@ -116,8 +110,8 @@ const ListClaimTypeRequest$json = {
/// Descriptor for `ListClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List listClaimTypeRequestDescriptor = $convert.base64Decode(
'ChRMaXN0Q2xhaW1UeXBlUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
'ChRMaXN0Q2xhaW1UeXBlUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
'plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use listClaimTypeResponseDescriptor instead')
const ListClaimTypeResponse$json = {
@@ -149,32 +143,26 @@ const UpdateClaimTypeRequest$json = {
{'1': 'DefaultStatus', '3': 11, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'DefaultStatus'},
{'1': 'Sector', '3': 12, '4': 1, '5': 14, '6': '.api.ClaimSector', '8': {}, '10': 'Sector'},
{'1': 'DefaultAssignees', '3': 13, '4': 3, '5': 9, '10': 'DefaultAssignees'},
{'1': 'AllowedAppointmentReaders', '3': 14, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentReaders'},
{'1': 'AllowedAppointmentAttendees', '3': 15, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentAttendees'},
],
'7': {},
};
/// Descriptor for `UpdateClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateClaimTypeRequestDescriptor = $convert.base64Decode(
'ChZVcGRhdGVDbGFpbVR5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJ'
'RBJQChJEZWZhdWx0Q3JpdGljYWxpdHkYAyABKA4yFS5hcGkuQ2xhaW1Dcml0aWNhbGl0eUIJuo'
'EBBYIBAhABUhJEZWZhdWx0Q3JpdGljYWxpdHkSNgoLVHJhbnNpdGlvbnMYBCADKAsyFC5hcGku'
'Q2xhaW1UcmFuc2l0aW9uUgtUcmFuc2l0aW9ucxJBChBQb3NzaWJsZUNsb3N1cmVzGAUgAygLMh'
'UuYXBpLkNsYWltVHlwZUNsb3N1cmVSEFBvc3NpYmxlQ2xvc3VyZXMSOAoXQ3JpdGljYWxpdHlB'
'bGxvd2VkUm9sZXMYBiADKAlSF0NyaXRpY2FsaXR5QWxsb3dlZFJvbGVzEioKEFJlYWRBbGxvd2'
'VkUm9sZXMYByADKAlSEFJlYWRBbGxvd2VkUm9sZXMSLAoRV3JpdGVBbGxvd2VkUm9sZXMYCCAD'
'KAlSEVdyaXRlQWxsb3dlZFJvbGVzEi4KEkFzc2lnbkFsbG93ZWRSb2xlcxgJIAMoCVISQXNzaW'
'duQWxsb3dlZFJvbGVzEjoKD0FsbG93ZWRTdGF0dXNlcxgKIAMoDjIQLmFwaS5DbGFpbVN0YXR1'
'c1IPQWxsb3dlZFN0YXR1c2VzEkEKDURlZmF1bHRTdGF0dXMYCyABKA4yEC5hcGkuQ2xhaW1TdG'
'F0dXNCCbqBAQWCAQIQAVINRGVmYXVsdFN0YXR1cxIzCgZTZWN0b3IYDCABKA4yEC5hcGkuQ2xh'
'aW1TZWN0b3JCCbqBAQWCAQIQAVIGU2VjdG9yEioKEERlZmF1bHRBc3NpZ25lZXMYDSADKAlSEE'
'RlZmF1bHRBc3NpZ25lZXMSXQoZQWxsb3dlZEFwcG9pbnRtZW50UmVhZGVycxgOIAEoCzIfLmFw'
'aS5DbGFpbVR5cGVFeHRyYUFsbG93ZWRVc2Vyc1IZQWxsb3dlZEFwcG9pbnRtZW50UmVhZGVycx'
'JhChtBbGxvd2VkQXBwb2ludG1lbnRBdHRlbmRlZXMYDyABKAsyHy5hcGkuQ2xhaW1UeXBlRXh0'
'cmFBbGxvd2VkVXNlcnNSG0FsbG93ZWRBcHBvaW50bWVudEF0dGVuZGVlczockkEZChfSAQZIZW'
'FkZXLSAQJJRNIBBlJlYXNvbg==');
'ChZVcGRhdGVDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQS'
'TwoSRGVmYXVsdENyaXRpY2FsaXR5GAMgASgOMhUuYXBpLkNsYWltQ3JpdGljYWxpdHlCCPpCBY'
'IBAhABUhJEZWZhdWx0Q3JpdGljYWxpdHkSNgoLVHJhbnNpdGlvbnMYBCADKAsyFC5hcGkuQ2xh'
'aW1UcmFuc2l0aW9uUgtUcmFuc2l0aW9ucxJBChBQb3NzaWJsZUNsb3N1cmVzGAUgAygLMhUuYX'
'BpLkNsYWltVHlwZUNsb3N1cmVSEFBvc3NpYmxlQ2xvc3VyZXMSOAoXQ3JpdGljYWxpdHlBbGxv'
'd2VkUm9sZXMYBiADKAlSF0NyaXRpY2FsaXR5QWxsb3dlZFJvbGVzEioKEFJlYWRBbGxvd2VkUm'
'9sZXMYByADKAlSEFJlYWRBbGxvd2VkUm9sZXMSLAoRV3JpdGVBbGxvd2VkUm9sZXMYCCADKAlS'
'EVdyaXRlQWxsb3dlZFJvbGVzEi4KEkFzc2lnbkFsbG93ZWRSb2xlcxgJIAMoCVISQXNzaWduQW'
'xsb3dlZFJvbGVzEjoKD0FsbG93ZWRTdGF0dXNlcxgKIAMoDjIQLmFwaS5DbGFpbVN0YXR1c1IP'
'QWxsb3dlZFN0YXR1c2VzEkAKDURlZmF1bHRTdGF0dXMYCyABKA4yEC5hcGkuQ2xhaW1TdGF0dX'
'NCCPpCBYIBAhABUg1EZWZhdWx0U3RhdHVzEjIKBlNlY3RvchgMIAEoDjIQLmFwaS5DbGFpbVNl'
'Y3RvckII+kIFggECEAFSBlNlY3RvchIqChBEZWZhdWx0QXNzaWduZWVzGA0gAygJUhBEZWZhdW'
'x0QXNzaWduZWVzOhySQRkKF9IBBkhlYWRlctIBAklE0gEGUmVhc29u');
@$core.Deprecated('Use updateClaimTypeResponseDescriptor instead')
const UpdateClaimTypeResponse$json = {
@@ -186,8 +174,8 @@ const UpdateClaimTypeResponse$json = {
/// Descriptor for `UpdateClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List updateClaimTypeResponseDescriptor = $convert.base64Decode(
'ChdVcGRhdGVDbGFpbVR5cGVSZXNwb25zZRI3CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
'1UeXBlQgm6gQEFigECEAFSCUNsYWltVHlwZQ==');
'ChdVcGRhdGVDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
'1UeXBlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
@$core.Deprecated('Use deleteClaimTypeRequestDescriptor instead')
const DeleteClaimTypeRequest$json = {
@@ -201,9 +189,9 @@ const DeleteClaimTypeRequest$json = {
/// Descriptor for `DeleteClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteClaimTypeRequestDescriptor = $convert.base64Decode(
'ChZEZWxldGVDbGFpbVR5cGVSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISGAoCSUQYAiABKAlCCLqBAQRyAhABUgJJ'
'RDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
'ChZEZWxldGVDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQ6'
'E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
@$core.Deprecated('Use deleteClaimTypeResponseDescriptor instead')
const DeleteClaimTypeResponse$json = {
@@ -220,44 +208,20 @@ const DeleteClaimTypesForProjectRequest$json = {
'2': [
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
],
'7': {'3': true},
'7': {},
};
/// Descriptor for `DeleteClaimTypesForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteClaimTypesForProjectRequestDescriptor = $convert.base64Decode(
'CiFEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlcXVlc3QSJgoJUHJvamVjdElEGAEgASgJQg'
'i6gQEEcgIQAVIJUHJvamVjdElEOhMYAZJBDgoM0gEJUHJvamVjdElE');
'CiFEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlcXVlc3QSJQoJUHJvamVjdElEGAEgASgJQg'
'f6QgRyAhABUglQcm9qZWN0SUQ6EZJBDgoM0gEJUHJvamVjdElE');
@$core.Deprecated('Use deleteClaimTypesForProjectResponseDescriptor instead')
const DeleteClaimTypesForProjectResponse$json = {
'1': 'DeleteClaimTypesForProjectResponse',
'7': {'3': true},
};
/// Descriptor for `DeleteClaimTypesForProjectResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteClaimTypesForProjectResponseDescriptor = $convert.base64Decode(
'CiJEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlc3BvbnNlOgIYAQ==');
@$core.Deprecated('Use deleteClaimTypesForResourceRequestDescriptor instead')
const DeleteClaimTypesForResourceRequest$json = {
'1': 'DeleteClaimTypesForResourceRequest',
'2': [
{'1': 'ResourceID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ResourceID'},
],
'7': {},
};
/// Descriptor for `DeleteClaimTypesForResourceRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteClaimTypesForResourceRequestDescriptor = $convert.base64Decode(
'CiJEZWxldGVDbGFpbVR5cGVzRm9yUmVzb3VyY2VSZXF1ZXN0EigKClJlc291cmNlSUQYASABKA'
'lCCLqBAQRyAhABUgpSZXNvdXJjZUlEOhKSQQ8KDdIBClJlc291cmNlSUQ=');
@$core.Deprecated('Use deleteClaimTypesForResourceResponseDescriptor instead')
const DeleteClaimTypesForResourceResponse$json = {
'1': 'DeleteClaimTypesForResourceResponse',
};
/// Descriptor for `DeleteClaimTypesForResourceResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List deleteClaimTypesForResourceResponseDescriptor = $convert.base64Decode(
'CiNEZWxldGVDbGFpbVR5cGVzRm9yUmVzb3VyY2VSZXNwb25zZQ==');
'CiJEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlc3BvbnNl');

View File

@@ -1,21 +1,21 @@
// This is a generated file - do not edit.
//
// Generated from claim.proto.
// Generated code. Do not modify.
// source: claim.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'collabShared.pb.dart' as $1;
import 'shared.pb.dart' as $0;
import 'collabShared.pb.dart' as $87;
import 'shared.pb.dart' as $29;
import 'shared.pbenum.dart' as $29;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
@@ -23,40 +23,48 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
/// Aggregation object message
class Claim extends $pb.GeneratedMessage {
factory Claim({
$0.EventHeader? lastEventHeader,
$0.EntityID? iD,
$29.EventHeader? lastEventHeader,
$29.EntityID? iD,
ClaimPayload? payload,
}) {
final result = create();
if (lastEventHeader != null) result.lastEventHeader = lastEventHeader;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
return result;
final $result = create();
if (lastEventHeader != null) {
$result.lastEventHeader = lastEventHeader;
}
if (iD != null) {
$result.iD = iD;
}
if (payload != null) {
$result.payload = payload;
}
return $result;
}
Claim._();
factory Claim.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Claim.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
Claim._() : super();
factory Claim.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory Claim.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Claim', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$0.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $0.EventHeader.create)
..aOM<$0.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $0.EntityID.create)
..aOM<$29.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $29.EventHeader.create)
..aOM<$29.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $29.EntityID.create)
..aOM<ClaimPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ClaimPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Claim clone() => Claim()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Claim copyWith(void Function(Claim) updates) => super.copyWith((message) => updates(message as Claim)) as Claim;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Claim create() => Claim._();
@$core.override
Claim createEmptyInstance() => create();
static $pb.PbList<Claim> createRepeated() => $pb.PbList<Claim>();
@$core.pragma('dart2js:noInline')
@@ -64,31 +72,31 @@ class Claim extends $pb.GeneratedMessage {
static Claim? _defaultInstance;
@$pb.TagNumber(1)
$0.EventHeader get lastEventHeader => $_getN(0);
$29.EventHeader get lastEventHeader => $_getN(0);
@$pb.TagNumber(1)
set lastEventHeader($0.EventHeader value) => $_setField(1, value);
set lastEventHeader($29.EventHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasLastEventHeader() => $_has(0);
@$pb.TagNumber(1)
void clearLastEventHeader() => $_clearField(1);
@$pb.TagNumber(1)
$0.EventHeader ensureLastEventHeader() => $_ensure(0);
$29.EventHeader ensureLastEventHeader() => $_ensure(0);
@$pb.TagNumber(2)
$0.EntityID get iD => $_getN(1);
$29.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($0.EntityID value) => $_setField(2, value);
set iD($29.EntityID v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$0.EntityID ensureID() => $_ensure(1);
$29.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
ClaimPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(ClaimPayload value) => $_setField(3, value);
set payload(ClaimPayload v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
@@ -101,96 +109,131 @@ class ClaimPayload extends $pb.GeneratedMessage {
factory ClaimPayload({
$core.String? claimTypeID,
$core.String? entityID,
$0.ClaimCriticality? criticality,
$1.ClaimStatusStruct? status,
@$core.Deprecated('This field is deprecated.')
$29.ClaimCriticality? criticality,
$87.ClaimStatusStruct? status,
$core.String? creationDate,
$core.Iterable<$core.String>? assignees,
$core.String? endComment,
$0.ClaimClosure? closure,
$core.Iterable<$0.AttachmentSummary>? attachments,
$29.ClaimClosure? closure,
$core.Iterable<$29.AttachmentSummary>? attachments,
$core.int? attachmentNumber,
$0.Amount? amount,
$29.Amount? amount,
$core.String? reason,
$0.ClaimSector? sector,
$0.ClaimEntityType? entityType,
$29.ClaimSector? sector,
$29.ClaimEntityType? entityType,
$core.Iterable<$core.String>? removedAssignees,
$core.Iterable<$core.String>? addedAssignees,
$core.String? reasonCode,
$core.Iterable<$0.MetadataElement>? metaData,
$core.Iterable<$29.MetadataElement>? metaData,
$core.String? title,
$core.String? displayID,
$core.String? message,
$0.DateTime? creationDateTime,
}) {
final result = create();
if (claimTypeID != null) result.claimTypeID = claimTypeID;
if (entityID != null) result.entityID = entityID;
if (criticality != null) result.criticality = criticality;
if (status != null) result.status = status;
if (creationDate != null) result.creationDate = creationDate;
if (assignees != null) result.assignees.addAll(assignees);
if (endComment != null) result.endComment = endComment;
if (closure != null) result.closure = closure;
if (attachments != null) result.attachments.addAll(attachments);
if (attachmentNumber != null) result.attachmentNumber = attachmentNumber;
if (amount != null) result.amount = amount;
if (reason != null) result.reason = reason;
if (sector != null) result.sector = sector;
if (entityType != null) result.entityType = entityType;
if (removedAssignees != null) result.removedAssignees.addAll(removedAssignees);
if (addedAssignees != null) result.addedAssignees.addAll(addedAssignees);
if (reasonCode != null) result.reasonCode = reasonCode;
if (metaData != null) result.metaData.addAll(metaData);
if (title != null) result.title = title;
if (displayID != null) result.displayID = displayID;
if (message != null) result.message = message;
if (creationDateTime != null) result.creationDateTime = creationDateTime;
return result;
final $result = create();
if (claimTypeID != null) {
$result.claimTypeID = claimTypeID;
}
if (entityID != null) {
$result.entityID = entityID;
}
if (criticality != null) {
$result.criticality = criticality;
}
if (status != null) {
$result.status = status;
}
if (creationDate != null) {
$result.creationDate = creationDate;
}
if (assignees != null) {
$result.assignees.addAll(assignees);
}
if (endComment != null) {
$result.endComment = endComment;
}
if (closure != null) {
$result.closure = closure;
}
if (attachments != null) {
$result.attachments.addAll(attachments);
}
if (attachmentNumber != null) {
$result.attachmentNumber = attachmentNumber;
}
if (amount != null) {
$result.amount = amount;
}
if (reason != null) {
$result.reason = reason;
}
if (sector != null) {
$result.sector = sector;
}
if (entityType != null) {
$result.entityType = entityType;
}
if (removedAssignees != null) {
$result.removedAssignees.addAll(removedAssignees);
}
if (addedAssignees != null) {
$result.addedAssignees.addAll(addedAssignees);
}
if (reasonCode != null) {
$result.reasonCode = reasonCode;
}
if (metaData != null) {
$result.metaData.addAll(metaData);
}
if (title != null) {
$result.title = title;
}
if (displayID != null) {
$result.displayID = displayID;
}
return $result;
}
ClaimPayload._();
factory ClaimPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimPayload._() : super();
factory ClaimPayload.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimPayload.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ClaimTypeID', protoName: 'ClaimTypeID')
..aOS(2, _omitFieldNames ? '' : 'EntityID', protoName: 'EntityID')
..e<$0.ClaimCriticality>(3, _omitFieldNames ? '' : 'Criticality', $pb.PbFieldType.OE, protoName: 'Criticality', defaultOrMaker: $0.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $0.ClaimCriticality.valueOf, enumValues: $0.ClaimCriticality.values)
..aOM<$1.ClaimStatusStruct>(4, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $1.ClaimStatusStruct.create)
..e<$29.ClaimCriticality>(3, _omitFieldNames ? '' : 'Criticality', $pb.PbFieldType.OE, protoName: 'Criticality', defaultOrMaker: $29.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $29.ClaimCriticality.valueOf, enumValues: $29.ClaimCriticality.values)
..aOM<$87.ClaimStatusStruct>(4, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $87.ClaimStatusStruct.create)
..aOS(6, _omitFieldNames ? '' : 'CreationDate', protoName: 'CreationDate')
..pPS(7, _omitFieldNames ? '' : 'Assignees', protoName: 'Assignees')
..aOS(8, _omitFieldNames ? '' : 'EndComment', protoName: 'EndComment')
..aOM<$0.ClaimClosure>(9, _omitFieldNames ? '' : 'Closure', protoName: 'Closure', subBuilder: $0.ClaimClosure.create)
..pc<$0.AttachmentSummary>(10, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $0.AttachmentSummary.create)
..aOM<$29.ClaimClosure>(9, _omitFieldNames ? '' : 'Closure', protoName: 'Closure', subBuilder: $29.ClaimClosure.create)
..pc<$29.AttachmentSummary>(10, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $29.AttachmentSummary.create)
..a<$core.int>(11, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
..aOM<$0.Amount>(12, _omitFieldNames ? '' : 'Amount', protoName: 'Amount', subBuilder: $0.Amount.create)
..aOM<$29.Amount>(12, _omitFieldNames ? '' : 'Amount', protoName: 'Amount', subBuilder: $29.Amount.create)
..aOS(13, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..e<$0.ClaimSector>(14, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $0.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $0.ClaimSector.valueOf, enumValues: $0.ClaimSector.values)
..e<$0.ClaimEntityType>(15, _omitFieldNames ? '' : 'EntityType', $pb.PbFieldType.OE, protoName: 'EntityType', defaultOrMaker: $0.ClaimEntityType.CLAIM_ENTITY_TYPE_UNKNOWN, valueOf: $0.ClaimEntityType.valueOf, enumValues: $0.ClaimEntityType.values)
..e<$29.ClaimSector>(14, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $29.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $29.ClaimSector.valueOf, enumValues: $29.ClaimSector.values)
..e<$29.ClaimEntityType>(15, _omitFieldNames ? '' : 'EntityType', $pb.PbFieldType.OE, protoName: 'EntityType', defaultOrMaker: $29.ClaimEntityType.CLAIM_ENTITY_TYPE_UNKNOWN, valueOf: $29.ClaimEntityType.valueOf, enumValues: $29.ClaimEntityType.values)
..pPS(16, _omitFieldNames ? '' : 'RemovedAssignees', protoName: 'RemovedAssignees')
..pPS(17, _omitFieldNames ? '' : 'AddedAssignees', protoName: 'AddedAssignees')
..aOS(18, _omitFieldNames ? '' : 'ReasonCode', protoName: 'ReasonCode')
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $0.MetadataElement.create)
..pc<$29.MetadataElement>(19, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $29.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'Title', protoName: 'Title')
..aOS(21, _omitFieldNames ? '' : 'DisplayID', protoName: 'DisplayID')
..aOS(22, _omitFieldNames ? '' : 'Message', protoName: 'Message')
..aOM<$0.DateTime>(23, _omitFieldNames ? '' : 'CreationDateTime', protoName: 'CreationDateTime', subBuilder: $0.DateTime.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimPayload clone() => ClaimPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimPayload copyWith(void Function(ClaimPayload) updates) => super.copyWith((message) => updates(message as ClaimPayload)) as ClaimPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimPayload create() => ClaimPayload._();
@$core.override
ClaimPayload createEmptyInstance() => create();
static $pb.PbList<ClaimPayload> createRepeated() => $pb.PbList<ClaimPayload>();
@$core.pragma('dart2js:noInline')
@@ -201,7 +244,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get claimTypeID => $_getSZ(0);
@$pb.TagNumber(1)
set claimTypeID($core.String value) => $_setString(0, value);
set claimTypeID($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasClaimTypeID() => $_has(0);
@$pb.TagNumber(1)
@@ -211,7 +254,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get entityID => $_getSZ(1);
@$pb.TagNumber(2)
set entityID($core.String value) => $_setString(1, value);
set entityID($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasEntityID() => $_has(1);
@$pb.TagNumber(2)
@@ -219,9 +262,9 @@ class ClaimPayload extends $pb.GeneratedMessage {
/// Criticality of the claim
@$pb.TagNumber(3)
$0.ClaimCriticality get criticality => $_getN(2);
$29.ClaimCriticality get criticality => $_getN(2);
@$pb.TagNumber(3)
set criticality($0.ClaimCriticality value) => $_setField(3, value);
set criticality($29.ClaimCriticality v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasCriticality() => $_has(2);
@$pb.TagNumber(3)
@@ -229,28 +272,23 @@ class ClaimPayload extends $pb.GeneratedMessage {
/// Status of the claim
@$pb.TagNumber(4)
$1.ClaimStatusStruct get status => $_getN(3);
$87.ClaimStatusStruct get status => $_getN(3);
@$pb.TagNumber(4)
set status($1.ClaimStatusStruct value) => $_setField(4, value);
set status($87.ClaimStatusStruct v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasStatus() => $_has(3);
@$pb.TagNumber(4)
void clearStatus() => $_clearField(4);
@$pb.TagNumber(4)
$1.ClaimStatusStruct ensureStatus() => $_ensure(3);
$87.ClaimStatusStruct ensureStatus() => $_ensure(3);
/// Creation date of the claim
/// TODO Because this attribute is a kpi, when removing it we will have to alter all clickhouse tables to drop the column.
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(6)
$core.String get creationDate => $_getSZ(4);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(6)
set creationDate($core.String value) => $_setString(4, value);
@$core.Deprecated('This field is deprecated.')
set creationDate($core.String v) { $_setString(4, v); }
@$pb.TagNumber(6)
$core.bool hasCreationDate() => $_has(4);
@$core.Deprecated('This field is deprecated.')
@$pb.TagNumber(6)
void clearCreationDate() => $_clearField(6);
@@ -262,7 +300,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(8)
$core.String get endComment => $_getSZ(6);
@$pb.TagNumber(8)
set endComment($core.String value) => $_setString(6, value);
set endComment($core.String v) { $_setString(6, v); }
@$pb.TagNumber(8)
$core.bool hasEndComment() => $_has(6);
@$pb.TagNumber(8)
@@ -270,61 +308,61 @@ class ClaimPayload extends $pb.GeneratedMessage {
/// Closure responsible and causes of the claim
@$pb.TagNumber(9)
$0.ClaimClosure get closure => $_getN(7);
$29.ClaimClosure get closure => $_getN(7);
@$pb.TagNumber(9)
set closure($0.ClaimClosure value) => $_setField(9, value);
set closure($29.ClaimClosure v) { $_setField(9, v); }
@$pb.TagNumber(9)
$core.bool hasClosure() => $_has(7);
@$pb.TagNumber(9)
void clearClosure() => $_clearField(9);
@$pb.TagNumber(9)
$0.ClaimClosure ensureClosure() => $_ensure(7);
$29.ClaimClosure ensureClosure() => $_ensure(7);
@$pb.TagNumber(10)
$pb.PbList<$0.AttachmentSummary> get attachments => $_getList(8);
$pb.PbList<$29.AttachmentSummary> get attachments => $_getList(8);
@$pb.TagNumber(11)
$core.int get attachmentNumber => $_getIZ(9);
@$pb.TagNumber(11)
set attachmentNumber($core.int value) => $_setSignedInt32(9, value);
set attachmentNumber($core.int v) { $_setSignedInt32(9, v); }
@$pb.TagNumber(11)
$core.bool hasAttachmentNumber() => $_has(9);
@$pb.TagNumber(11)
void clearAttachmentNumber() => $_clearField(11);
@$pb.TagNumber(12)
$0.Amount get amount => $_getN(10);
$29.Amount get amount => $_getN(10);
@$pb.TagNumber(12)
set amount($0.Amount value) => $_setField(12, value);
set amount($29.Amount v) { $_setField(12, v); }
@$pb.TagNumber(12)
$core.bool hasAmount() => $_has(10);
@$pb.TagNumber(12)
void clearAmount() => $_clearField(12);
@$pb.TagNumber(12)
$0.Amount ensureAmount() => $_ensure(10);
$29.Amount ensureAmount() => $_ensure(10);
@$pb.TagNumber(13)
$core.String get reason => $_getSZ(11);
@$pb.TagNumber(13)
set reason($core.String value) => $_setString(11, value);
set reason($core.String v) { $_setString(11, v); }
@$pb.TagNumber(13)
$core.bool hasReason() => $_has(11);
@$pb.TagNumber(13)
void clearReason() => $_clearField(13);
@$pb.TagNumber(14)
$0.ClaimSector get sector => $_getN(12);
$29.ClaimSector get sector => $_getN(12);
@$pb.TagNumber(14)
set sector($0.ClaimSector value) => $_setField(14, value);
set sector($29.ClaimSector v) { $_setField(14, v); }
@$pb.TagNumber(14)
$core.bool hasSector() => $_has(12);
@$pb.TagNumber(14)
void clearSector() => $_clearField(14);
@$pb.TagNumber(15)
$0.ClaimEntityType get entityType => $_getN(13);
$29.ClaimEntityType get entityType => $_getN(13);
@$pb.TagNumber(15)
set entityType($0.ClaimEntityType value) => $_setField(15, value);
set entityType($29.ClaimEntityType v) { $_setField(15, v); }
@$pb.TagNumber(15)
$core.bool hasEntityType() => $_has(13);
@$pb.TagNumber(15)
@@ -341,7 +379,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(18)
$core.String get reasonCode => $_getSZ(16);
@$pb.TagNumber(18)
set reasonCode($core.String value) => $_setString(16, value);
set reasonCode($core.String v) { $_setString(16, v); }
@$pb.TagNumber(18)
$core.bool hasReasonCode() => $_has(16);
@$pb.TagNumber(18)
@@ -349,13 +387,13 @@ class ClaimPayload extends $pb.GeneratedMessage {
/// Metadata are characteristics specific to the project. They can be of several data form (string, integer, float, boolean or timestamp)
@$pb.TagNumber(19)
$pb.PbList<$0.MetadataElement> get metaData => $_getList(17);
$pb.PbList<$29.MetadataElement> get metaData => $_getList(17);
/// Title of the claim
@$pb.TagNumber(20)
$core.String get title => $_getSZ(18);
@$pb.TagNumber(20)
set title($core.String value) => $_setString(18, value);
set title($core.String v) { $_setString(18, v); }
@$pb.TagNumber(20)
$core.bool hasTitle() => $_has(18);
@$pb.TagNumber(20)
@@ -365,31 +403,11 @@ class ClaimPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(21)
$core.String get displayID => $_getSZ(19);
@$pb.TagNumber(21)
set displayID($core.String value) => $_setString(19, value);
set displayID($core.String v) { $_setString(19, v); }
@$pb.TagNumber(21)
$core.bool hasDisplayID() => $_has(19);
@$pb.TagNumber(21)
void clearDisplayID() => $_clearField(21);
@$pb.TagNumber(22)
$core.String get message => $_getSZ(20);
@$pb.TagNumber(22)
set message($core.String value) => $_setString(20, value);
@$pb.TagNumber(22)
$core.bool hasMessage() => $_has(20);
@$pb.TagNumber(22)
void clearMessage() => $_clearField(22);
@$pb.TagNumber(23)
$0.DateTime get creationDateTime => $_getN(21);
@$pb.TagNumber(23)
set creationDateTime($0.DateTime value) => $_setField(23, value);
@$pb.TagNumber(23)
$core.bool hasCreationDateTime() => $_has(21);
@$pb.TagNumber(23)
void clearCreationDateTime() => $_clearField(23);
@$pb.TagNumber(23)
$0.DateTime ensureCreationDateTime() => $_ensure(21);
}
class ClaimTriplet extends $pb.GeneratedMessage {
@@ -398,17 +416,21 @@ class ClaimTriplet extends $pb.GeneratedMessage {
Claim? previous,
Claim? lastEvent,
}) {
final result = create();
if (current != null) result.current = current;
if (previous != null) result.previous = previous;
if (lastEvent != null) result.lastEvent = lastEvent;
return result;
final $result = create();
if (current != null) {
$result.current = current;
}
if (previous != null) {
$result.previous = previous;
}
if (lastEvent != null) {
$result.lastEvent = lastEvent;
}
return $result;
}
ClaimTriplet._();
factory ClaimTriplet.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimTriplet.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimTriplet._() : super();
factory ClaimTriplet.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimTriplet.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimTriplet', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<Claim>(1, _omitFieldNames ? '' : 'Current', protoName: 'Current', subBuilder: Claim.create)
@@ -417,17 +439,21 @@ class ClaimTriplet extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimTriplet clone() => ClaimTriplet()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimTriplet copyWith(void Function(ClaimTriplet) updates) => super.copyWith((message) => updates(message as ClaimTriplet)) as ClaimTriplet;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimTriplet create() => ClaimTriplet._();
@$core.override
ClaimTriplet createEmptyInstance() => create();
static $pb.PbList<ClaimTriplet> createRepeated() => $pb.PbList<ClaimTriplet>();
@$core.pragma('dart2js:noInline')
@@ -437,7 +463,7 @@ class ClaimTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
Claim get current => $_getN(0);
@$pb.TagNumber(1)
set current(Claim value) => $_setField(1, value);
set current(Claim v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasCurrent() => $_has(0);
@$pb.TagNumber(1)
@@ -448,7 +474,7 @@ class ClaimTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
Claim get previous => $_getN(1);
@$pb.TagNumber(2)
set previous(Claim value) => $_setField(2, value);
set previous(Claim v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasPrevious() => $_has(1);
@$pb.TagNumber(2)
@@ -459,7 +485,7 @@ class ClaimTriplet extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
Claim get lastEvent => $_getN(2);
@$pb.TagNumber(3)
set lastEvent(Claim value) => $_setField(3, value);
set lastEvent(Claim v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasLastEvent() => $_has(2);
@$pb.TagNumber(3)
@@ -469,5 +495,5 @@ class ClaimTriplet extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from claim.proto.
// Generated code. Do not modify.
// source: claim.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claim.proto.
// Generated code. Do not modify.
// source: claim.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -40,15 +39,7 @@ const ClaimPayload$json = {
{'1': 'EntityID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'EntityID'},
{'1': 'Criticality', '3': 3, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'Criticality'},
{'1': 'Status', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimStatusStruct', '8': {}, '10': 'Status'},
{
'1': 'CreationDate',
'3': 6,
'4': 1,
'5': 9,
'8': {'3': true},
'10': 'CreationDate',
},
{'1': 'CreationDateTime', '3': 23, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'CreationDateTime'},
{'1': 'CreationDate', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'CreationDate'},
{'1': 'Assignees', '3': 7, '4': 3, '5': 9, '8': {}, '10': 'Assignees'},
{'1': 'RemovedAssignees', '3': 16, '4': 3, '5': 9, '8': {}, '10': 'RemovedAssignees'},
{'1': 'AddedAssignees', '3': 17, '4': 3, '5': 9, '8': {}, '10': 'AddedAssignees'},
@@ -64,54 +55,51 @@ const ClaimPayload$json = {
{'1': 'MetaData', '3': 19, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
{'1': 'Title', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'Title'},
{'1': 'DisplayID', '3': 21, '4': 1, '5': 9, '8': {}, '10': 'DisplayID'},
{'1': 'Message', '3': 22, '4': 1, '5': 9, '8': {}, '10': 'Message'},
],
'7': {},
};
/// Descriptor for `ClaimPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimPayloadDescriptor = $convert.base64Decode(
'CgxDbGFpbVBheWxvYWQSmAEKC0NsYWltVHlwZUlEGAEgASgJQnaSQR4yHElkZW50aWZpZXIgb2'
'YgdGhlIGNsYWltIHR5cGW6gQEEcgIQAcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk'
'0sIYEgoQCgVDbGFpbRIFY2xhaW0YAdrCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUgtDbGFpbVR5cG'
'VJRBKYAQoIRW50aXR5SUQYAiABKAlCfJJBJDIiSWRlbnRpZmllciBvZiB0aGUgdGFyZ2V0dGVk'
'IGVudGl0ebqBAQRyAhABysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTSwhgSChAKBU'
'NsYWltEgVjbGFpbRgB2sIYEwoRCgEqEgxzaG9ydEtleXdvcmRSCEVudGl0eUlEEmwKC0NyaXRp'
'Y2FsaXR5GAMgASgOMhUuYXBpLkNsYWltQ3JpdGljYWxpdHlCM5JBGjIYQ3JpdGljYWxpdHkgb2'
'YgdGhlIGNsYWlt0sIYEgoQCgVDbGFpbRIFY2xhaW0YAVILQ3JpdGljYWxpdHkSWQoGU3RhdHVz'
'GAQgASgLMhYuYXBpLkNsYWltU3RhdHVzU3RydWN0QimSQRUyE1N0YXR1cyBvZiB0aGUgY2xhaW'
'3ywRgNU3RhdHVzVXBkYXRlZFIGU3RhdHVzElIKDENyZWF0aW9uRGF0ZRgGIAEoCUIuGAG6gQEF'
'cgPQAQHSwhgQCg4KBUNsYWltEgVjbGFpbdrCGAsKCQoBKhIEZGF0ZVIMQ3JlYXRpb25EYXRlEj'
'kKEENyZWF0aW9uRGF0ZVRpbWUYFyABKAsyDS5hcGkuRGF0ZVRpbWVSEENyZWF0aW9uRGF0ZVRp'
'bWUSeQoJQXNzaWduZWVzGAcgAygJQluSQSEyH0NvbnRhY3RzIGFzc2lnbmVkIG9uIHRoZSBjbG'
'FpbXPywRgOQXNzaWduZWVzQWRkZWTSwhgSChAKBUNsYWltEgVjbGFpbRgB2sIYCwoJCgEqEgR1'
'c2VyUglBc3NpZ25lZXMSVAoQUmVtb3ZlZEFzc2lnbmVlcxgQIAMoCUIokkECQAHywRgQQXNzaW'
'duZWVzUmVtb3ZlZNrCGAsKCQoBKhIEdXNlclIQUmVtb3ZlZEFzc2lnbmVlcxItCg5BZGRlZEFz'
'c2lnbmVlcxgRIAMoCUIFkkECQAFSDkFkZGVkQXNzaWduZWVzEj0KCkVuZENvbW1lbnQYCCABKA'
'lCHZJBGjIYRW5kIGNvbW1lbnQgb2YgdGhlIGNsYWltUgpFbmRDb21tZW50El0KB0Nsb3N1cmUY'
'CSABKAsyES5hcGkuQ2xhaW1DbG9zdXJlQjCSQS0yK0Nsb3N1cmUgcmVzcG9uc2libGUgYW5kIG'
'NhdXNlcyBvZiB0aGUgY2xhaW1SB0Nsb3N1cmUSggEKC0F0dGFjaG1lbnRzGAogAygLMhYuYXBp'
'LkF0dGFjaG1lbnRTdW1tYXJ5QkiSQSAyHk51bWJlciBvZiBhdHRhY2htZW50cyBwZXIgdHlwZf'
'LBGCFBdHRhY2htZW50QWRkZWQsQXR0YWNobWVudFJlbW92ZWRSC0F0dGFjaG1lbnRzEkwKEEF0'
'dGFjaG1lbnROdW1iZXIYCyABKAVCIJJBHTIbVG90YWwgbnVtYmVyIG9mIGF0dGFjaG1lbnRzUh'
'BBdHRhY2htZW50TnVtYmVyEkMKBkFtb3VudBgMIAEoCzILLmFwaS5BbW91bnRCHpJBGzIZQW1v'
'dW50IHZhbHVlIG9mIHRoZSBjbGFpbVIGQW1vdW50EjkKBlJlYXNvbhgNIAEoCUIhuoEBB3IFEA'
'EY/wHSwhgSChAKBUNsYWltEgVjbGFpbRgBUgZSZWFzb24SegoKUmVhc29uQ29kZRgSIAEoCUJa'
'uoEBFHISEAEyDl5bYS16QS1aMC05XSskysIYFAoSCgEqEg1nZW5lcmF0ZWRUZXh00sIYEgoQCg'
'VDbGFpbRIFY2xhaW0YAdrCGBAKDgoBKhIJc2hvcnRUZXh0UgpSZWFzb25Db2RlEkkKBlNlY3Rv'
'chgOIAEoDjIQLmFwaS5DbGFpbVNlY3RvckIfuoEBBYIBAhAB0sIYEgoQCgVDbGFpbRIFY2xhaW'
'0YAVIGU2VjdG9yElUKCkVudGl0eVR5cGUYDyABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlQh+6'
'gQEFggECEAHSwhgSChAKBUNsYWltEgVjbGFpbRgBUgpFbnRpdHlUeXBlEtMBCghNZXRhRGF0YR'
'gTIAMoCzIULmFwaS5NZXRhZGF0YUVsZW1lbnRCoAGSQYgBMoUBTWV0YWRhdGEgYXJlIGNoYXJh'
'Y3RlcmlzdGljcyBzcGVjaWZpYyB0byB0aGUgcHJvamVjdC4gVGhleSBjYW4gYmUgb2Ygc2V2ZX'
'JhbCBkYXRhIGZvcm0gKHN0cmluZywgaW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0'
'YW1wKcDBGAHqwRgDS2V5qsIYBUNsYWltUghNZXRhRGF0YRItCgVUaXRsZRgUIAEoCUIXkkEUMh'
'JUaXRsZSBvZiB0aGUgY2xhaW1SBVRpdGxlErcBCglEaXNwbGF5SUQYFSABKAlCmAGSQUAyPklk'
'ZW50aWZpZXIgdG8gZGlzcGxheSwgYmVjYXVzZSBpdCBtYXkgZGlmZmVyIGZyb20gdGhlIEVudG'
'l0eUlEuoEBBHICEAHKwhgcChoKASoSFWdlbmVyYXRlZFRleHQsa2V5d29yZNLCGBIKEAoFQ2xh'
'aW0SBWNsYWltGAHawhgTChEKASoSDHNob3J0S2V5d29yZFIJRGlzcGxheUlEEikKB01lc3NhZ2'
'UYFiABKAlCD/LBGAtNZXNzYWdlU2VudFIHTWVzc2FnZTo1kkEyCjDSAQtDbGFpbVR5cGVJRNIB'
'CEVudGl0eUlE0gELQ3JpdGljYWxpdHnSAQZTdGF0dXM=');
'CgxDbGFpbVBheWxvYWQSlwEKC0NsYWltVHlwZUlEGAEgASgJQnWSQR4yHElkZW50aWZpZXIgb2'
'YgdGhlIGNsYWltIHR5cGX6QgRyAhABysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTS'
'whgSChAKBUNsYWltEgVjbGFpbRgB2sIYEwoRCgEqEgxzaG9ydEtleXdvcmRSC0NsYWltVHlwZU'
'lEEpcBCghFbnRpdHlJRBgCIAEoCUJ7kkEkMiJJZGVudGlmaWVyIG9mIHRoZSB0YXJnZXR0ZWQg'
'ZW50aXR5+kIEcgIQAcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk0sIYEgoQCgVDbG'
'FpbRIFY2xhaW0YAdrCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUghFbnRpdHlJRBJsCgtDcml0aWNh'
'bGl0eRgDIAEoDjIVLmFwaS5DbGFpbUNyaXRpY2FsaXR5QjOSQRoyGENyaXRpY2FsaXR5IG9mIH'
'RoZSBjbGFpbdLCGBIKEAoFQ2xhaW0SBWNsYWltGAFSC0NyaXRpY2FsaXR5ElkKBlN0YXR1cxgE'
'IAEoCzIWLmFwaS5DbGFpbVN0YXR1c1N0cnVjdEIpkkEVMhNTdGF0dXMgb2YgdGhlIGNsYWlt8s'
'EYDVN0YXR1c1VwZGF0ZWRSBlN0YXR1cxJRCgxDcmVhdGlvbkRhdGUYBiABKAlCLfpCBXID0AEB'
'0sIYEgoQCgVDbGFpbRIFY2xhaW0YAdrCGAsKCQoBKhIEZGF0ZVIMQ3JlYXRpb25EYXRlEnkKCU'
'Fzc2lnbmVlcxgHIAMoCUJbkkEhMh9Db250YWN0cyBhc3NpZ25lZCBvbiB0aGUgY2xhaW1z8sEY'
'DkFzc2lnbmVlc0FkZGVk0sIYEgoQCgVDbGFpbRIFY2xhaW0YAdrCGAsKCQoBKhIEdXNlclIJQX'
'NzaWduZWVzElQKEFJlbW92ZWRBc3NpZ25lZXMYECADKAlCKJJBAkAB8sEYEEFzc2lnbmVlc1Jl'
'bW92ZWTawhgLCgkKASoSBHVzZXJSEFJlbW92ZWRBc3NpZ25lZXMSLQoOQWRkZWRBc3NpZ25lZX'
'MYESADKAlCBZJBAkABUg5BZGRlZEFzc2lnbmVlcxI9CgpFbmRDb21tZW50GAggASgJQh2SQRoy'
'GEVuZCBjb21tZW50IG9mIHRoZSBjbGFpbVIKRW5kQ29tbWVudBJdCgdDbG9zdXJlGAkgASgLMh'
'EuYXBpLkNsYWltQ2xvc3VyZUIwkkEtMitDbG9zdXJlIHJlc3BvbnNpYmxlIGFuZCBjYXVzZXMg'
'b2YgdGhlIGNsYWltUgdDbG9zdXJlEoIBCgtBdHRhY2htZW50cxgKIAMoCzIWLmFwaS5BdHRhY2'
'htZW50U3VtbWFyeUJIkkEgMh5OdW1iZXIgb2YgYXR0YWNobWVudHMgcGVyIHR5cGXywRghQXR0'
'YWNobWVudEFkZGVkLEF0dGFjaG1lbnRSZW1vdmVkUgtBdHRhY2htZW50cxJMChBBdHRhY2htZW'
'50TnVtYmVyGAsgASgFQiCSQR0yG1RvdGFsIG51bWJlciBvZiBhdHRhY2htZW50c1IQQXR0YWNo'
'bWVudE51bWJlchJDCgZBbW91bnQYDCABKAsyCy5hcGkuQW1vdW50Qh6SQRsyGUFtb3VudCB2YW'
'x1ZSBvZiB0aGUgY2xhaW1SBkFtb3VudBI4CgZSZWFzb24YDSABKAlCIPpCB3IFEAEY/wHSwhgS'
'ChAKBUNsYWltEgVjbGFpbRgBUgZSZWFzb24SeQoKUmVhc29uQ29kZRgSIAEoCUJZ+kIUchIQAT'
'IOXlthLXpBLVowLTldKyTKwhgUChIKASoSDWdlbmVyYXRlZFRleHTSwhgSChAKBUNsYWltEgVj'
'bGFpbRgB2sIYEAoOCgEqEglzaG9ydFRleHRSClJlYXNvbkNvZGUSSAoGU2VjdG9yGA4gASgOMh'
'AuYXBpLkNsYWltU2VjdG9yQh76QgWCAQIQAdLCGBIKEAoFQ2xhaW0SBWNsYWltGAFSBlNlY3Rv'
'chJUCgpFbnRpdHlUeXBlGA8gASgOMhQuYXBpLkNsYWltRW50aXR5VHlwZUIe+kIFggECEAHSwh'
'gSChAKBUNsYWltEgVjbGFpbRgBUgpFbnRpdHlUeXBlEtMBCghNZXRhRGF0YRgTIAMoCzIULmFw'
'aS5NZXRhZGF0YUVsZW1lbnRCoAGSQYgBMoUBTWV0YWRhdGEgYXJlIGNoYXJhY3RlcmlzdGljcy'
'BzcGVjaWZpYyB0byB0aGUgcHJvamVjdC4gVGhleSBjYW4gYmUgb2Ygc2V2ZXJhbCBkYXRhIGZv'
'cm0gKHN0cmluZywgaW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0YW1wKcDBGAHqwR'
'gDS2V5qsIYBUNsYWltUghNZXRhRGF0YRItCgVUaXRsZRgUIAEoCUIXkkEUMhJUaXRsZSBvZiB0'
'aGUgY2xhaW1SBVRpdGxlErYBCglEaXNwbGF5SUQYFSABKAlClwGSQUAyPklkZW50aWZpZXIgdG'
'8gZGlzcGxheSwgYmVjYXVzZSBpdCBtYXkgZGlmZmVyIGZyb20gdGhlIEVudGl0eUlE+kIEcgIQ'
'AcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk0sIYEgoQCgVDbGFpbRIFY2xhaW0YAd'
'rCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUglEaXNwbGF5SUQ6NZJBMgow0gELQ2xhaW1UeXBlSUTS'
'AQhFbnRpdHlJRNIBC0NyaXRpY2FsaXR50gEGU3RhdHVz');
@$core.Deprecated('Use claimTripletDescriptor instead')
const ClaimTriplet$json = {

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from claimAction.proto.
// Generated code. Do not modify.
// source: claimAction.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claimAction.proto.
// Generated code. Do not modify.
// source: claimAction.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -32,7 +31,6 @@ const ClaimNotifyPayload$json = {
{'1': 'Title', '3': 12, '4': 1, '5': 9, '10': 'Title'},
{'1': 'MetaData', '3': 13, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'MetaData'},
{'1': 'DisplayID', '3': 14, '4': 1, '5': 9, '10': 'DisplayID'},
{'1': 'Message', '3': 15, '4': 1, '5': 9, '10': 'Message'},
],
'7': {},
};
@@ -49,8 +47,7 @@ final $typed_data.Uint8List claimNotifyPayloadDescriptor = $convert.base64Decode
'lwZRgKIAEoDjIULmFwaS5DbGFpbUVudGl0eVR5cGVSCkVudGl0eVR5cGUSGgoIRW50aXR5SUQY'
'CyABKAlSCEVudGl0eUlEEhQKBVRpdGxlGAwgASgJUgVUaXRsZRIwCghNZXRhRGF0YRgNIAMoCz'
'IULmFwaS5NZXRhZGF0YUVsZW1lbnRSCE1ldGFEYXRhEhwKCURpc3BsYXlJRBgOIAEoCVIJRGlz'
'cGxheUlEEhgKB01lc3NhZ2UYDyABKAlSB01lc3NhZ2U6GaK7GAdDb21tYW5kqLsYAbK7GAZOb3'
'RpZnk=');
'cGxheUlEOhmiuxgHQ29tbWFuZKi7GAGyuxgGTm90aWZ5');
@$core.Deprecated('Use claimNotifyDescriptor instead')
const ClaimNotify$json = {
@@ -286,46 +283,3 @@ final $typed_data.Uint8List claimPropagateMovementDescriptor = $convert.base64De
'RlTW92ZW1lbnRQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6SKK7GAdDb21tYW5ksrsYEVByb3Bh'
'Z2F0ZU1vdmVtZW50wrsYGXRyYWRlLm1vdmVtZW50LkNsYWltQWRkZWTquxgHQ3JlYXRlZA==');
@$core.Deprecated('Use claimPropagateAppointmentPayloadDescriptor instead')
const ClaimPropagateAppointmentPayload$json = {
'1': 'ClaimPropagateAppointmentPayload',
'2': [
{'1': 'EntityID', '3': 1, '4': 1, '5': 9, '10': 'EntityID'},
{'1': 'ClaimTypeID', '3': 2, '4': 1, '5': 9, '10': 'ClaimTypeID'},
{'1': 'Reason', '3': 3, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'EntityType', '3': 4, '4': 1, '5': 14, '6': '.api.ClaimEntityType', '10': 'EntityType'},
],
'7': {},
};
/// Descriptor for `ClaimPropagateAppointmentPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimPropagateAppointmentPayloadDescriptor = $convert.base64Decode(
'CiBDbGFpbVByb3BhZ2F0ZUFwcG9pbnRtZW50UGF5bG9hZBIaCghFbnRpdHlJRBgBIAEoCVIIRW'
'50aXR5SUQSIAoLQ2xhaW1UeXBlSUQYAiABKAlSC0NsYWltVHlwZUlEEhYKBlJlYXNvbhgDIAEo'
'CVIGUmVhc29uEjQKCkVudGl0eVR5cGUYBCABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlUgpFbn'
'RpdHlUeXBlOieiuxgHQ29tbWFuZKi7GAGyuxgUUHJvcGFnYXRlQXBwb2ludG1lbnQ=');
@$core.Deprecated('Use claimPropagateAppointmentDescriptor instead')
const ClaimPropagateAppointment$json = {
'1': 'ClaimPropagateAppointment',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimPropagateAppointmentPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateAppointmentPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateAppointmentPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `ClaimPropagateAppointment`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimPropagateAppointmentDescriptor = $convert.base64Decode(
'ChlDbGFpbVByb3BhZ2F0ZUFwcG9pbnRtZW50EioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW'
'5kSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEj8KB1BheWxv'
'YWQYAyABKAsyJS5hcGkuQ2xhaW1Qcm9wYWdhdGVBcHBvaW50bWVudFBheWxvYWRSB1BheWxvYW'
'QSSQoMRXZlbnRQYXlsb2FkGAQgASgLMiUuYXBpLkNsYWltUHJvcGFnYXRlQXBwb2ludG1lbnRQ'
'YXlsb2FkUgxFdmVudFBheWxvYWQSTwoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiUuYXBpLkNsYW'
'ltUHJvcGFnYXRlQXBwb2ludG1lbnRQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6T6K7GAdDb21t'
'YW5ksrsYFFByb3BhZ2F0ZUFwcG9pbnRtZW50wrsYHWNvbGxhYi5hcHBvaW50bWVudC5DbGFpbU'
'FkZGVk6rsYB0NyZWF0ZWQ=');

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from claimInput.proto.
// Generated code. Do not modify.
// source: claimInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claimInput.proto.
// Generated code. Do not modify.
// source: claimInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,146 +15,122 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'claimInput.pb.dart' as $0;
import 'claimInput.pb.dart' as $45;
export 'claimInput.pb.dart';
///
/// API-server services
@$pb.GrpcServiceName('api.ClaimInputAPI')
class ClaimInputAPIClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$created = $grpc.ClientMethod<$45.ClaimCreatedRequest, $45.ClaimCreatedResponse>(
'/api.ClaimInputAPI/Created',
($45.ClaimCreatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimCreatedResponse.fromBuffer(value));
static final _$completed = $grpc.ClientMethod<$45.ClaimCompletedRequest, $45.ClaimCompletedResponse>(
'/api.ClaimInputAPI/Completed',
($45.ClaimCompletedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimCompletedResponse.fromBuffer(value));
static final _$criticalityUpdated = $grpc.ClientMethod<$45.ClaimCriticalityUpdatedRequest, $45.ClaimCriticalityUpdatedResponse>(
'/api.ClaimInputAPI/CriticalityUpdated',
($45.ClaimCriticalityUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimCriticalityUpdatedResponse.fromBuffer(value));
static final _$statusUpdated = $grpc.ClientMethod<$45.ClaimStatusUpdatedRequest, $45.ClaimStatusUpdatedResponse>(
'/api.ClaimInputAPI/StatusUpdated',
($45.ClaimStatusUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimStatusUpdatedResponse.fromBuffer(value));
static final _$assigneesAdded = $grpc.ClientMethod<$45.ClaimAssigneesAddedRequest, $45.ClaimAssigneesAddedResponse>(
'/api.ClaimInputAPI/AssigneesAdded',
($45.ClaimAssigneesAddedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimAssigneesAddedResponse.fromBuffer(value));
static final _$assigneesRemoved = $grpc.ClientMethod<$45.ClaimAssigneesRemovedRequest, $45.ClaimAssigneesRemovedResponse>(
'/api.ClaimInputAPI/AssigneesRemoved',
($45.ClaimAssigneesRemovedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimAssigneesRemovedResponse.fromBuffer(value));
static final _$amountUpdated = $grpc.ClientMethod<$45.ClaimAmountUpdatedRequest, $45.ClaimAmountUpdatedResponse>(
'/api.ClaimInputAPI/AmountUpdated',
($45.ClaimAmountUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimAmountUpdatedResponse.fromBuffer(value));
static final _$attachmentAdded = $grpc.ClientMethod<$45.ClaimAttachmentAddedRequest, $45.ClaimAttachmentAddedResponse>(
'/api.ClaimInputAPI/AttachmentAdded',
($45.ClaimAttachmentAddedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimAttachmentAddedResponse.fromBuffer(value));
static final _$attachmentRemoved = $grpc.ClientMethod<$45.ClaimAttachmentRemovedRequest, $45.ClaimAttachmentRemovedResponse>(
'/api.ClaimInputAPI/AttachmentRemoved',
($45.ClaimAttachmentRemovedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimAttachmentRemovedResponse.fromBuffer(value));
static final _$metaDataUpdated = $grpc.ClientMethod<$45.ClaimMetaDataUpdatedRequest, $45.ClaimMetaDataUpdatedResponse>(
'/api.ClaimInputAPI/MetaDataUpdated',
($45.ClaimMetaDataUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimMetaDataUpdatedResponse.fromBuffer(value));
static final _$titleUpdated = $grpc.ClientMethod<$45.ClaimTitleUpdatedRequest, $45.ClaimTitleUpdatedResponse>(
'/api.ClaimInputAPI/TitleUpdated',
($45.ClaimTitleUpdatedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimTitleUpdatedResponse.fromBuffer(value));
static final _$messageSent = $grpc.ClientMethod<$45.ClaimMessageSentRequest, $45.ClaimMessageSentResponse>(
'/api.ClaimInputAPI/MessageSent',
($45.ClaimMessageSentRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimMessageSentResponse.fromBuffer(value));
static final _$deleted = $grpc.ClientMethod<$45.ClaimDeletedRequest, $45.ClaimDeletedResponse>(
'/api.ClaimInputAPI/Deleted',
($45.ClaimDeletedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $45.ClaimDeletedResponse.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
ClaimInputAPIClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
ClaimInputAPIClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ClaimCreatedResponse> created($0.ClaimCreatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimCreatedResponse> created($45.ClaimCreatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$created, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimCompletedResponse> completed($0.ClaimCompletedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimCompletedResponse> completed($45.ClaimCompletedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$completed, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimCriticalityUpdatedResponse> criticalityUpdated($0.ClaimCriticalityUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimCriticalityUpdatedResponse> criticalityUpdated($45.ClaimCriticalityUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$criticalityUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimStatusUpdatedResponse> statusUpdated($0.ClaimStatusUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimStatusUpdatedResponse> statusUpdated($45.ClaimStatusUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$statusUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimAssigneesAddedResponse> assigneesAdded($0.ClaimAssigneesAddedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimAssigneesAddedResponse> assigneesAdded($45.ClaimAssigneesAddedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$assigneesAdded, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimAssigneesRemovedResponse> assigneesRemoved($0.ClaimAssigneesRemovedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimAssigneesRemovedResponse> assigneesRemoved($45.ClaimAssigneesRemovedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$assigneesRemoved, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimAmountUpdatedResponse> amountUpdated($0.ClaimAmountUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimAmountUpdatedResponse> amountUpdated($45.ClaimAmountUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$amountUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimAttachmentAddedResponse> attachmentAdded($0.ClaimAttachmentAddedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimAttachmentAddedResponse> attachmentAdded($45.ClaimAttachmentAddedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$attachmentAdded, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimAttachmentRemovedResponse> attachmentRemoved($0.ClaimAttachmentRemovedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimAttachmentRemovedResponse> attachmentRemoved($45.ClaimAttachmentRemovedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$attachmentRemoved, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimMetaDataUpdatedResponse> metaDataUpdated($0.ClaimMetaDataUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimMetaDataUpdatedResponse> metaDataUpdated($45.ClaimMetaDataUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$metaDataUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimTitleUpdatedResponse> titleUpdated($0.ClaimTitleUpdatedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimTitleUpdatedResponse> titleUpdated($45.ClaimTitleUpdatedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$titleUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimMessageSentResponse> messageSent($0.ClaimMessageSentRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimMessageSentResponse> messageSent($45.ClaimMessageSentRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$messageSent, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimDeletedResponse> deleted($0.ClaimDeletedRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$45.ClaimDeletedResponse> deleted($45.ClaimDeletedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleted, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimSanitisedResponse> sanitised($0.ClaimSanitisedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$sanitised, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimCustomFieldsUpdatedResponse> customFieldsUpdated($0.ClaimCustomFieldsUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$customFieldsUpdated, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.ClaimCreatedRequest, $0.ClaimCreatedResponse>(
'/api.ClaimInputAPI/Created',
($0.ClaimCreatedRequest value) => value.writeToBuffer(),
$0.ClaimCreatedResponse.fromBuffer);
static final _$completed = $grpc.ClientMethod<$0.ClaimCompletedRequest, $0.ClaimCompletedResponse>(
'/api.ClaimInputAPI/Completed',
($0.ClaimCompletedRequest value) => value.writeToBuffer(),
$0.ClaimCompletedResponse.fromBuffer);
static final _$criticalityUpdated = $grpc.ClientMethod<$0.ClaimCriticalityUpdatedRequest, $0.ClaimCriticalityUpdatedResponse>(
'/api.ClaimInputAPI/CriticalityUpdated',
($0.ClaimCriticalityUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimCriticalityUpdatedResponse.fromBuffer);
static final _$statusUpdated = $grpc.ClientMethod<$0.ClaimStatusUpdatedRequest, $0.ClaimStatusUpdatedResponse>(
'/api.ClaimInputAPI/StatusUpdated',
($0.ClaimStatusUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimStatusUpdatedResponse.fromBuffer);
static final _$assigneesAdded = $grpc.ClientMethod<$0.ClaimAssigneesAddedRequest, $0.ClaimAssigneesAddedResponse>(
'/api.ClaimInputAPI/AssigneesAdded',
($0.ClaimAssigneesAddedRequest value) => value.writeToBuffer(),
$0.ClaimAssigneesAddedResponse.fromBuffer);
static final _$assigneesRemoved = $grpc.ClientMethod<$0.ClaimAssigneesRemovedRequest, $0.ClaimAssigneesRemovedResponse>(
'/api.ClaimInputAPI/AssigneesRemoved',
($0.ClaimAssigneesRemovedRequest value) => value.writeToBuffer(),
$0.ClaimAssigneesRemovedResponse.fromBuffer);
static final _$amountUpdated = $grpc.ClientMethod<$0.ClaimAmountUpdatedRequest, $0.ClaimAmountUpdatedResponse>(
'/api.ClaimInputAPI/AmountUpdated',
($0.ClaimAmountUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimAmountUpdatedResponse.fromBuffer);
static final _$attachmentAdded = $grpc.ClientMethod<$0.ClaimAttachmentAddedRequest, $0.ClaimAttachmentAddedResponse>(
'/api.ClaimInputAPI/AttachmentAdded',
($0.ClaimAttachmentAddedRequest value) => value.writeToBuffer(),
$0.ClaimAttachmentAddedResponse.fromBuffer);
static final _$attachmentRemoved = $grpc.ClientMethod<$0.ClaimAttachmentRemovedRequest, $0.ClaimAttachmentRemovedResponse>(
'/api.ClaimInputAPI/AttachmentRemoved',
($0.ClaimAttachmentRemovedRequest value) => value.writeToBuffer(),
$0.ClaimAttachmentRemovedResponse.fromBuffer);
static final _$metaDataUpdated = $grpc.ClientMethod<$0.ClaimMetaDataUpdatedRequest, $0.ClaimMetaDataUpdatedResponse>(
'/api.ClaimInputAPI/MetaDataUpdated',
($0.ClaimMetaDataUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimMetaDataUpdatedResponse.fromBuffer);
static final _$titleUpdated = $grpc.ClientMethod<$0.ClaimTitleUpdatedRequest, $0.ClaimTitleUpdatedResponse>(
'/api.ClaimInputAPI/TitleUpdated',
($0.ClaimTitleUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimTitleUpdatedResponse.fromBuffer);
static final _$messageSent = $grpc.ClientMethod<$0.ClaimMessageSentRequest, $0.ClaimMessageSentResponse>(
'/api.ClaimInputAPI/MessageSent',
($0.ClaimMessageSentRequest value) => value.writeToBuffer(),
$0.ClaimMessageSentResponse.fromBuffer);
static final _$deleted = $grpc.ClientMethod<$0.ClaimDeletedRequest, $0.ClaimDeletedResponse>(
'/api.ClaimInputAPI/Deleted',
($0.ClaimDeletedRequest value) => value.writeToBuffer(),
$0.ClaimDeletedResponse.fromBuffer);
static final _$sanitised = $grpc.ClientMethod<$0.ClaimSanitisedRequest, $0.ClaimSanitisedResponse>(
'/api.ClaimInputAPI/Sanitised',
($0.ClaimSanitisedRequest value) => value.writeToBuffer(),
$0.ClaimSanitisedResponse.fromBuffer);
static final _$customFieldsUpdated = $grpc.ClientMethod<$0.ClaimCustomFieldsUpdatedRequest, $0.ClaimCustomFieldsUpdatedResponse>(
'/api.ClaimInputAPI/CustomFieldsUpdated',
($0.ClaimCustomFieldsUpdatedRequest value) => value.writeToBuffer(),
$0.ClaimCustomFieldsUpdatedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.ClaimInputAPI')
@@ -163,201 +138,162 @@ abstract class ClaimInputAPIServiceBase extends $grpc.Service {
$core.String get $name => 'api.ClaimInputAPI';
ClaimInputAPIServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ClaimCreatedRequest, $0.ClaimCreatedResponse>(
$addMethod($grpc.ServiceMethod<$45.ClaimCreatedRequest, $45.ClaimCreatedResponse>(
'Created',
created_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimCreatedRequest.fromBuffer(value),
($0.ClaimCreatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimCompletedRequest, $0.ClaimCompletedResponse>(
($core.List<$core.int> value) => $45.ClaimCreatedRequest.fromBuffer(value),
($45.ClaimCreatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimCompletedRequest, $45.ClaimCompletedResponse>(
'Completed',
completed_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimCompletedRequest.fromBuffer(value),
($0.ClaimCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimCriticalityUpdatedRequest, $0.ClaimCriticalityUpdatedResponse>(
($core.List<$core.int> value) => $45.ClaimCompletedRequest.fromBuffer(value),
($45.ClaimCompletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimCriticalityUpdatedRequest, $45.ClaimCriticalityUpdatedResponse>(
'CriticalityUpdated',
criticalityUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimCriticalityUpdatedRequest.fromBuffer(value),
($0.ClaimCriticalityUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimStatusUpdatedRequest, $0.ClaimStatusUpdatedResponse>(
($core.List<$core.int> value) => $45.ClaimCriticalityUpdatedRequest.fromBuffer(value),
($45.ClaimCriticalityUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimStatusUpdatedRequest, $45.ClaimStatusUpdatedResponse>(
'StatusUpdated',
statusUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimStatusUpdatedRequest.fromBuffer(value),
($0.ClaimStatusUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimAssigneesAddedRequest, $0.ClaimAssigneesAddedResponse>(
($core.List<$core.int> value) => $45.ClaimStatusUpdatedRequest.fromBuffer(value),
($45.ClaimStatusUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimAssigneesAddedRequest, $45.ClaimAssigneesAddedResponse>(
'AssigneesAdded',
assigneesAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimAssigneesAddedRequest.fromBuffer(value),
($0.ClaimAssigneesAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimAssigneesRemovedRequest, $0.ClaimAssigneesRemovedResponse>(
($core.List<$core.int> value) => $45.ClaimAssigneesAddedRequest.fromBuffer(value),
($45.ClaimAssigneesAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimAssigneesRemovedRequest, $45.ClaimAssigneesRemovedResponse>(
'AssigneesRemoved',
assigneesRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimAssigneesRemovedRequest.fromBuffer(value),
($0.ClaimAssigneesRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimAmountUpdatedRequest, $0.ClaimAmountUpdatedResponse>(
($core.List<$core.int> value) => $45.ClaimAssigneesRemovedRequest.fromBuffer(value),
($45.ClaimAssigneesRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimAmountUpdatedRequest, $45.ClaimAmountUpdatedResponse>(
'AmountUpdated',
amountUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimAmountUpdatedRequest.fromBuffer(value),
($0.ClaimAmountUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimAttachmentAddedRequest, $0.ClaimAttachmentAddedResponse>(
($core.List<$core.int> value) => $45.ClaimAmountUpdatedRequest.fromBuffer(value),
($45.ClaimAmountUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimAttachmentAddedRequest, $45.ClaimAttachmentAddedResponse>(
'AttachmentAdded',
attachmentAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimAttachmentAddedRequest.fromBuffer(value),
($0.ClaimAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimAttachmentRemovedRequest, $0.ClaimAttachmentRemovedResponse>(
($core.List<$core.int> value) => $45.ClaimAttachmentAddedRequest.fromBuffer(value),
($45.ClaimAttachmentAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimAttachmentRemovedRequest, $45.ClaimAttachmentRemovedResponse>(
'AttachmentRemoved',
attachmentRemoved_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimAttachmentRemovedRequest.fromBuffer(value),
($0.ClaimAttachmentRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimMetaDataUpdatedRequest, $0.ClaimMetaDataUpdatedResponse>(
($core.List<$core.int> value) => $45.ClaimAttachmentRemovedRequest.fromBuffer(value),
($45.ClaimAttachmentRemovedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimMetaDataUpdatedRequest, $45.ClaimMetaDataUpdatedResponse>(
'MetaDataUpdated',
metaDataUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimMetaDataUpdatedRequest.fromBuffer(value),
($0.ClaimMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimTitleUpdatedRequest, $0.ClaimTitleUpdatedResponse>(
($core.List<$core.int> value) => $45.ClaimMetaDataUpdatedRequest.fromBuffer(value),
($45.ClaimMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimTitleUpdatedRequest, $45.ClaimTitleUpdatedResponse>(
'TitleUpdated',
titleUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimTitleUpdatedRequest.fromBuffer(value),
($0.ClaimTitleUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimMessageSentRequest, $0.ClaimMessageSentResponse>(
($core.List<$core.int> value) => $45.ClaimTitleUpdatedRequest.fromBuffer(value),
($45.ClaimTitleUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimMessageSentRequest, $45.ClaimMessageSentResponse>(
'MessageSent',
messageSent_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimMessageSentRequest.fromBuffer(value),
($0.ClaimMessageSentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimDeletedRequest, $0.ClaimDeletedResponse>(
($core.List<$core.int> value) => $45.ClaimMessageSentRequest.fromBuffer(value),
($45.ClaimMessageSentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$45.ClaimDeletedRequest, $45.ClaimDeletedResponse>(
'Deleted',
deleted_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimDeletedRequest.fromBuffer(value),
($0.ClaimDeletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimSanitisedRequest, $0.ClaimSanitisedResponse>(
'Sanitised',
sanitised_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimSanitisedRequest.fromBuffer(value),
($0.ClaimSanitisedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimCustomFieldsUpdatedRequest, $0.ClaimCustomFieldsUpdatedResponse>(
'CustomFieldsUpdated',
customFieldsUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimCustomFieldsUpdatedRequest.fromBuffer(value),
($0.ClaimCustomFieldsUpdatedResponse value) => value.writeToBuffer()));
($core.List<$core.int> value) => $45.ClaimDeletedRequest.fromBuffer(value),
($45.ClaimDeletedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.ClaimCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimCreatedRequest> $request) async {
$async.Future<$45.ClaimCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimCreatedRequest> $request) async {
return created($call, await $request);
}
$async.Future<$0.ClaimCreatedResponse> created($grpc.ServiceCall call, $0.ClaimCreatedRequest request);
$async.Future<$0.ClaimCompletedResponse> completed_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimCompletedRequest> $request) async {
$async.Future<$45.ClaimCompletedResponse> completed_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimCompletedRequest> $request) async {
return completed($call, await $request);
}
$async.Future<$0.ClaimCompletedResponse> completed($grpc.ServiceCall call, $0.ClaimCompletedRequest request);
$async.Future<$0.ClaimCriticalityUpdatedResponse> criticalityUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimCriticalityUpdatedRequest> $request) async {
$async.Future<$45.ClaimCriticalityUpdatedResponse> criticalityUpdated_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimCriticalityUpdatedRequest> $request) async {
return criticalityUpdated($call, await $request);
}
$async.Future<$0.ClaimCriticalityUpdatedResponse> criticalityUpdated($grpc.ServiceCall call, $0.ClaimCriticalityUpdatedRequest request);
$async.Future<$0.ClaimStatusUpdatedResponse> statusUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimStatusUpdatedRequest> $request) async {
$async.Future<$45.ClaimStatusUpdatedResponse> statusUpdated_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimStatusUpdatedRequest> $request) async {
return statusUpdated($call, await $request);
}
$async.Future<$0.ClaimStatusUpdatedResponse> statusUpdated($grpc.ServiceCall call, $0.ClaimStatusUpdatedRequest request);
$async.Future<$0.ClaimAssigneesAddedResponse> assigneesAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimAssigneesAddedRequest> $request) async {
$async.Future<$45.ClaimAssigneesAddedResponse> assigneesAdded_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimAssigneesAddedRequest> $request) async {
return assigneesAdded($call, await $request);
}
$async.Future<$0.ClaimAssigneesAddedResponse> assigneesAdded($grpc.ServiceCall call, $0.ClaimAssigneesAddedRequest request);
$async.Future<$0.ClaimAssigneesRemovedResponse> assigneesRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimAssigneesRemovedRequest> $request) async {
$async.Future<$45.ClaimAssigneesRemovedResponse> assigneesRemoved_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimAssigneesRemovedRequest> $request) async {
return assigneesRemoved($call, await $request);
}
$async.Future<$0.ClaimAssigneesRemovedResponse> assigneesRemoved($grpc.ServiceCall call, $0.ClaimAssigneesRemovedRequest request);
$async.Future<$0.ClaimAmountUpdatedResponse> amountUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimAmountUpdatedRequest> $request) async {
$async.Future<$45.ClaimAmountUpdatedResponse> amountUpdated_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimAmountUpdatedRequest> $request) async {
return amountUpdated($call, await $request);
}
$async.Future<$0.ClaimAmountUpdatedResponse> amountUpdated($grpc.ServiceCall call, $0.ClaimAmountUpdatedRequest request);
$async.Future<$0.ClaimAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimAttachmentAddedRequest> $request) async {
$async.Future<$45.ClaimAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimAttachmentAddedRequest> $request) async {
return attachmentAdded($call, await $request);
}
$async.Future<$0.ClaimAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $0.ClaimAttachmentAddedRequest request);
$async.Future<$0.ClaimAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimAttachmentRemovedRequest> $request) async {
$async.Future<$45.ClaimAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimAttachmentRemovedRequest> $request) async {
return attachmentRemoved($call, await $request);
}
$async.Future<$0.ClaimAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $0.ClaimAttachmentRemovedRequest request);
$async.Future<$0.ClaimMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimMetaDataUpdatedRequest> $request) async {
$async.Future<$45.ClaimMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimMetaDataUpdatedRequest> $request) async {
return metaDataUpdated($call, await $request);
}
$async.Future<$0.ClaimMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $0.ClaimMetaDataUpdatedRequest request);
$async.Future<$0.ClaimTitleUpdatedResponse> titleUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimTitleUpdatedRequest> $request) async {
$async.Future<$45.ClaimTitleUpdatedResponse> titleUpdated_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimTitleUpdatedRequest> $request) async {
return titleUpdated($call, await $request);
}
$async.Future<$0.ClaimTitleUpdatedResponse> titleUpdated($grpc.ServiceCall call, $0.ClaimTitleUpdatedRequest request);
$async.Future<$0.ClaimMessageSentResponse> messageSent_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimMessageSentRequest> $request) async {
$async.Future<$45.ClaimMessageSentResponse> messageSent_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimMessageSentRequest> $request) async {
return messageSent($call, await $request);
}
$async.Future<$0.ClaimMessageSentResponse> messageSent($grpc.ServiceCall call, $0.ClaimMessageSentRequest request);
$async.Future<$0.ClaimDeletedResponse> deleted_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimDeletedRequest> $request) async {
$async.Future<$45.ClaimDeletedResponse> deleted_Pre($grpc.ServiceCall $call, $async.Future<$45.ClaimDeletedRequest> $request) async {
return deleted($call, await $request);
}
$async.Future<$0.ClaimDeletedResponse> deleted($grpc.ServiceCall call, $0.ClaimDeletedRequest request);
$async.Future<$0.ClaimSanitisedResponse> sanitised_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimSanitisedRequest> $request) async {
return sanitised($call, await $request);
}
$async.Future<$0.ClaimSanitisedResponse> sanitised($grpc.ServiceCall call, $0.ClaimSanitisedRequest request);
$async.Future<$0.ClaimCustomFieldsUpdatedResponse> customFieldsUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimCustomFieldsUpdatedRequest> $request) async {
return customFieldsUpdated($call, await $request);
}
$async.Future<$0.ClaimCustomFieldsUpdatedResponse> customFieldsUpdated($grpc.ServiceCall call, $0.ClaimCustomFieldsUpdatedRequest request);
$async.Future<$45.ClaimCreatedResponse> created($grpc.ServiceCall call, $45.ClaimCreatedRequest request);
$async.Future<$45.ClaimCompletedResponse> completed($grpc.ServiceCall call, $45.ClaimCompletedRequest request);
$async.Future<$45.ClaimCriticalityUpdatedResponse> criticalityUpdated($grpc.ServiceCall call, $45.ClaimCriticalityUpdatedRequest request);
$async.Future<$45.ClaimStatusUpdatedResponse> statusUpdated($grpc.ServiceCall call, $45.ClaimStatusUpdatedRequest request);
$async.Future<$45.ClaimAssigneesAddedResponse> assigneesAdded($grpc.ServiceCall call, $45.ClaimAssigneesAddedRequest request);
$async.Future<$45.ClaimAssigneesRemovedResponse> assigneesRemoved($grpc.ServiceCall call, $45.ClaimAssigneesRemovedRequest request);
$async.Future<$45.ClaimAmountUpdatedResponse> amountUpdated($grpc.ServiceCall call, $45.ClaimAmountUpdatedRequest request);
$async.Future<$45.ClaimAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $45.ClaimAttachmentAddedRequest request);
$async.Future<$45.ClaimAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $45.ClaimAttachmentRemovedRequest request);
$async.Future<$45.ClaimMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $45.ClaimMetaDataUpdatedRequest request);
$async.Future<$45.ClaimTitleUpdatedResponse> titleUpdated($grpc.ServiceCall call, $45.ClaimTitleUpdatedRequest request);
$async.Future<$45.ClaimMessageSentResponse> messageSent($grpc.ServiceCall call, $45.ClaimMessageSentRequest request);
$async.Future<$45.ClaimDeletedResponse> deleted($grpc.ServiceCall call, $45.ClaimDeletedRequest request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claimInput.proto.
// Generated code. Do not modify.
// source: claimInput.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -32,23 +31,23 @@ const ClaimCreatedPayload$json = {
/// Descriptor for `ClaimCreatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCreatedPayloadDescriptor = $convert.base64Decode(
'ChNDbGFpbUNyZWF0ZWRQYXlsb2FkEksKC0NsYWltVHlwZUlEGAEgASgJQimSQR4yHElkZW50aW'
'ZpZXIgb2YgdGhlIGNsYWltIHR5cGW6gQEEcgIQAVILQ2xhaW1UeXBlSUQSSwoIRW50aXR5SUQY'
'AiABKAlCL5JBJDIiSWRlbnRpZmllciBvZiB0aGUgdGFyZ2V0dGVkIGVudGl0ebqBAQRyAhABUg'
'hFbnRpdHlJRBKXAQoJQXNzaWduZWVzGAUgAygJQnmSQS0yK0NvbnRhY3RzIGFzc2lnbmVkIG9u'
'IHRoZSBjbGFpbXMgKHVzZXIgdXVpZCm6gQFFkgFCIkByPjI8WzAtOWEtZl17OH0tWzAtOWEtZl'
'17NH0tWzAtOWEtZl17NH0tWzAtOWEtZl17NH0tWzAtOWEtZl17MTJ9UglBc3NpZ25lZXMSPQoG'
'QW1vdW50GAYgASgLMgsuYXBpLkFtb3VudEIYkkEVMhNBbW91bnQgb2YgdGhlIGNsYWltUgZBbW'
'91bnQSygEKCE1ldGFEYXRhGAcgAygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudEKXAZJBiAEyhQFN'
'ZXRhZGF0YSBhcmUgY2hhcmFjdGVyaXN0aWNzIHNwZWNpZmljIHRvIHRoZSBwcm9qZWN0LiBUaG'
'V5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwg'
'Ym9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANLZXlSCE1ldGFEYXRhEi0KBVRpdGxlGAggAS'
'gJQheSQRQyElRpdGxlIG9mIHRoZSBjbGFpbVIFVGl0bGUSVgoLQ3JpdGljYWxpdHkYCSABKA4y'
'FS5hcGkuQ2xhaW1Dcml0aWNhbGl0eUIdkkEaMhhDcml0aWNhbGl0eSBvZiB0aGUgY2xhaW1SC0'
'NyaXRpY2FsaXR5EmEKCURpc3BsYXlJRBgKIAEoCUJDkkFAMj5JZGVudGlmaWVyIHRvIGRpc3Bs'
'YXksIGJlY2F1c2UgaXQgbWF5IGRpZmZlciBmcm9tIHRoZSBFbnRpdHlJRFIJRGlzcGxheUlEOk'
'WSQSoKKDINRXZlbnQgUGF5bG9hZNIBC0NsYWltVHlwZUlE0gEIRW50aXR5SUSiuxgFRXZlbnSo'
'uxgBursYB0NyZWF0ZWQ=');
'ChNDbGFpbUNyZWF0ZWRQYXlsb2FkEkoKC0NsYWltVHlwZUlEGAEgASgJQiiSQR4yHElkZW50aW'
'ZpZXIgb2YgdGhlIGNsYWltIHR5cGX6QgRyAhABUgtDbGFpbVR5cGVJRBJKCghFbnRpdHlJRBgC'
'IAEoCUIukkEkMiJJZGVudGlmaWVyIG9mIHRoZSB0YXJnZXR0ZWQgZW50aXR5+kIEcgIQAVIIRW'
'50aXR5SUQSlgEKCUFzc2lnbmVlcxgFIAMoCUJ4kkEtMitDb250YWN0cyBhc3NpZ25lZCBvbiB0'
'aGUgY2xhaW1zICh1c2VyIHV1aWQp+kJFkgFCIkByPjI8WzAtOWEtZl17OH0tWzAtOWEtZl17NH'
'0tWzAtOWEtZl17NH0tWzAtOWEtZl17NH0tWzAtOWEtZl17MTJ9UglBc3NpZ25lZXMSPQoGQW1v'
'dW50GAYgASgLMgsuYXBpLkFtb3VudEIYkkEVMhNBbW91bnQgb2YgdGhlIGNsYWltUgZBbW91bn'
'QSygEKCE1ldGFEYXRhGAcgAygLMhQuYXBpLk1ldGFkYXRhRWxlbWVudEKXAZJBiAEyhQFNZXRh'
'ZGF0YSBhcmUgY2hhcmFjdGVyaXN0aWNzIHNwZWNpZmljIHRvIHRoZSBwcm9qZWN0LiBUaGV5IG'
'NhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm9ybSAoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9v'
'bGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANLZXlSCE1ldGFEYXRhEi0KBVRpdGxlGAggASgJQh'
'eSQRQyElRpdGxlIG9mIHRoZSBjbGFpbVIFVGl0bGUSVgoLQ3JpdGljYWxpdHkYCSABKA4yFS5h'
'cGkuQ2xhaW1Dcml0aWNhbGl0eUIdkkEaMhhDcml0aWNhbGl0eSBvZiB0aGUgY2xhaW1SC0NyaX'
'RpY2FsaXR5EmgKCURpc3BsYXlJRBgKIAEoCUJKkkFAMj5JZGVudGlmaWVyIHRvIGRpc3BsYXks'
'IGJlY2F1c2UgaXQgbWF5IGRpZmZlciBmcm9tIHRoZSBFbnRpdHlJRPpCBHICEAFSCURpc3BsYX'
'lJRDpFkkEqCigyDUV2ZW50IFBheWxvYWTSAQtDbGFpbVR5cGVJRNIBCEVudGl0eUlEorsYBUV2'
'ZW50qLsYAbq7GAdDcmVhdGVk');
@$core.Deprecated('Use claimCreatedEventDescriptor instead')
const ClaimCreatedEvent$json = {
@@ -63,11 +62,11 @@ const ClaimCreatedEvent$json = {
/// Descriptor for `ClaimCreatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCreatedEventDescriptor = $convert.base64Decode(
'ChFDbGFpbUNyZWF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCb'
'qBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFS'
'AklEEj0KB1BheWxvYWQYAyABKAsyGC5hcGkuQ2xhaW1DcmVhdGVkUGF5bG9hZEIJuoEBBYoBAh'
'ABUgdQYXlsb2FkOlOSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVFdmVudLq7GAdD'
'cmVhdGVkyrsYDWZpbGxEaXNwbGF5SUTauxgNY2hlY2tDcmVhdGlvbg==');
'ChFDbGFpbUNyZWF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCP'
'pCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhABUgJJ'
'RBI8CgdQYXlsb2FkGAMgASgLMhguYXBpLkNsYWltQ3JlYXRlZFBheWxvYWRCCPpCBYoBAhABUg'
'dQYXlsb2FkOjGSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVFdmVudLq7GAdDcmVh'
'dGVk');
@$core.Deprecated('Use claimCreatedRequestDescriptor instead')
const ClaimCreatedRequest$json = {
@@ -82,11 +81,11 @@ const ClaimCreatedRequest$json = {
/// Descriptor for `ClaimCreatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCreatedRequestDescriptor = $convert.base64Decode(
'ChNDbGFpbUNyZWF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURC'
'CbqBAQWKAQIQAVICSUQSPQoHUGF5bG9hZBgDIAEoCzIYLmFwaS5DbGFpbUNyZWF0ZWRQYXlsb2'
'FkQgm6gQEFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsY'
'B1JlcXVlc3S6uxgHQ3JlYXRlZA==');
'ChNDbGFpbUNyZWF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
'+kIFigECEAFSAklEEjwKB1BheWxvYWQYAyABKAsyGC5hcGkuQ2xhaW1DcmVhdGVkUGF5bG9hZE'
'II+kIFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1Jl'
'cXVlc3S6uxgHQ3JlYXRlZA==');
@$core.Deprecated('Use claimCreatedResponseDescriptor instead')
const ClaimCreatedResponse$json = {
@@ -117,14 +116,14 @@ const ClaimCompletedPayload$json = {
/// Descriptor for `ClaimCompletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCompletedPayloadDescriptor = $convert.base64Decode(
'ChVDbGFpbUNvbXBsZXRlZFBheWxvYWQSRQoKRW5kQ29tbWVudBgBIAEoCUIlkkEaMhhFbmQgY2'
'9tbWVudCBvZiB0aGUgY2xhaW26gQEEcgIQAVIKRW5kQ29tbWVudBJmCgdDbG9zdXJlGAIgASgL'
'MhEuYXBpLkNsYWltQ2xvc3VyZUI5kkEtMitDbG9zdXJlIHJlc3BvbnNpYmxlIGFuZCBjYXVzZX'
'Mgb2YgdGhlIGNsYWltuoEBBYoBAhABUgdDbG9zdXJlEpQBCgpTdGF0dXNDb2RlGAMgASgOMhAu'
'YXBpLkNsYWltU3RhdHVzQmKSQRUyE1N0YXR1cyBvZiB0aGUgY2xhaW26gQEFggECEAHKwRgZU3'
'RhdHVzLkN1cnJlbnQuU3RhdHVzQ29kZeLCGCBDbGFpbVN0YXR1c1N0cnVjdC5DbGFpbVN0YXR1'
'c0RlZlIKU3RhdHVzQ29kZTpSkkE1CjMyDUV2ZW50IFBheWxvYWTSAQpFbmRDb21tZW500gEHQ2'
'xvc3VyZdIBClN0YXR1c0NvZGWiuxgFRXZlbnSouxgBursYCUNvbXBsZXRlZA==');
'ChVDbGFpbUNvbXBsZXRlZFBheWxvYWQSRAoKRW5kQ29tbWVudBgBIAEoCUIkkkEaMhhFbmQgY2'
'9tbWVudCBvZiB0aGUgY2xhaW36QgRyAhABUgpFbmRDb21tZW50EmUKB0Nsb3N1cmUYAiABKAsy'
'ES5hcGkuQ2xhaW1DbG9zdXJlQjiSQS0yK0Nsb3N1cmUgcmVzcG9uc2libGUgYW5kIGNhdXNlcy'
'BvZiB0aGUgY2xhaW36QgWKAQIQAVIHQ2xvc3VyZRKTAQoKU3RhdHVzQ29kZRgDIAEoDjIQLmFw'
'aS5DbGFpbVN0YXR1c0JhkkEVMhNTdGF0dXMgb2YgdGhlIGNsYWlt+kIFggECEAHKwRgZU3RhdH'
'VzLkN1cnJlbnQuU3RhdHVzQ29kZeLCGCBDbGFpbVN0YXR1c1N0cnVjdC5DbGFpbVN0YXR1c0Rl'
'ZlIKU3RhdHVzQ29kZTpSkkE1CjMyDUV2ZW50IFBheWxvYWTSAQpFbmRDb21tZW500gEHQ2xvc3'
'VyZdIBClN0YXR1c0NvZGWiuxgFRXZlbnSouxgBursYCUNvbXBsZXRlZA==');
@$core.Deprecated('Use claimCompletedEventDescriptor instead')
const ClaimCompletedEvent$json = {
@@ -139,11 +138,11 @@ const ClaimCompletedEvent$json = {
/// Descriptor for `ClaimCompletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCompletedEventDescriptor = $convert.base64Decode(
'ChNDbGFpbUNvbXBsZXRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'IJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQ'
'AVICSUQSPwoHUGF5bG9hZBgDIAEoCzIaLmFwaS5DbGFpbUNvbXBsZXRlZFBheWxvYWRCCbqBAQ'
'WKAQIQAVIHUGF5bG9hZDozkkEaChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgFRXZlbnS6'
'uxgJQ29tcGxldGVk');
'ChNDbGFpbUNvbXBsZXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'II+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIFigECEAFS'
'AklEEj4KB1BheWxvYWQYAyABKAsyGi5hcGkuQ2xhaW1Db21wbGV0ZWRQYXlsb2FkQgj6QgWKAQ'
'IQAVIHUGF5bG9hZDozkkEaChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgFRXZlbnS6uxgJ'
'Q29tcGxldGVk');
@$core.Deprecated('Use claimCompletedRequestDescriptor instead')
const ClaimCompletedRequest$json = {
@@ -158,11 +157,11 @@ const ClaimCompletedRequest$json = {
/// Descriptor for `ClaimCompletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCompletedRequestDescriptor = $convert.base64Decode(
'ChVDbGFpbUNvbXBsZXRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REIJuoEBBYoBAhABUgJJRBI/CgdQYXlsb2FkGAMgASgLMhouYXBpLkNsYWltQ29tcGxldGVkUG'
'F5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
'ZKK7GAdSZXF1ZXN0ursYCUNvbXBsZXRlZA==');
'ChVDbGFpbUNvbXBsZXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlE'
'Qgj6QgWKAQIQAVICSUQSPgoHUGF5bG9hZBgDIAEoCzIaLmFwaS5DbGFpbUNvbXBsZXRlZFBheW'
'xvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7'
'GAdSZXF1ZXN0ursYCUNvbXBsZXRlZA==');
@$core.Deprecated('Use claimCompletedResponseDescriptor instead')
const ClaimCompletedResponse$json = {
@@ -191,10 +190,10 @@ const ClaimCriticalityUpdatedPayload$json = {
/// Descriptor for `ClaimCriticalityUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCriticalityUpdatedPayloadDescriptor = $convert.base64Decode(
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFBheWxvYWQSXwoLQ3JpdGljYWxpdHkYAyABKA4yFS'
'5hcGkuQ2xhaW1Dcml0aWNhbGl0eUImkkEaMhhDcml0aWNhbGl0eSBvZiB0aGUgY2xhaW26gQEF'
'ggECEAFSC0NyaXRpY2FsaXR5OkWSQR8KHTINRXZlbnQgUGF5bG9hZNIBC0NyaXRpY2FsaXR5or'
'sYBUV2ZW50qLsYAbq7GBJDcml0aWNhbGl0eVVwZGF0ZWQ=');
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFBheWxvYWQSXgoLQ3JpdGljYWxpdHkYAyABKA4yFS'
'5hcGkuQ2xhaW1Dcml0aWNhbGl0eUIlkkEaMhhDcml0aWNhbGl0eSBvZiB0aGUgY2xhaW36QgWC'
'AQIQAVILQ3JpdGljYWxpdHk6RZJBHwodMg1FdmVudCBQYXlsb2Fk0gELQ3JpdGljYWxpdHmiux'
'gFRXZlbnSouxgBursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
@$core.Deprecated('Use claimCriticalityUpdatedEventDescriptor instead')
const ClaimCriticalityUpdatedEvent$json = {
@@ -209,11 +208,11 @@ const ClaimCriticalityUpdatedEvent$json = {
/// Descriptor for `ClaimCriticalityUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCriticalityUpdatedEventDescriptor = $convert.base64Decode(
'ChxDbGFpbUNyaXRpY2FsaXR5VXBkYXRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5Fdm'
'VudEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURC'
'CbqBAQWKAQIQAVICSUQSSAoHUGF5bG9hZBgDIAEoCzIjLmFwaS5DbGFpbUNyaXRpY2FsaXR5VX'
'BkYXRlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDo8kkEaChjSAQZIZWFkZXLSAQJJRNIB'
'B1BheWxvYWSiuxgFRXZlbnS6uxgSQ3JpdGljYWxpdHlVcGRhdGVk');
'ChxDbGFpbUNyaXRpY2FsaXR5VXBkYXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5Fdm'
'VudEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
'+kIFigECEAFSAklEEkcKB1BheWxvYWQYAyABKAsyIy5hcGkuQ2xhaW1Dcml0aWNhbGl0eVVwZG'
'F0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo8kkEaChjSAQZIZWFkZXLSAQJJRNIBB1Bh'
'eWxvYWSiuxgFRXZlbnS6uxgSQ3JpdGljYWxpdHlVcGRhdGVk');
@$core.Deprecated('Use claimCriticalityUpdatedRequestDescriptor instead')
const ClaimCriticalityUpdatedRequest$json = {
@@ -228,11 +227,11 @@ const ClaimCriticalityUpdatedRequest$json = {
/// Descriptor for `ClaimCriticalityUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCriticalityUpdatedRequestDescriptor = $convert.base64Decode(
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLl'
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFw'
'aS5FbnRpdHlJREIJuoEBBYoBAhABUgJJRBJICgdQYXlsb2FkGAMgASgLMiMuYXBpLkNsYWltQ3'
'JpdGljYWxpdHlVcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOj6SQRoKGNIBBkhl'
'YWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLl'
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBp'
'LkVudGl0eUlEQgj6QgWKAQIQAVICSUQSRwoHUGF5bG9hZBgDIAEoCzIjLmFwaS5DbGFpbUNyaX'
'RpY2FsaXR5VXBkYXRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOj6SQRoKGNIBBkhlYWRl'
'ctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
@$core.Deprecated('Use claimCriticalityUpdatedResponseDescriptor instead')
const ClaimCriticalityUpdatedResponse$json = {
@@ -261,11 +260,11 @@ const ClaimStatusUpdatedPayload$json = {
/// Descriptor for `ClaimStatusUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimStatusUpdatedPayloadDescriptor = $convert.base64Decode(
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRQYXlsb2FkEpQBCgpTdGF0dXNDb2RlGAQgASgOMhAuYXBpLk'
'NsYWltU3RhdHVzQmKSQRUyE1N0YXR1cyBvZiB0aGUgY2xhaW26gQEFggECEAHKwRgZU3RhdHVz'
'LkN1cnJlbnQuU3RhdHVzQ29kZeLCGCBDbGFpbVN0YXR1c1N0cnVjdC5DbGFpbVN0YXR1c0RlZl'
'IKU3RhdHVzQ29kZTo/kkEeChwyDUV2ZW50IFBheWxvYWTSAQpTdGF0dXNDb2RlorsYBUV2ZW50'
'qLsYAbq7GA1TdGF0dXNVcGRhdGVk');
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRQYXlsb2FkEpMBCgpTdGF0dXNDb2RlGAQgASgOMhAuYXBpLk'
'NsYWltU3RhdHVzQmGSQRUyE1N0YXR1cyBvZiB0aGUgY2xhaW36QgWCAQIQAcrBGBlTdGF0dXMu'
'Q3VycmVudC5TdGF0dXNDb2Rl4sIYIENsYWltU3RhdHVzU3RydWN0LkNsYWltU3RhdHVzRGVmUg'
'pTdGF0dXNDb2RlOj+SQR4KHDINRXZlbnQgUGF5bG9hZNIBClN0YXR1c0NvZGWiuxgFRXZlbnSo'
'uxgBursYDVN0YXR1c1VwZGF0ZWQ=');
@$core.Deprecated('Use claimStatusUpdatedEventDescriptor instead')
const ClaimStatusUpdatedEvent$json = {
@@ -280,11 +279,11 @@ const ClaimStatusUpdatedEvent$json = {
/// Descriptor for `ClaimStatusUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimStatusUpdatedEventDescriptor = $convert.base64Decode(
'ChdDbGFpbVN0YXR1c1VwZGF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
'FkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEF'
'igECEAFSAklEEkMKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1TdGF0dXNVcGRhdGVkUGF5bG'
'9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7'
'GAVFdmVudLq7GA1TdGF0dXNVcGRhdGVk');
'ChdDbGFpbVN0YXR1c1VwZGF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoB'
'AhABUgJJRBJCCgdQYXlsb2FkGAMgASgLMh4uYXBpLkNsYWltU3RhdHVzVXBkYXRlZFBheWxvYW'
'RCCPpCBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVF'
'dmVudLq7GA1TdGF0dXNVcGRhdGVk');
@$core.Deprecated('Use claimStatusUpdatedRequestDescriptor instead')
const ClaimStatusUpdatedRequest$json = {
@@ -299,11 +298,11 @@ const ClaimStatusUpdatedRequest$json = {
/// Descriptor for `ClaimStatusUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimStatusUpdatedRequestDescriptor = $convert.base64Decode(
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50'
'aXR5SURCCbqBAQWKAQIQAVICSUQSQwoHUGF5bG9hZBgDIAEoCzIeLmFwaS5DbGFpbVN0YXR1c1'
'VwZGF0ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTS'
'AQdQYXlsb2FkorsYB1JlcXVlc3S6uxgNU3RhdHVzVXBkYXRlZA==');
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRp'
'dHlJREII+kIFigECEAFSAklEEkIKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1TdGF0dXNVcG'
'RhdGVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTSAQdQ'
'YXlsb2FkorsYB1JlcXVlc3S6uxgNU3RhdHVzVXBkYXRlZA==');
@$core.Deprecated('Use claimStatusUpdatedResponseDescriptor instead')
const ClaimStatusUpdatedResponse$json = {
@@ -332,9 +331,9 @@ const ClaimAmountUpdatedPayload$json = {
/// Descriptor for `ClaimAmountUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAmountUpdatedPayloadDescriptor = $convert.base64Decode(
'ChlDbGFpbUFtb3VudFVwZGF0ZWRQYXlsb2FkEkYKBkFtb3VudBgBIAEoCzILLmFwaS5BbW91bn'
'RCIZJBFTITQW1vdW50IG9mIHRoZSBjbGFpbbqBAQWKAQIQAVIGQW1vdW50OjuSQRoKGDINRXZl'
'bnQgUGF5bG9hZNIBBkFtb3VudKK7GAVFdmVudKi7GAG6uxgNQW1vdW50VXBkYXRlZA==');
'ChlDbGFpbUFtb3VudFVwZGF0ZWRQYXlsb2FkEkUKBkFtb3VudBgBIAEoCzILLmFwaS5BbW91bn'
'RCIJJBFTITQW1vdW50IG9mIHRoZSBjbGFpbfpCBYoBAhABUgZBbW91bnQ6O5JBGgoYMg1FdmVu'
'dCBQYXlsb2Fk0gEGQW1vdW50orsYBUV2ZW50qLsYAbq7GA1BbW91bnRVcGRhdGVk');
@$core.Deprecated('Use claimAmountUpdatedEventDescriptor instead')
const ClaimAmountUpdatedEvent$json = {
@@ -349,11 +348,11 @@ const ClaimAmountUpdatedEvent$json = {
/// Descriptor for `ClaimAmountUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAmountUpdatedEventDescriptor = $convert.base64Decode(
'ChdDbGFpbUFtb3VudFVwZGF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
'FkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6gQEF'
'igECEAFSAklEEkMKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1BbW91bnRVcGRhdGVkUGF5bG'
'9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7'
'GAVFdmVudLq7GA1BbW91bnRVcGRhdGVk');
'ChdDbGFpbUFtb3VudFVwZGF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoB'
'AhABUgJJRBJCCgdQYXlsb2FkGAMgASgLMh4uYXBpLkNsYWltQW1vdW50VXBkYXRlZFBheWxvYW'
'RCCPpCBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVF'
'dmVudLq7GA1BbW91bnRVcGRhdGVk');
@$core.Deprecated('Use claimAmountUpdatedRequestDescriptor instead')
const ClaimAmountUpdatedRequest$json = {
@@ -368,11 +367,11 @@ const ClaimAmountUpdatedRequest$json = {
/// Descriptor for `ClaimAmountUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAmountUpdatedRequestDescriptor = $convert.base64Decode(
'ChlDbGFpbUFtb3VudFVwZGF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50'
'aXR5SURCCbqBAQWKAQIQAVICSUQSQwoHUGF5bG9hZBgDIAEoCzIeLmFwaS5DbGFpbUFtb3VudF'
'VwZGF0ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTS'
'AQdQYXlsb2FkorsYB1JlcXVlc3S6uxgNQW1vdW50VXBkYXRlZA==');
'ChlDbGFpbUFtb3VudFVwZGF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRp'
'dHlJREII+kIFigECEAFSAklEEkIKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1BbW91bnRVcG'
'RhdGVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTSAQdQ'
'YXlsb2FkorsYB1JlcXVlc3S6uxgNQW1vdW50VXBkYXRlZA==');
@$core.Deprecated('Use claimAmountUpdatedResponseDescriptor instead')
const ClaimAmountUpdatedResponse$json = {
@@ -401,11 +400,11 @@ const ClaimAssigneesAddedPayload$json = {
/// Descriptor for `ClaimAssigneesAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesAddedPayloadDescriptor = $convert.base64Decode(
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUGF5bG9hZBKgAQoJQXNzaWduZWVzGAcgAygJQoEBkkExMi'
'9OZXcgY29udGFjdHMgYXNzaWduZWQgb24gdGhlIGNsYWltcyAodXNlciB1dWlkKbqBAUmSAUYI'
'ASJCckAyPl5bMC05YS1mXXs4fS1bMC05YS1mXXs0fS1bMC05YS1mXXs0fS1bMC05YS1mXXs0fS'
'1bMC05YS1mXXsxMn0kUglBc3NpZ25lZXM6P5JBHQobMg1FdmVudCBQYXlsb2Fk0gEJQXNzaWdu'
'ZWVzorsYBUV2ZW50qLsYAbq7GA5Bc3NpZ25lZXNBZGRlZA==');
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUGF5bG9hZBKfAQoJQXNzaWduZWVzGAcgAygJQoABkkExMi'
'9OZXcgY29udGFjdHMgYXNzaWduZWQgb24gdGhlIGNsYWltcyAodXNlciB1dWlkKfpCSZIBRggB'
'IkJyQDI+XlswLTlhLWZdezh9LVswLTlhLWZdezR9LVswLTlhLWZdezR9LVswLTlhLWZdezR9LV'
'swLTlhLWZdezEyfSRSCUFzc2lnbmVlczo/kkEdChsyDUV2ZW50IFBheWxvYWTSAQlBc3NpZ25l'
'ZXOiuxgFRXZlbnSouxgBursYDkFzc2lnbmVlc0FkZGVk');
@$core.Deprecated('Use claimAssigneesAddedEventDescriptor instead')
const ClaimAssigneesAddedEvent$json = {
@@ -420,11 +419,11 @@ const ClaimAssigneesAddedEvent$json = {
/// Descriptor for `ClaimAssigneesAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesAddedEventDescriptor = $convert.base64Decode(
'ChhDbGFpbUFzc2lnbmVlc0FkZGVkRXZlbnQSMwoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW50SG'
'VhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIJuoEB'
'BYoBAhABUgJJRBJECgdQYXlsb2FkGAMgASgLMh8uYXBpLkNsYWltQXNzaWduZWVzQWRkZWRQYX'
'lsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6SJJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2Fk'
'orsYBUV2ZW50ursYDkFzc2lnbmVlc0FkZGVk2rsYDGFkZEFzc2lnbmVlcw==');
'ChhDbGFpbUFzc2lnbmVlc0FkZGVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW50SG'
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6QgWK'
'AQIQAVICSUQSQwoHUGF5bG9hZBgDIAEoCzIfLmFwaS5DbGFpbUFzc2lnbmVlc0FkZGVkUGF5bG'
'9hZEII+kIFigECEAFSB1BheWxvYWQ6SJJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsY'
'BUV2ZW50ursYDkFzc2lnbmVlc0FkZGVk2rsYDGFkZEFzc2lnbmVlcw==');
@$core.Deprecated('Use claimAssigneesAddedRequestDescriptor instead')
const ClaimAssigneesAddedRequest$json = {
@@ -439,11 +438,11 @@ const ClaimAssigneesAddedRequest$json = {
/// Descriptor for `ClaimAssigneesAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesAddedRequestDescriptor = $convert.base64Decode(
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVu'
'dGl0eUlEQgm6gQEFigECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyHy5hcGkuQ2xhaW1Bc3NpZ2'
'5lZXNBZGRlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDo6kkEaChjSAQZIZWFkZXLSAQJJ'
'RNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GA5Bc3NpZ25lZXNBZGRlZA==');
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50'
'aXR5SURCCPpCBYoBAhABUgJJRBJDCgdQYXlsb2FkGAMgASgLMh8uYXBpLkNsYWltQXNzaWduZW'
'VzQWRkZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo6kkEaChjSAQZIZWFkZXLSAQJJRNIB'
'B1BheWxvYWSiuxgHUmVxdWVzdLq7GA5Bc3NpZ25lZXNBZGRlZA==');
@$core.Deprecated('Use claimAssigneesAddedResponseDescriptor instead')
const ClaimAssigneesAddedResponse$json = {
@@ -472,12 +471,12 @@ const ClaimAssigneesRemovedPayload$json = {
/// Descriptor for `ClaimAssigneesRemovedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesRemovedPayloadDescriptor = $convert.base64Decode(
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRQYXlsb2FkErkBChBSZW1vdmVkQXNzaWduZWVzGAcgAy'
'gJQowBkkE8MjpTb21lIGFzc2lnbmVkIGNvbnRhY3RzIHJlbW92ZWQgZnJvbSB0aGUgY2xhaW1z'
'ICh1c2VyIHV1aWQpuoEBSZIBRggBIkJyQDI+XlswLTlhLWZdezh9LVswLTlhLWZdezR9LVswLT'
'lhLWZdezR9LVswLTlhLWZdezR9LVswLTlhLWZdezEyfSRSEFJlbW92ZWRBc3NpZ25lZXM6SJJB'
'JAoiMg1FdmVudCBQYXlsb2Fk0gEQUmVtb3ZlZEFzc2lnbmVlc6K7GAVFdmVudKi7GAG6uxgQQX'
'NzaWduZWVzUmVtb3ZlZA==');
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRQYXlsb2FkErgBChBSZW1vdmVkQXNzaWduZWVzGAcgAy'
'gJQosBkkE8MjpTb21lIGFzc2lnbmVkIGNvbnRhY3RzIHJlbW92ZWQgZnJvbSB0aGUgY2xhaW1z'
'ICh1c2VyIHV1aWQp+kJJkgFGCAEiQnJAMj5eWzAtOWEtZl17OH0tWzAtOWEtZl17NH0tWzAtOW'
'EtZl17NH0tWzAtOWEtZl17NH0tWzAtOWEtZl17MTJ9JFIQUmVtb3ZlZEFzc2lnbmVlczpIkkEk'
'CiIyDUV2ZW50IFBheWxvYWTSARBSZW1vdmVkQXNzaWduZWVzorsYBUV2ZW50qLsYAbq7GBBBc3'
'NpZ25lZXNSZW1vdmVk');
@$core.Deprecated('Use claimAssigneesRemovedEventDescriptor instead')
const ClaimAssigneesRemovedEvent$json = {
@@ -492,11 +491,11 @@ const ClaimAssigneesRemovedEvent$json = {
/// Descriptor for `ClaimAssigneesRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesRemovedEventDescriptor = $convert.base64Decode(
'ChpDbGFpbUFzc2lnbmVlc1JlbW92ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbn'
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgm6'
'gQEFigECEAFSAklEEkYKB1BheWxvYWQYAyABKAsyIS5hcGkuQ2xhaW1Bc3NpZ25lZXNSZW1vdm'
'VkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOk2SQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5'
'bG9hZKK7GAVFdmVudLq7GBBBc3NpZ25lZXNSZW1vdmVk2rsYD3JlbW92ZUFzc2lnbmVlcw==');
'ChpDbGFpbUFzc2lnbmVlc1JlbW92ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbn'
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpC'
'BYoBAhABUgJJRBJFCgdQYXlsb2FkGAMgASgLMiEuYXBpLkNsYWltQXNzaWduZWVzUmVtb3ZlZF'
'BheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOk2SQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
'ZKK7GAVFdmVudLq7GBBBc3NpZ25lZXNSZW1vdmVk2rsYD3JlbW92ZUFzc2lnbmVlcw==');
@$core.Deprecated('Use claimAssigneesRemovedRequestDescriptor instead')
const ClaimAssigneesRemovedRequest$json = {
@@ -511,11 +510,11 @@ const ClaimAssigneesRemovedRequest$json = {
/// Descriptor for `ClaimAssigneesRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAssigneesRemovedRequestDescriptor = $convert.base64Decode(
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZX'
'F1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGku'
'RW50aXR5SURCCbqBAQWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIhLmFwaS5DbGFpbUFzc2'
'lnbmVlc1JlbW92ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6PJJBGgoY0gEGSGVhZGVy'
'0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgQQXNzaWduZWVzUmVtb3ZlZA==');
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZX'
'F1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5F'
'bnRpdHlJREII+kIFigECEAFSAklEEkUKB1BheWxvYWQYAyABKAsyIS5hcGkuQ2xhaW1Bc3NpZ2'
'5lZXNSZW1vdmVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6PJJBGgoY0gEGSGVhZGVy0gEC'
'SUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgQQXNzaWduZWVzUmVtb3ZlZA==');
@$core.Deprecated('Use claimAssigneesRemovedResponseDescriptor instead')
const ClaimAssigneesRemovedResponse$json = {
@@ -561,11 +560,11 @@ const ClaimAttachmentAddedEvent$json = {
/// Descriptor for `ClaimAttachmentAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAttachmentAddedEventDescriptor = $convert.base64Decode(
'ChlDbGFpbUF0dGFjaG1lbnRBZGRlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqB'
'AQWKAQIQAVICSUQSRQoHUGF5bG9hZBgDIAEoCzIgLmFwaS5DbGFpbUF0dGFjaG1lbnRBZGRlZF'
'BheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRl'
'ZNq7GA1hZGRBdHRhY2htZW50');
'ChlDbGFpbUF0dGFjaG1lbnRBZGRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQ2xhaW1BdHRhY2htZW50QWRkZWRQYX'
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRlZNq7'
'GA1hZGRBdHRhY2htZW50');
@$core.Deprecated('Use claimAttachmentAddedRequestDescriptor instead')
const ClaimAttachmentAddedRequest$json = {
@@ -580,11 +579,11 @@ const ClaimAttachmentAddedRequest$json = {
/// Descriptor for `ClaimAttachmentAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAttachmentAddedRequestDescriptor = $convert.base64Decode(
'ChtDbGFpbUF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5F'
'bnRpdHlJREIJuoEBBYoBAhABUgJJRBJFCgdQYXlsb2FkGAMgASgLMiAuYXBpLkNsYWltQXR0YW'
'NobWVudEFkZGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIB'
'AklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
'ChtDbGFpbUF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5DbGFpbUF0dGFjaG'
'1lbnRBZGRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
@$core.Deprecated('Use claimAttachmentAddedResponseDescriptor instead')
const ClaimAttachmentAddedResponse$json = {
@@ -631,11 +630,11 @@ const ClaimAttachmentRemovedEvent$json = {
/// Descriptor for `ClaimAttachmentRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAttachmentRemovedEventDescriptor = $convert.base64Decode(
'ChtDbGFpbUF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMwoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIJ'
'uoEBBYoBAhABUgJJRBJHCgdQYXlsb2FkGAMgASgLMiIuYXBpLkNsYWltQXR0YWNobWVudFJlbW'
'92ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50'
'UmVtb3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
'ChtDbGFpbUF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5DbGFpbUF0dGFjaG1lbnRSZW1vdm'
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50UmVt'
'b3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
@$core.Deprecated('Use claimAttachmentRemovedRequestDescriptor instead')
const ClaimAttachmentRemovedRequest$json = {
@@ -650,11 +649,11 @@ const ClaimAttachmentRemovedRequest$json = {
/// Descriptor for `ClaimAttachmentRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimAttachmentRemovedRequestDescriptor = $convert.base64Decode(
'Ch1DbGFpbUF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBp'
'LkVudGl0eUlEQgm6gQEFigECEAFSAklEEkcKB1BheWxvYWQYAyABKAsyIi5hcGkuQ2xhaW1BdH'
'RhY2htZW50UmVtb3ZlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFk'
'ZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
'Ch1DbGFpbUF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkNsYWltQXR0YW'
'NobWVudFJlbW92ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
@$core.Deprecated('Use claimAttachmentRemovedResponseDescriptor instead')
const ClaimAttachmentRemovedResponse$json = {
@@ -901,8 +900,8 @@ const ClaimDeletedEvent$json = {
final $typed_data.Uint8List claimDeletedEventDescriptor = $convert.base64Decode(
'ChFDbGFpbURlbGV0ZWRFdmVudBIoCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSBk'
'hlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSMgoHUGF5bG9hZBgDIAEoCzIY'
'LmFwaS5DbGFpbURlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOiSiuxgFRXZlbnS6uxgHRGVsZXRlZN'
'q7GAxjaGVja0RlbGV0ZWQ=');
'LmFwaS5DbGFpbURlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOhSiuxgFRXZlbnS6uxgHRGVsZXRlZA'
'==');
@$core.Deprecated('Use claimDeletedRequestDescriptor instead')
const ClaimDeletedRequest$json = {
@@ -938,132 +937,3 @@ final $typed_data.Uint8List claimDeletedResponseDescriptor = $convert.base64Deco
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
'Zbq7GAdEZWxldGVk');
@$core.Deprecated('Use claimSanitisedPayloadDescriptor instead')
const ClaimSanitisedPayload$json = {
'1': 'ClaimSanitisedPayload',
'7': {},
};
/// Descriptor for `ClaimSanitisedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimSanitisedPayloadDescriptor = $convert.base64Decode(
'ChVDbGFpbVNhbml0aXNlZFBheWxvYWQ6GqK7GAVFdmVudKi7GAG6uxgJU2FuaXRpc2Vk');
@$core.Deprecated('Use claimSanitisedEventDescriptor instead')
const ClaimSanitisedEvent$json = {
'1': 'ClaimSanitisedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimSanitisedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ClaimSanitisedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimSanitisedEventDescriptor = $convert.base64Decode(
'ChNDbGFpbVNhbml0aXNlZEV2ZW50EjMKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
'IJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCbqBAQWKAQIQ'
'AVICSUQSPwoHUGF5bG9hZBgDIAEoCzIaLmFwaS5DbGFpbVNhbml0aXNlZFBheWxvYWRCCbqBAQ'
'WKAQIQAVIHUGF5bG9hZDoiorsYBUV2ZW50ursYCVNhbml0aXNlZMq7GAhzYW5pdGlzZQ==');
@$core.Deprecated('Use claimSanitisedRequestDescriptor instead')
const ClaimSanitisedRequest$json = {
'1': 'ClaimSanitisedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimSanitisedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ClaimSanitisedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimSanitisedRequestDescriptor = $convert.base64Decode(
'ChVDbGFpbVNhbml0aXNlZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
'9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REIJuoEBBYoBAhABUgJJRBI/CgdQYXlsb2FkGAMgASgLMhouYXBpLkNsYWltU2FuaXRpc2VkUG'
'F5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
'ZKK7GAdSZXF1ZXN0ursYCVNhbml0aXNlZA==');
@$core.Deprecated('Use claimSanitisedResponseDescriptor instead')
const ClaimSanitisedResponse$json = {
'1': 'ClaimSanitisedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `ClaimSanitisedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimSanitisedResponseDescriptor = $convert.base64Decode(
'ChZDbGFpbVNhbml0aXNlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZXNwb25zZU'
'hlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoZorsYCFJlc3Bv'
'bnNlursYCVNhbml0aXNlZA==');
@$core.Deprecated('Use claimCustomFieldsUpdatedPayloadDescriptor instead')
const ClaimCustomFieldsUpdatedPayload$json = {
'1': 'ClaimCustomFieldsUpdatedPayload',
'7': {},
};
/// Descriptor for `ClaimCustomFieldsUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCustomFieldsUpdatedPayloadDescriptor = $convert.base64Decode(
'Ch9DbGFpbUN1c3RvbUZpZWxkc1VwZGF0ZWRQYXlsb2FkOiSiuxgFRXZlbnSouxgBursYE0N1c3'
'RvbUZpZWxkc1VwZGF0ZWQ=');
@$core.Deprecated('Use claimCustomFieldsUpdatedEventDescriptor instead')
const ClaimCustomFieldsUpdatedEvent$json = {
'1': 'ClaimCustomFieldsUpdatedEvent',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimCustomFieldsUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ClaimCustomFieldsUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCustomFieldsUpdatedEventDescriptor = $convert.base64Decode(
'Ch1DbGFpbUN1c3RvbUZpZWxkc1VwZGF0ZWRFdmVudBIzCgZIZWFkZXIYASABKAsyEC5hcGkuRX'
'ZlbnRIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIgASgLMg0uYXBpLkVudGl0eUlE'
'Qgm6gQEFigECEAFSAklEEkkKB1BheWxvYWQYAyABKAsyJC5hcGkuQ2xhaW1DdXN0b21GaWVsZH'
'NVcGRhdGVkUGF5bG9hZEIJuoEBBYoBAhABUgdQYXlsb2FkOiCiuxgFRXZlbnS6uxgTQ3VzdG9t'
'RmllbGRzVXBkYXRlZA==');
@$core.Deprecated('Use claimCustomFieldsUpdatedRequestDescriptor instead')
const ClaimCustomFieldsUpdatedRequest$json = {
'1': 'ClaimCustomFieldsUpdatedRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimCustomFieldsUpdatedPayload', '8': {}, '10': 'Payload'},
],
'7': {},
};
/// Descriptor for `ClaimCustomFieldsUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCustomFieldsUpdatedRequestDescriptor = $convert.base64Decode(
'Ch9DbGFpbUN1c3RvbUZpZWxkc1VwZGF0ZWRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS'
'5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISKAoCSUQYAiABKAsyDS5h'
'cGkuRW50aXR5SURCCbqBAQWKAQIQAVICSUQSSQoHUGF5bG9hZBgDIAEoCzIkLmFwaS5DbGFpbU'
'N1c3RvbUZpZWxkc1VwZGF0ZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6P5JBGgoY0gEG'
'SGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgTQ3VzdG9tRmllbGRzVXBkYXRlZA'
'==');
@$core.Deprecated('Use claimCustomFieldsUpdatedResponseDescriptor instead')
const ClaimCustomFieldsUpdatedResponse$json = {
'1': 'ClaimCustomFieldsUpdatedResponse',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
],
'7': {},
};
/// Descriptor for `ClaimCustomFieldsUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimCustomFieldsUpdatedResponseDescriptor = $convert.base64Decode(
'CiBDbGFpbUN1c3RvbUZpZWxkc1VwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcG'
'kuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6'
'I6K7GAhSZXNwb25zZbq7GBNDdXN0b21GaWVsZHNVcGRhdGVk');

View File

@@ -1,61 +1,63 @@
// This is a generated file - do not edit.
//
// Generated from claimQuery.proto.
// Generated code. Do not modify.
// source: claimQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import 'claim.pb.dart' as $3;
import 'shared.pb.dart' as $1;
import 'user.pb.dart' as $4;
import 'claim.pb.dart' as $88;
import 'shared.pb.dart' as $29;
import 'user.pb.dart' as $3;
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
class ClaimByIdQuery extends $pb.GeneratedMessage {
factory ClaimByIdQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.QueryEntityID>? iDs,
ClaimQueryOptions? options,
$29.QueryProjectHeader? header,
$core.Iterable<$29.EntityID>? iDs,
}) {
final result = create();
if (header != null) result.header = header;
if (iDs != null) result.iDs.addAll(iDs);
if (options != null) result.options = options;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (iDs != null) {
$result.iDs.addAll(iDs);
}
return $result;
}
ClaimByIdQuery._();
factory ClaimByIdQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByIdQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByIdQuery._() : super();
factory ClaimByIdQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByIdQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.QueryEntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.QueryEntityID.create)
..aOM<ClaimQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ClaimQueryOptions.create)
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..pc<$29.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $29.EntityID.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByIdQuery clone() => ClaimByIdQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByIdQuery copyWith(void Function(ClaimByIdQuery) updates) => super.copyWith((message) => updates(message as ClaimByIdQuery)) as ClaimByIdQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByIdQuery create() => ClaimByIdQuery._();
@$core.override
ClaimByIdQuery createEmptyInstance() => create();
static $pb.PbList<ClaimByIdQuery> createRepeated() => $pb.PbList<ClaimByIdQuery>();
@$core.pragma('dart2js:noInline')
@@ -63,64 +65,59 @@ class ClaimByIdQuery extends $pb.GeneratedMessage {
static ClaimByIdQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$1.QueryEntityID> get iDs => $_getList(1);
@$pb.TagNumber(3)
ClaimQueryOptions get options => $_getN(2);
@$pb.TagNumber(3)
set options(ClaimQueryOptions value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasOptions() => $_has(2);
@$pb.TagNumber(3)
void clearOptions() => $_clearField(3);
@$pb.TagNumber(3)
ClaimQueryOptions ensureOptions() => $_ensure(2);
$pb.PbList<$29.EntityID> get iDs => $_getList(1);
}
class ClaimByIdResult extends $pb.GeneratedMessage {
factory ClaimByIdResult({
$1.ResultHeader? header,
$core.Iterable<$3.Claim>? objects,
$29.ResultHeader? header,
$core.Iterable<$88.Claim>? objects,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (objects != null) {
$result.objects.addAll(objects);
}
return $result;
}
ClaimByIdResult._();
factory ClaimByIdResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByIdResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByIdResult._() : super();
factory ClaimByIdResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByIdResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByIdResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$3.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Claim.create)
..aOM<$29.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.ResultHeader.create)
..pc<$88.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $88.Claim.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByIdResult clone() => ClaimByIdResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByIdResult copyWith(void Function(ClaimByIdResult) updates) => super.copyWith((message) => updates(message as ClaimByIdResult)) as ClaimByIdResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByIdResult create() => ClaimByIdResult._();
@$core.override
ClaimByIdResult createEmptyInstance() => create();
static $pb.PbList<ClaimByIdResult> createRepeated() => $pb.PbList<ClaimByIdResult>();
@$core.pragma('dart2js:noInline')
@@ -128,68 +125,69 @@ class ClaimByIdResult extends $pb.GeneratedMessage {
static ClaimByIdResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
$29.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
set header($29.ResultHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
$29.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$3.Claim> get objects => $_getList(1);
$pb.PbList<$88.Claim> get objects => $_getList(1);
}
class ClaimByFilterQuery extends $pb.GeneratedMessage {
factory ClaimByFilterQuery({
$1.QueryProjectHeader? header,
$29.QueryProjectHeader? header,
$core.String? limitFilter,
$core.String? queryContext,
$core.Iterable<$1.BlockFilter>? blockFilters,
ClaimQueryOptions? options,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
$core.Iterable<$29.BlockFilter>? blockFilters,
}) {
final result = create();
if (header != null) result.header = header;
if (limitFilter != null) result.limitFilter = limitFilter;
if (queryContext != null) result.queryContext = queryContext;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (options != null) result.options = options;
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (limitFilter != null) {
$result.limitFilter = limitFilter;
}
if (queryContext != null) {
$result.queryContext = queryContext;
}
if (blockFilters != null) {
$result.blockFilters.addAll(blockFilters);
}
return $result;
}
ClaimByFilterQuery._();
factory ClaimByFilterQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByFilterQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByFilterQuery._() : super();
factory ClaimByFilterQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByFilterQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByFilterQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..pc<$1.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..aOM<ClaimQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ClaimQueryOptions.create)
..e<$1.EntityType>(8, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(9, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..pc<$29.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $29.BlockFilter.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByFilterQuery clone() => ClaimByFilterQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByFilterQuery copyWith(void Function(ClaimByFilterQuery) updates) => super.copyWith((message) => updates(message as ClaimByFilterQuery)) as ClaimByFilterQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByFilterQuery create() => ClaimByFilterQuery._();
@$core.override
ClaimByFilterQuery createEmptyInstance() => create();
static $pb.PbList<ClaimByFilterQuery> createRepeated() => $pb.PbList<ClaimByFilterQuery>();
@$core.pragma('dart2js:noInline')
@@ -197,21 +195,21 @@ class ClaimByFilterQuery extends $pb.GeneratedMessage {
static ClaimByFilterQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
/// Number of maximum result
@$pb.TagNumber(4)
$core.String get limitFilter => $_getSZ(1);
@$pb.TagNumber(4)
set limitFilter($core.String value) => $_setString(1, value);
set limitFilter($core.String v) { $_setString(1, v); }
@$pb.TagNumber(4)
$core.bool hasLimitFilter() => $_has(1);
@$pb.TagNumber(4)
@@ -220,82 +218,61 @@ class ClaimByFilterQuery extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(5)
set queryContext($core.String value) => $_setString(2, value);
set queryContext($core.String v) { $_setString(2, v); }
@$pb.TagNumber(5)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(5)
void clearQueryContext() => $_clearField(5);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
@$pb.TagNumber(6)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
@$pb.TagNumber(7)
ClaimQueryOptions get options => $_getN(4);
@$pb.TagNumber(7)
set options(ClaimQueryOptions value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasOptions() => $_has(4);
@$pb.TagNumber(7)
void clearOptions() => $_clearField(7);
@$pb.TagNumber(7)
ClaimQueryOptions ensureOptions() => $_ensure(4);
@$pb.TagNumber(8)
$1.EntityType get usageContextEntity => $_getN(5);
@$pb.TagNumber(8)
set usageContextEntity($1.EntityType value) => $_setField(8, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextEntity() => $_has(5);
@$pb.TagNumber(8)
void clearUsageContextEntity() => $_clearField(8);
@$pb.TagNumber(9)
$core.String get usageContextPath => $_getSZ(6);
@$pb.TagNumber(9)
set usageContextPath($core.String value) => $_setString(6, value);
@$pb.TagNumber(9)
$core.bool hasUsageContextPath() => $_has(6);
@$pb.TagNumber(9)
void clearUsageContextPath() => $_clearField(9);
$pb.PbList<$29.BlockFilter> get blockFilters => $_getList(3);
}
class ClaimByFilterResult extends $pb.GeneratedMessage {
factory ClaimByFilterResult({
$1.ResultHeader? header,
$core.Iterable<$3.Claim>? objects,
$29.ResultHeader? header,
$core.Iterable<$88.Claim>? objects,
$core.String? queryContext,
}) {
final result = create();
if (header != null) result.header = header;
if (objects != null) result.objects.addAll(objects);
if (queryContext != null) result.queryContext = queryContext;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (objects != null) {
$result.objects.addAll(objects);
}
if (queryContext != null) {
$result.queryContext = queryContext;
}
return $result;
}
ClaimByFilterResult._();
factory ClaimByFilterResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByFilterResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByFilterResult._() : super();
factory ClaimByFilterResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByFilterResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByFilterResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
..pc<$3.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Claim.create)
..aOM<$29.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.ResultHeader.create)
..pc<$88.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $88.Claim.create)
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByFilterResult clone() => ClaimByFilterResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByFilterResult copyWith(void Function(ClaimByFilterResult) updates) => super.copyWith((message) => updates(message as ClaimByFilterResult)) as ClaimByFilterResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByFilterResult create() => ClaimByFilterResult._();
@$core.override
ClaimByFilterResult createEmptyInstance() => create();
static $pb.PbList<ClaimByFilterResult> createRepeated() => $pb.PbList<ClaimByFilterResult>();
@$core.pragma('dart2js:noInline')
@@ -303,111 +280,73 @@ class ClaimByFilterResult extends $pb.GeneratedMessage {
static ClaimByFilterResult? _defaultInstance;
@$pb.TagNumber(1)
$1.ResultHeader get header => $_getN(0);
$29.ResultHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.ResultHeader value) => $_setField(1, value);
set header($29.ResultHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.ResultHeader ensureHeader() => $_ensure(0);
$29.ResultHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$pb.PbList<$3.Claim> get objects => $_getList(1);
$pb.PbList<$88.Claim> get objects => $_getList(1);
@$pb.TagNumber(3)
$core.String get queryContext => $_getSZ(2);
@$pb.TagNumber(3)
set queryContext($core.String value) => $_setString(2, value);
set queryContext($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasQueryContext() => $_has(2);
@$pb.TagNumber(3)
void clearQueryContext() => $_clearField(3);
}
class ClaimQueryOptions extends $pb.GeneratedMessage {
factory ClaimQueryOptions({
$core.Iterable<$core.String>? only,
}) {
final result = create();
if (only != null) result.only.addAll(only);
return result;
}
ClaimQueryOptions._();
factory ClaimQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pPS(1, _omitFieldNames ? '' : 'Only', protoName: 'Only')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClaimQueryOptions clone() => ClaimQueryOptions()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClaimQueryOptions copyWith(void Function(ClaimQueryOptions) updates) => super.copyWith((message) => updates(message as ClaimQueryOptions)) as ClaimQueryOptions;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimQueryOptions create() => ClaimQueryOptions._();
@$core.override
ClaimQueryOptions createEmptyInstance() => create();
static $pb.PbList<ClaimQueryOptions> createRepeated() => $pb.PbList<ClaimQueryOptions>();
@$core.pragma('dart2js:noInline')
static ClaimQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimQueryOptions>(create);
static ClaimQueryOptions? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$core.String> get only => $_getList(0);
}
class ClaimByMatchQuery extends $pb.GeneratedMessage {
factory ClaimByMatchQuery({
$1.QueryProjectHeader? header,
$core.Iterable<$1.BlockFilter>? blockFilters,
$core.Iterable<$1.MatchField>? matchFields,
$1.EntityType? usageContextEntity,
$core.String? usageContextPath,
$29.QueryProjectHeader? header,
$core.Iterable<$29.BlockFilter>? blockFilters,
$core.Iterable<$29.MatchField>? matchFields,
}) {
final result = create();
if (header != null) result.header = header;
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
if (matchFields != null) result.matchFields.addAll(matchFields);
if (usageContextEntity != null) result.usageContextEntity = usageContextEntity;
if (usageContextPath != null) result.usageContextPath = usageContextPath;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (blockFilters != null) {
$result.blockFilters.addAll(blockFilters);
}
if (matchFields != null) {
$result.matchFields.addAll(matchFields);
}
return $result;
}
ClaimByMatchQuery._();
factory ClaimByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByMatchQuery._() : super();
factory ClaimByMatchQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByMatchQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..pc<$1.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
..pc<$1.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $1.MatchField.create)
..e<$1.EntityType>(7, _omitFieldNames ? '' : 'UsageContextEntity', $pb.PbFieldType.OE, protoName: 'UsageContextEntity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
..aOS(8, _omitFieldNames ? '' : 'UsageContextPath', protoName: 'UsageContextPath')
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..pc<$29.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $29.BlockFilter.create)
..pc<$29.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $29.MatchField.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByMatchQuery clone() => ClaimByMatchQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByMatchQuery copyWith(void Function(ClaimByMatchQuery) updates) => super.copyWith((message) => updates(message as ClaimByMatchQuery)) as ClaimByMatchQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByMatchQuery create() => ClaimByMatchQuery._();
@$core.override
ClaimByMatchQuery createEmptyInstance() => create();
static $pb.PbList<ClaimByMatchQuery> createRepeated() => $pb.PbList<ClaimByMatchQuery>();
@$core.pragma('dart2js:noInline')
@@ -415,73 +354,59 @@ class ClaimByMatchQuery extends $pb.GeneratedMessage {
static ClaimByMatchQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
@$pb.TagNumber(5)
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(1);
$pb.PbList<$29.BlockFilter> get blockFilters => $_getList(1);
/// MatchField list structure, for FindMatching query
@$pb.TagNumber(6)
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
@$pb.TagNumber(7)
$1.EntityType get usageContextEntity => $_getN(3);
@$pb.TagNumber(7)
set usageContextEntity($1.EntityType value) => $_setField(7, value);
@$pb.TagNumber(7)
$core.bool hasUsageContextEntity() => $_has(3);
@$pb.TagNumber(7)
void clearUsageContextEntity() => $_clearField(7);
@$pb.TagNumber(8)
$core.String get usageContextPath => $_getSZ(4);
@$pb.TagNumber(8)
set usageContextPath($core.String value) => $_setString(4, value);
@$pb.TagNumber(8)
$core.bool hasUsageContextPath() => $_has(4);
@$pb.TagNumber(8)
void clearUsageContextPath() => $_clearField(8);
$pb.PbList<$29.MatchField> get matchFields => $_getList(2);
}
class ClaimByMatchResult extends $pb.GeneratedMessage {
factory ClaimByMatchResult({
$core.Iterable<$1.MatchFieldResult>? matchResults,
$core.Iterable<$29.MatchFieldResult>? matchResults,
}) {
final result = create();
if (matchResults != null) result.matchResults.addAll(matchResults);
return result;
final $result = create();
if (matchResults != null) {
$result.matchResults.addAll(matchResults);
}
return $result;
}
ClaimByMatchResult._();
factory ClaimByMatchResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimByMatchResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimByMatchResult._() : super();
factory ClaimByMatchResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimByMatchResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByMatchResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$1.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $1.MatchFieldResult.create)
..pc<$29.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $29.MatchFieldResult.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimByMatchResult clone() => ClaimByMatchResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimByMatchResult copyWith(void Function(ClaimByMatchResult) updates) => super.copyWith((message) => updates(message as ClaimByMatchResult)) as ClaimByMatchResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimByMatchResult create() => ClaimByMatchResult._();
@$core.override
ClaimByMatchResult createEmptyInstance() => create();
static $pb.PbList<ClaimByMatchResult> createRepeated() => $pb.PbList<ClaimByMatchResult>();
@$core.pragma('dart2js:noInline')
@@ -489,42 +414,48 @@ class ClaimByMatchResult extends $pb.GeneratedMessage {
static ClaimByMatchResult? _defaultInstance;
@$pb.TagNumber(2)
$pb.PbList<$1.MatchFieldResult> get matchResults => $_getList(0);
$pb.PbList<$29.MatchFieldResult> get matchResults => $_getList(0);
}
class ClaimGetRoomQuery extends $pb.GeneratedMessage {
factory ClaimGetRoomQuery({
$1.QueryProjectHeader? header,
$1.EntityID? iD,
$29.QueryProjectHeader? header,
$29.EntityID? iD,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (iD != null) {
$result.iD = iD;
}
return $result;
}
ClaimGetRoomQuery._();
factory ClaimGetRoomQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimGetRoomQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimGetRoomQuery._() : super();
factory ClaimGetRoomQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimGetRoomQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimGetRoomQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
..aOM<$29.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.QueryProjectHeader.create)
..aOM<$29.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $29.EntityID.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimGetRoomQuery clone() => ClaimGetRoomQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimGetRoomQuery copyWith(void Function(ClaimGetRoomQuery) updates) => super.copyWith((message) => updates(message as ClaimGetRoomQuery)) as ClaimGetRoomQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimGetRoomQuery create() => ClaimGetRoomQuery._();
@$core.override
ClaimGetRoomQuery createEmptyInstance() => create();
static $pb.PbList<ClaimGetRoomQuery> createRepeated() => $pb.PbList<ClaimGetRoomQuery>();
@$core.pragma('dart2js:noInline')
@@ -532,58 +463,62 @@ class ClaimGetRoomQuery extends $pb.GeneratedMessage {
static ClaimGetRoomQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.QueryProjectHeader get header => $_getN(0);
$29.QueryProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.QueryProjectHeader value) => $_setField(1, value);
set header($29.QueryProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
$29.QueryProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$1.EntityID get iD => $_getN(1);
$29.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($1.EntityID value) => $_setField(2, value);
set iD($29.EntityID v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$1.EntityID ensureID() => $_ensure(1);
$29.EntityID ensureID() => $_ensure(1);
}
class ClaimGetRoomResult extends $pb.GeneratedMessage {
factory ClaimGetRoomResult({
$core.String? roomName,
}) {
final result = create();
if (roomName != null) result.roomName = roomName;
return result;
final $result = create();
if (roomName != null) {
$result.roomName = roomName;
}
return $result;
}
ClaimGetRoomResult._();
factory ClaimGetRoomResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimGetRoomResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimGetRoomResult._() : super();
factory ClaimGetRoomResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimGetRoomResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimGetRoomResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'RoomName', protoName: 'RoomName')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimGetRoomResult clone() => ClaimGetRoomResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimGetRoomResult copyWith(void Function(ClaimGetRoomResult) updates) => super.copyWith((message) => updates(message as ClaimGetRoomResult)) as ClaimGetRoomResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimGetRoomResult create() => ClaimGetRoomResult._();
@$core.override
ClaimGetRoomResult createEmptyInstance() => create();
static $pb.PbList<ClaimGetRoomResult> createRepeated() => $pb.PbList<ClaimGetRoomResult>();
@$core.pragma('dart2js:noInline')
@@ -593,7 +528,7 @@ class ClaimGetRoomResult extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$core.String get roomName => $_getSZ(0);
@$pb.TagNumber(1)
set roomName($core.String value) => $_setString(0, value);
set roomName($core.String v) { $_setString(0, v); }
@$pb.TagNumber(1)
$core.bool hasRoomName() => $_has(0);
@$pb.TagNumber(1)
@@ -602,40 +537,48 @@ class ClaimGetRoomResult extends $pb.GeneratedMessage {
class ClaimGetAvailableContactsQuery extends $pb.GeneratedMessage {
factory ClaimGetAvailableContactsQuery({
$1.RequestProjectHeader? header,
$1.EntityID? iD,
$29.RequestProjectHeader? header,
$29.EntityID? iD,
$core.Iterable<$core.String>? partnerIDs,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (partnerIDs != null) result.partnerIDs.addAll(partnerIDs);
return result;
final $result = create();
if (header != null) {
$result.header = header;
}
if (iD != null) {
$result.iD = iD;
}
if (partnerIDs != null) {
$result.partnerIDs.addAll(partnerIDs);
}
return $result;
}
ClaimGetAvailableContactsQuery._();
factory ClaimGetAvailableContactsQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimGetAvailableContactsQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimGetAvailableContactsQuery._() : super();
factory ClaimGetAvailableContactsQuery.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimGetAvailableContactsQuery.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimGetAvailableContactsQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
..aOM<$29.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $29.RequestProjectHeader.create)
..aOM<$29.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $29.EntityID.create)
..pPS(3, _omitFieldNames ? '' : 'PartnerIDs', protoName: 'PartnerIDs')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimGetAvailableContactsQuery clone() => ClaimGetAvailableContactsQuery()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimGetAvailableContactsQuery copyWith(void Function(ClaimGetAvailableContactsQuery) updates) => super.copyWith((message) => updates(message as ClaimGetAvailableContactsQuery)) as ClaimGetAvailableContactsQuery;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimGetAvailableContactsQuery create() => ClaimGetAvailableContactsQuery._();
@$core.override
ClaimGetAvailableContactsQuery createEmptyInstance() => create();
static $pb.PbList<ClaimGetAvailableContactsQuery> createRepeated() => $pb.PbList<ClaimGetAvailableContactsQuery>();
@$core.pragma('dart2js:noInline')
@@ -643,26 +586,26 @@ class ClaimGetAvailableContactsQuery extends $pb.GeneratedMessage {
static ClaimGetAvailableContactsQuery? _defaultInstance;
@$pb.TagNumber(1)
$1.RequestProjectHeader get header => $_getN(0);
$29.RequestProjectHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($1.RequestProjectHeader value) => $_setField(1, value);
set header($29.RequestProjectHeader v) { $_setField(1, v); }
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
$29.RequestProjectHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$1.EntityID get iD => $_getN(1);
$29.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($1.EntityID value) => $_setField(2, value);
set iD($29.EntityID v) { $_setField(2, v); }
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$1.EntityID ensureID() => $_ensure(1);
$29.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
$pb.PbList<$core.String> get partnerIDs => $_getList(2);
@@ -670,34 +613,38 @@ class ClaimGetAvailableContactsQuery extends $pb.GeneratedMessage {
class ClaimGetAvailableContactsResult extends $pb.GeneratedMessage {
factory ClaimGetAvailableContactsResult({
$core.Iterable<$4.User>? contacts,
$core.Iterable<$3.User>? contacts,
}) {
final result = create();
if (contacts != null) result.contacts.addAll(contacts);
return result;
final $result = create();
if (contacts != null) {
$result.contacts.addAll(contacts);
}
return $result;
}
ClaimGetAvailableContactsResult._();
factory ClaimGetAvailableContactsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimGetAvailableContactsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
ClaimGetAvailableContactsResult._() : super();
factory ClaimGetAvailableContactsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory ClaimGetAvailableContactsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimGetAvailableContactsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$4.User>(1, _omitFieldNames ? '' : 'Contacts', $pb.PbFieldType.PM, protoName: 'Contacts', subBuilder: $4.User.create)
..pc<$3.User>(1, _omitFieldNames ? '' : 'Contacts', $pb.PbFieldType.PM, protoName: 'Contacts', subBuilder: $3.User.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ClaimGetAvailableContactsResult clone() => ClaimGetAvailableContactsResult()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ClaimGetAvailableContactsResult copyWith(void Function(ClaimGetAvailableContactsResult) updates) => super.copyWith((message) => updates(message as ClaimGetAvailableContactsResult)) as ClaimGetAvailableContactsResult;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimGetAvailableContactsResult create() => ClaimGetAvailableContactsResult._();
@$core.override
ClaimGetAvailableContactsResult createEmptyInstance() => create();
static $pb.PbList<ClaimGetAvailableContactsResult> createRepeated() => $pb.PbList<ClaimGetAvailableContactsResult>();
@$core.pragma('dart2js:noInline')
@@ -705,9 +652,9 @@ class ClaimGetAvailableContactsResult extends $pb.GeneratedMessage {
static ClaimGetAvailableContactsResult? _defaultInstance;
@$pb.TagNumber(1)
$pb.PbList<$4.User> get contacts => $_getList(0);
$pb.PbList<$3.User> get contacts => $_getList(0);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from claimQuery.proto.
// Generated code. Do not modify.
// source: claimQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claimQuery.proto.
// Generated code. Do not modify.
// source: claimQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:async' as $async;
import 'dart:core' as $core;
@@ -16,98 +15,92 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'claimQuery.pb.dart' as $0;
import 'clickhouse.pb.dart' as $2;
import 'shared.pb.dart' as $1;
import 'claimQuery.pb.dart' as $46;
import 'clickhouse.pb.dart' as $31;
import 'shared.pb.dart' as $29;
export 'claimQuery.pb.dart';
@$pb.GrpcServiceName('api.ClaimQuery')
class ClaimQueryClient extends $grpc.Client {
/// The hostname for this service.
static const $core.String defaultHost = '';
static final _$getByIds = $grpc.ClientMethod<$46.ClaimByIdQuery, $46.ClaimByIdResult>(
'/api.ClaimQuery/GetByIds',
($46.ClaimByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $46.ClaimByIdResult.fromBuffer(value));
static final _$find = $grpc.ClientMethod<$46.ClaimByFilterQuery, $46.ClaimByFilterResult>(
'/api.ClaimQuery/Find',
($46.ClaimByFilterQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $46.ClaimByFilterResult.fromBuffer(value));
static final _$findMatchingFieldValues = $grpc.ClientMethod<$46.ClaimByMatchQuery, $46.ClaimByMatchResult>(
'/api.ClaimQuery/FindMatchingFieldValues',
($46.ClaimByMatchQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $46.ClaimByMatchResult.fromBuffer(value));
static final _$findMatchingFieldElements = $grpc.ClientMethod<$29.ElementByMatchQuery, $29.ElementByMatchResult>(
'/api.ClaimQuery/FindMatchingFieldElements',
($29.ElementByMatchQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ElementByMatchResult.fromBuffer(value));
static final _$extract = $grpc.ClientMethod<$29.ExtractQuery, $29.ExtractResult>(
'/api.ClaimQuery/Extract',
($29.ExtractQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.ExtractResult.fromBuffer(value));
static final _$getKPIData = $grpc.ClientMethod<$31.GetKPIDataQuery, $31.GetKPIDataResult>(
'/api.ClaimQuery/GetKPIData',
($31.GetKPIDataQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $31.GetKPIDataResult.fromBuffer(value));
static final _$getRoom = $grpc.ClientMethod<$46.ClaimGetRoomQuery, $46.ClaimGetRoomResult>(
'/api.ClaimQuery/GetRoom',
($46.ClaimGetRoomQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $46.ClaimGetRoomResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'/api.ClaimQuery/CountLines',
($29.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.CountLinesResult.fromBuffer(value));
static final _$getAvailableContacts = $grpc.ClientMethod<$46.ClaimGetAvailableContactsQuery, $46.ClaimGetAvailableContactsResult>(
'/api.ClaimQuery/GetAvailableContacts',
($46.ClaimGetAvailableContactsQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $46.ClaimGetAvailableContactsResult.fromBuffer(value));
/// OAuth scopes needed for the client.
static const $core.List<$core.String> oauthScopes = [
'',
];
ClaimQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
: super(channel, options: options,
interceptors: interceptors);
ClaimQueryClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$0.ClaimByIdResult> getByIds($0.ClaimByIdQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$46.ClaimByIdResult> getByIds($46.ClaimByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimByFilterResult> find($0.ClaimByFilterQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$46.ClaimByFilterResult> find($46.ClaimByFilterQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$find, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimByMatchResult> findMatchingFieldValues($0.ClaimByMatchQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$46.ClaimByMatchResult> findMatchingFieldValues($46.ClaimByMatchQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
}
$grpc.ResponseFuture<$1.ElementByMatchResult> findMatchingFieldElements($1.ElementByMatchQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.ElementByMatchResult> findMatchingFieldElements($29.ElementByMatchQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
}
$grpc.ResponseFuture<$1.ExtractResult> extract($1.ExtractQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.ExtractResult> extract($29.ExtractQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$extract, request, options: options);
}
$grpc.ResponseFuture<$2.GetKPIDataResult> getKPIData($2.GetKPIDataQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$31.GetKPIDataResult> getKPIData($31.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getKPIData, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimGetRoomResult> getRoom($0.ClaimGetRoomQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$46.ClaimGetRoomResult> getRoom($46.ClaimGetRoomQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getRoom, request, options: options);
}
$grpc.ResponseFuture<$1.CountLinesResult> countLines($1.CountLinesQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$29.CountLinesResult> countLines($29.CountLinesQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$countLines, request, options: options);
}
$grpc.ResponseFuture<$0.ClaimGetAvailableContactsResult> getAvailableContacts($0.ClaimGetAvailableContactsQuery request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$46.ClaimGetAvailableContactsResult> getAvailableContacts($46.ClaimGetAvailableContactsQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getAvailableContacts, request, options: options);
}
// method descriptors
static final _$getByIds = $grpc.ClientMethod<$0.ClaimByIdQuery, $0.ClaimByIdResult>(
'/api.ClaimQuery/GetByIds',
($0.ClaimByIdQuery value) => value.writeToBuffer(),
$0.ClaimByIdResult.fromBuffer);
static final _$find = $grpc.ClientMethod<$0.ClaimByFilterQuery, $0.ClaimByFilterResult>(
'/api.ClaimQuery/Find',
($0.ClaimByFilterQuery value) => value.writeToBuffer(),
$0.ClaimByFilterResult.fromBuffer);
static final _$findMatchingFieldValues = $grpc.ClientMethod<$0.ClaimByMatchQuery, $0.ClaimByMatchResult>(
'/api.ClaimQuery/FindMatchingFieldValues',
($0.ClaimByMatchQuery value) => value.writeToBuffer(),
$0.ClaimByMatchResult.fromBuffer);
static final _$findMatchingFieldElements = $grpc.ClientMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
'/api.ClaimQuery/FindMatchingFieldElements',
($1.ElementByMatchQuery value) => value.writeToBuffer(),
$1.ElementByMatchResult.fromBuffer);
static final _$extract = $grpc.ClientMethod<$1.ExtractQuery, $1.ExtractResult>(
'/api.ClaimQuery/Extract',
($1.ExtractQuery value) => value.writeToBuffer(),
$1.ExtractResult.fromBuffer);
static final _$getKPIData = $grpc.ClientMethod<$2.GetKPIDataQuery, $2.GetKPIDataResult>(
'/api.ClaimQuery/GetKPIData',
($2.GetKPIDataQuery value) => value.writeToBuffer(),
$2.GetKPIDataResult.fromBuffer);
static final _$getRoom = $grpc.ClientMethod<$0.ClaimGetRoomQuery, $0.ClaimGetRoomResult>(
'/api.ClaimQuery/GetRoom',
($0.ClaimGetRoomQuery value) => value.writeToBuffer(),
$0.ClaimGetRoomResult.fromBuffer);
static final _$countLines = $grpc.ClientMethod<$1.CountLinesQuery, $1.CountLinesResult>(
'/api.ClaimQuery/CountLines',
($1.CountLinesQuery value) => value.writeToBuffer(),
$1.CountLinesResult.fromBuffer);
static final _$getAvailableContacts = $grpc.ClientMethod<$0.ClaimGetAvailableContactsQuery, $0.ClaimGetAvailableContactsResult>(
'/api.ClaimQuery/GetAvailableContacts',
($0.ClaimGetAvailableContactsQuery value) => value.writeToBuffer(),
$0.ClaimGetAvailableContactsResult.fromBuffer);
}
@$pb.GrpcServiceName('api.ClaimQuery')
@@ -115,123 +108,114 @@ abstract class ClaimQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.ClaimQuery';
ClaimQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$0.ClaimByIdQuery, $0.ClaimByIdResult>(
$addMethod($grpc.ServiceMethod<$46.ClaimByIdQuery, $46.ClaimByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimByIdQuery.fromBuffer(value),
($0.ClaimByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimByFilterQuery, $0.ClaimByFilterResult>(
($core.List<$core.int> value) => $46.ClaimByIdQuery.fromBuffer(value),
($46.ClaimByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$46.ClaimByFilterQuery, $46.ClaimByFilterResult>(
'Find',
find_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimByFilterQuery.fromBuffer(value),
($0.ClaimByFilterResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimByMatchQuery, $0.ClaimByMatchResult>(
($core.List<$core.int> value) => $46.ClaimByFilterQuery.fromBuffer(value),
($46.ClaimByFilterResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$46.ClaimByMatchQuery, $46.ClaimByMatchResult>(
'FindMatchingFieldValues',
findMatchingFieldValues_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimByMatchQuery.fromBuffer(value),
($0.ClaimByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ElementByMatchQuery, $1.ElementByMatchResult>(
($core.List<$core.int> value) => $46.ClaimByMatchQuery.fromBuffer(value),
($46.ClaimByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.ElementByMatchQuery, $29.ElementByMatchResult>(
'FindMatchingFieldElements',
findMatchingFieldElements_Pre,
false,
false,
($core.List<$core.int> value) => $1.ElementByMatchQuery.fromBuffer(value),
($1.ElementByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.ExtractQuery, $1.ExtractResult>(
($core.List<$core.int> value) => $29.ElementByMatchQuery.fromBuffer(value),
($29.ElementByMatchResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.ExtractQuery, $29.ExtractResult>(
'Extract',
extract_Pre,
false,
false,
($core.List<$core.int> value) => $1.ExtractQuery.fromBuffer(value),
($1.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$2.GetKPIDataQuery, $2.GetKPIDataResult>(
($core.List<$core.int> value) => $29.ExtractQuery.fromBuffer(value),
($29.ExtractResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$31.GetKPIDataQuery, $31.GetKPIDataResult>(
'GetKPIData',
getKPIData_Pre,
false,
false,
($core.List<$core.int> value) => $2.GetKPIDataQuery.fromBuffer(value),
($2.GetKPIDataResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimGetRoomQuery, $0.ClaimGetRoomResult>(
($core.List<$core.int> value) => $31.GetKPIDataQuery.fromBuffer(value),
($31.GetKPIDataResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$46.ClaimGetRoomQuery, $46.ClaimGetRoomResult>(
'GetRoom',
getRoom_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimGetRoomQuery.fromBuffer(value),
($0.ClaimGetRoomResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$1.CountLinesQuery, $1.CountLinesResult>(
($core.List<$core.int> value) => $46.ClaimGetRoomQuery.fromBuffer(value),
($46.ClaimGetRoomResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.CountLinesQuery, $29.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
($1.CountLinesResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ClaimGetAvailableContactsQuery, $0.ClaimGetAvailableContactsResult>(
($core.List<$core.int> value) => $29.CountLinesQuery.fromBuffer(value),
($29.CountLinesResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$46.ClaimGetAvailableContactsQuery, $46.ClaimGetAvailableContactsResult>(
'GetAvailableContacts',
getAvailableContacts_Pre,
false,
false,
($core.List<$core.int> value) => $0.ClaimGetAvailableContactsQuery.fromBuffer(value),
($0.ClaimGetAvailableContactsResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $46.ClaimGetAvailableContactsQuery.fromBuffer(value),
($46.ClaimGetAvailableContactsResult value) => value.writeToBuffer()));
}
$async.Future<$0.ClaimByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimByIdQuery> $request) async {
$async.Future<$46.ClaimByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$46.ClaimByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$0.ClaimByIdResult> getByIds($grpc.ServiceCall call, $0.ClaimByIdQuery request);
$async.Future<$0.ClaimByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimByFilterQuery> $request) async {
$async.Future<$46.ClaimByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$46.ClaimByFilterQuery> $request) async {
return find($call, await $request);
}
$async.Future<$0.ClaimByFilterResult> find($grpc.ServiceCall call, $0.ClaimByFilterQuery request);
$async.Future<$0.ClaimByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimByMatchQuery> $request) async {
$async.Future<$46.ClaimByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$46.ClaimByMatchQuery> $request) async {
return findMatchingFieldValues($call, await $request);
}
$async.Future<$0.ClaimByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $0.ClaimByMatchQuery request);
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$1.ElementByMatchQuery> $request) async {
$async.Future<$29.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall $call, $async.Future<$29.ElementByMatchQuery> $request) async {
return findMatchingFieldElements($call, await $request);
}
$async.Future<$1.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $1.ElementByMatchQuery request);
$async.Future<$1.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$1.ExtractQuery> $request) async {
$async.Future<$29.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$29.ExtractQuery> $request) async {
return extract($call, await $request);
}
$async.Future<$1.ExtractResult> extract($grpc.ServiceCall call, $1.ExtractQuery request);
$async.Future<$2.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$2.GetKPIDataQuery> $request) async {
$async.Future<$31.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$31.GetKPIDataQuery> $request) async {
return getKPIData($call, await $request);
}
$async.Future<$2.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $2.GetKPIDataQuery request);
$async.Future<$0.ClaimGetRoomResult> getRoom_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimGetRoomQuery> $request) async {
$async.Future<$46.ClaimGetRoomResult> getRoom_Pre($grpc.ServiceCall $call, $async.Future<$46.ClaimGetRoomQuery> $request) async {
return getRoom($call, await $request);
}
$async.Future<$0.ClaimGetRoomResult> getRoom($grpc.ServiceCall call, $0.ClaimGetRoomQuery request);
$async.Future<$1.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$1.CountLinesQuery> $request) async {
$async.Future<$29.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$29.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
$async.Future<$0.ClaimGetAvailableContactsResult> getAvailableContacts_Pre($grpc.ServiceCall $call, $async.Future<$0.ClaimGetAvailableContactsQuery> $request) async {
$async.Future<$46.ClaimGetAvailableContactsResult> getAvailableContacts_Pre($grpc.ServiceCall $call, $async.Future<$46.ClaimGetAvailableContactsQuery> $request) async {
return getAvailableContacts($call, await $request);
}
$async.Future<$0.ClaimGetAvailableContactsResult> getAvailableContacts($grpc.ServiceCall call, $0.ClaimGetAvailableContactsQuery request);
$async.Future<$46.ClaimByIdResult> getByIds($grpc.ServiceCall call, $46.ClaimByIdQuery request);
$async.Future<$46.ClaimByFilterResult> find($grpc.ServiceCall call, $46.ClaimByFilterQuery request);
$async.Future<$46.ClaimByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $46.ClaimByMatchQuery request);
$async.Future<$29.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $29.ElementByMatchQuery request);
$async.Future<$29.ExtractResult> extract($grpc.ServiceCall call, $29.ExtractQuery request);
$async.Future<$31.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $31.GetKPIDataQuery request);
$async.Future<$46.ClaimGetRoomResult> getRoom($grpc.ServiceCall call, $46.ClaimGetRoomQuery request);
$async.Future<$29.CountLinesResult> countLines($grpc.ServiceCall call, $29.CountLinesQuery request);
$async.Future<$46.ClaimGetAvailableContactsResult> getAvailableContacts($grpc.ServiceCall call, $46.ClaimGetAvailableContactsQuery request);
}

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from claimQuery.proto.
// Generated code. Do not modify.
// source: claimQuery.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -19,18 +18,16 @@ const ClaimByIdQuery$json = {
'1': 'ClaimByIdQuery',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.QueryEntityID', '8': {}, '10': 'IDs'},
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimQueryOptions', '10': 'Options'},
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
],
'7': {},
};
/// Descriptor for `ClaimByIdQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimByIdQueryDescriptor = $convert.base64Decode(
'Cg5DbGFpbUJ5SWRRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
'VyQgm6gQEFigECEAFSBkhlYWRlchIvCgNJRHMYAiADKAsyEi5hcGkuUXVlcnlFbnRpdHlJREIJ'
'uoEBBZIBAggBUgNJRHMSMAoHT3B0aW9ucxgDIAEoCzIWLmFwaS5DbGFpbVF1ZXJ5T3B0aW9uc1'
'IHT3B0aW9uczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
'Cg5DbGFpbUJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
@$core.Deprecated('Use claimByIdResultDescriptor instead')
const ClaimByIdResult$json = {
@@ -56,29 +53,17 @@ const ClaimByFilterQuery$json = {
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
{'1': 'BlockFilters', '3': 6, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'Options', '3': 7, '4': 1, '5': 11, '6': '.api.ClaimQueryOptions', '10': 'Options'},
{'1': 'UsageContextEntity', '3': 8, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `ClaimByFilterQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimByFilterQueryDescriptor = $convert.base64Decode(
'ChJDbGFpbUJ5RmlsdGVyUXVlcnkSPQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
'hlYWRlckIMkkEAuoEBBYoBAhABUgZIZWFkZXISRgoLbGltaXRGaWx0ZXIYBCABKAlCJJJBITIY'
'TnVtYmVyIG9mIG1heGltdW0gcmVzdWx0SgUiNTAwIlILbGltaXRGaWx0ZXISIgoMcXVlcnlDb2'
'50ZXh0GAUgASgJUgxxdWVyeUNvbnRleHQSNAoMQmxvY2tGaWx0ZXJzGAYgAygLMhAuYXBpLkJs'
'b2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSMAoHT3B0aW9ucxgHIAEoCzIWLmFwaS5DbGFpbVF1ZX'
'J5T3B0aW9uc1IHT3B0aW9ucxLDAgoSVXNhZ2VDb250ZXh0RW50aXR5GAggASgOMg8uYXBpLkVu'
'dGl0eVR5cGVCgQKSQf0BMlxPcHRpb25hbCA6IEVudGl0eSB0byBhcHBseSB0aGUgcmVzdHJpY3'
'Rpb24gcnVsZXMgKG9uIHRoZSBwYXRoIGRlZmluZWQgd2l0aCBVc2FnZUNvbnRleHRQYXRoKUqc'
'ASJGb3IgQWN0b3IsIHRvIGxpbWl0IHRoZSByZXN1bHRzIGFjY29yZGluZyB0byBPcmRlciBTaG'
'lwRnJvbSByZXN0cmljdGlvbiBydWxlcywgZGVmaW5lIFVzYWdlQ29udGV4dEVudGl0eSB0byBP'
'cmRlciBhbmQgVXNhZ2VDb250ZXh0UGF0aCB0byBQYXlsb2FkLlNoaXBGcm9tIlISVXNhZ2VDb2'
'50ZXh0RW50aXR5EoQBChBVc2FnZUNvbnRleHRQYXRoGAkgASgJQliSQVUyU09wdGlvbmFsIDog'
'UGF0aCBvZiByZXN0cmljdGlvbiBydWxlIHRvIGFwcGx5IChVc2FnZUNvbnRleHRFbnRpdHkgc2'
'hvdWxkIGJlIGRlZmluZWQpUhBVc2FnZUNvbnRleHRQYXRoOg6SQQsKCdIBBkhlYWRlcg==');
'ChJDbGFpbUJ5RmlsdGVyUXVlcnkSPAoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
@$core.Deprecated('Use claimByFilterResultDescriptor instead')
const ClaimByFilterResult$json = {
@@ -96,21 +81,6 @@ final $typed_data.Uint8List claimByFilterResultDescriptor = $convert.base64Decod
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkNsYWltUgdPYmplY3RzEiIKDHF1ZXJ5'
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
@$core.Deprecated('Use claimQueryOptionsDescriptor instead')
const ClaimQueryOptions$json = {
'1': 'ClaimQueryOptions',
'2': [
{'1': 'Only', '3': 1, '4': 3, '5': 9, '8': {}, '10': 'Only'},
],
};
/// Descriptor for `ClaimQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimQueryOptionsDescriptor = $convert.base64Decode(
'ChFDbGFpbVF1ZXJ5T3B0aW9ucxKZAQoET25seRgBIAMoCUKEAZJBgAEyTE9wdGlvbmFsIDogTG'
'lzdCBvZiBmaWVsZHMgdG8gaW5jbHVkZSBpbiB0aGUgcmVzcG9uc2UgZm9yIGVhY2ggcmV0dXJu'
'ZWQgQ2xhaW1KMFsiSUQuUmVmSUQiLCAiUGF5bG9hZC5OYW1lIiwgIlBheWxvYWQuTGluZXMuSU'
'QiXVIET25seQ==');
@$core.Deprecated('Use claimByMatchQueryDescriptor instead')
const ClaimByMatchQuery$json = {
'1': 'ClaimByMatchQuery',
@@ -118,27 +88,17 @@ const ClaimByMatchQuery$json = {
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
{'1': 'BlockFilters', '3': 5, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
{'1': 'MatchFields', '3': 6, '4': 3, '5': 11, '6': '.api.MatchField', '8': {}, '10': 'MatchFields'},
{'1': 'UsageContextEntity', '3': 7, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'UsageContextEntity'},
{'1': 'UsageContextPath', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'UsageContextPath'},
],
'7': {},
};
/// Descriptor for `ClaimByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimByMatchQueryDescriptor = $convert.base64Decode(
'ChFDbGFpbUJ5TWF0Y2hRdWVyeRI6CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQgm6gQEFigECEAFSBkhlYWRlchI0CgxCbG9ja0ZpbHRlcnMYBSADKAsyEC5hcGkuQmxv'
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxJpCgtNYXRjaEZpZWxkcxgGIAMoCzIPLmFwaS5NYXRjaE'
'ZpZWxkQjaSQTMyMU1hdGNoRmllbGQgbGlzdCBzdHJ1Y3R1cmUsIGZvciBGaW5kTWF0Y2hpbmcg'
'cXVlcnlSC01hdGNoRmllbGRzEsMCChJVc2FnZUNvbnRleHRFbnRpdHkYByABKA4yDy5hcGkuRW'
'50aXR5VHlwZUKBApJB/QEyXE9wdGlvbmFsIDogRW50aXR5IHRvIGFwcGx5IHRoZSByZXN0cmlj'
'dGlvbiBydWxlcyAob24gdGhlIHBhdGggZGVmaW5lZCB3aXRoIFVzYWdlQ29udGV4dFBhdGgpSp'
'wBIkZvciBBY3RvciwgdG8gbGltaXQgdGhlIHJlc3VsdHMgYWNjb3JkaW5nIHRvIE9yZGVyIFNo'
'aXBGcm9tIHJlc3RyaWN0aW9uIHJ1bGVzLCBkZWZpbmUgVXNhZ2VDb250ZXh0RW50aXR5IHRvIE'
'9yZGVyIGFuZCBVc2FnZUNvbnRleHRQYXRoIHRvIFBheWxvYWQuU2hpcEZyb20iUhJVc2FnZUNv'
'bnRleHRFbnRpdHkShAEKEFVzYWdlQ29udGV4dFBhdGgYCCABKAlCWJJBVTJTT3B0aW9uYWwgOi'
'BQYXRoIG9mIHJlc3RyaWN0aW9uIHJ1bGUgdG8gYXBwbHkgKFVzYWdlQ29udGV4dEVudGl0eSBz'
'aG91bGQgYmUgZGVmaW5lZClSEFVzYWdlQ29udGV4dFBhdGg6DpJBCwoJ0gEGSGVhZGVy');
'ChFDbGFpbUJ5TWF0Y2hRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgFIAMoCzIQLmFwaS5CbG9j'
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEmkKC01hdGNoRmllbGRzGAYgAygLMg8uYXBpLk1hdGNoRm'
'llbGRCNpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZSwgZm9yIEZpbmRNYXRjaGluZyBx'
'dWVyeVILTWF0Y2hGaWVsZHM6DpJBCwoJ0gEGSGVhZGVy');
@$core.Deprecated('Use claimByMatchResultDescriptor instead')
const ClaimByMatchResult$json = {
@@ -165,9 +125,9 @@ const ClaimGetRoomQuery$json = {
/// Descriptor for `ClaimGetRoomQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimGetRoomQueryDescriptor = $convert.base64Decode(
'ChFDbGFpbUdldFJvb21RdWVyeRI9CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQgySQQC6gQEFigECEAFSBkhlYWRlchIrCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIM'
'kkEAuoEBBYoBAhABUgJJRDoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
'ChFDbGFpbUdldFJvb21RdWVyeRI8CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
'VhZGVyQguSQQD6QgWKAQIQAVIGSGVhZGVyEioKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQguS'
'QQD6QgWKAQIQAVICSUQ6E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
@$core.Deprecated('Use claimGetRoomResultDescriptor instead')
const ClaimGetRoomResult$json = {
@@ -194,10 +154,10 @@ const ClaimGetAvailableContactsQuery$json = {
/// Descriptor for `ClaimGetAvailableContactsQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimGetAvailableContactsQueryDescriptor = $convert.base64Decode(
'Ch5DbGFpbUdldEF2YWlsYWJsZUNvbnRhY3RzUXVlcnkSPwoGSGVhZGVyGAEgASgLMhkuYXBpLl'
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgySQQC6gQEFigECEAFSBkhlYWRlchIrCgJJRBgCIAEoCzIN'
'LmFwaS5FbnRpdHlJREIMkkEAuoEBBYoBAhABUgJJRBIeCgpQYXJ0bmVySURzGAMgAygJUgpQYX'
'J0bmVySURzOhOSQRAKDtIBBkhlYWRlctIBAklE');
'Ch5DbGFpbUdldEF2YWlsYWJsZUNvbnRhY3RzUXVlcnkSPgoGSGVhZGVyGAEgASgLMhkuYXBpLl'
'JlcXVlc3RQcm9qZWN0SGVhZGVyQguSQQD6QgWKAQIQAVIGSGVhZGVyEioKAklEGAIgASgLMg0u'
'YXBpLkVudGl0eUlEQguSQQD6QgWKAQIQAVICSUQSHgoKUGFydG5lcklEcxgDIAMoCVIKUGFydG'
'5lcklEczoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
@$core.Deprecated('Use claimGetAvailableContactsResultDescriptor instead')
const ClaimGetAvailableContactsResult$json = {

File diff suppressed because it is too large Load Diff

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from clickhouse.proto.
// Generated code. Do not modify.
// source: clickhouse.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -41,10 +40,10 @@ class CHChartType extends $pb.ProtobufEnum {
CH_CHART_TYPE_PIVOT_TABLE,
];
static final $core.List<CHChartType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 10);
static CHChartType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
static final $core.Map<$core.int, CHChartType> _byValue = $pb.ProtobufEnum.initByValue(values);
static CHChartType? valueOf($core.int value) => _byValue[value];
const CHChartType._(super.value, super.name);
const CHChartType._(super.v, super.n);
}
class CHQueryType extends $pb.ProtobufEnum {
@@ -60,10 +59,10 @@ class CHQueryType extends $pb.ProtobufEnum {
CH_QUERY_TYPE_C,
];
static final $core.List<CHQueryType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
static CHQueryType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
static final $core.Map<$core.int, CHQueryType> _byValue = $pb.ProtobufEnum.initByValue(values);
static CHQueryType? valueOf($core.int value) => _byValue[value];
const CHQueryType._(super.value, super.name);
const CHQueryType._(super.v, super.n);
}
class KpiDataResultFormat extends $pb.ProtobufEnum {
@@ -75,11 +74,11 @@ class KpiDataResultFormat extends $pb.ProtobufEnum {
KPIDATA_RESULT_FORMAT_SERIES,
];
static final $core.List<KpiDataResultFormat?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
static KpiDataResultFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
static final $core.Map<$core.int, KpiDataResultFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
static KpiDataResultFormat? valueOf($core.int value) => _byValue[value];
const KpiDataResultFormat._(super.value, super.name);
const KpiDataResultFormat._(super.v, super.n);
}
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from clickhouse.proto.
// Generated code. Do not modify.
// source: clickhouse.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names, unused_import
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:convert' as $convert;
import 'dart:core' as $core;
@@ -96,21 +95,20 @@ const CHDimension$json = {
/// Descriptor for `CHDimension`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List cHDimensionDescriptor = $convert.base64Decode(
'CgtDSERpbWVuc2lvbhIcCgROYW1lGAEgASgJQgi6gQEEcgIQAVIETmFtZRIgCgtHcmFudWxhcm'
'l0eRgCIAEoCVILR3JhbnVsYXJpdHkSHgoFTGV2ZWwYAyABKAlCCLqBAQRyAhABUgVMZXZlbBIv'
'CghEYXRhVHlwZRgEIAEoCUITkkEISgYiZGF0ZSK6gQEEcgIQAVIIRGF0YVR5cGUSOQoLQ29udG'
'VudFR5cGUYBSABKAlCF5JBDEoKIkRhdGVUaW1lIrqBAQRyAhABUgtDb250ZW50VHlwZRIeCgpF'
'bnVtVmFsdWVzGAYgASgJUgpFbnVtVmFsdWVzEi0KBlBlcmlvZBgHIAEoCUIVkkESMhBBIHBlcm'
'lvZCBvZiB0aW1lUgZQZXJpb2QSuAEKCE9wZXJhdG9yGAggASgJQpsBkkGXATKUAUFsbG93ZWQg'
'dmFsdWVzIDogIiIsICJFUVVBTCIsICJESUZGIiwgIlNUQVJUX0JZIiwgIk5PVF9TVEFSVF9CWS'
'IsICJGSU5JU0hfQlkiLCAiTk9UX0ZJTklTSF9CWSIsICJDT05UQUlOUyIsICJOT1RfQ09OVEFJ'
'TlMiLCAiSU5fTElTVCIsICJOT1RfSU5fTElTVCJSCE9wZXJhdG9yEhYKBlZhbHVlcxgJIAMoCV'
'IGVmFsdWVzEjMKCVN0YXJ0RGF0ZRgKIAEoCzIVLmFwaS5TdHJpbmdEYXRlT2JqZWN0UglTdGFy'
'dERhdGUSLwoHRW5kRGF0ZRgLIAEoCzIVLmFwaS5TdHJpbmdEYXRlT2JqZWN0UgdFbmREYXRlEj'
'gKC0V4cHJlc3Npb25zGAwgAygLMhYuYXBpLkNIUXVlcnlFeHByZXNzaW9uUgtFeHByZXNzaW9u'
'cxIeCgpJc0NvbXB1dGVkGA0gASgIUgpJc0NvbXB1dGVkEiAKAk9yGA4gASgLMhAuYXBpLkNIRG'
'ltZW5zaW9uUgJPcjotkkEqCijSAQROYW1l0gEFTGV2ZWzSAQhEYXRhVHlwZdIBC0NvbnRlbnRU'
'eXBl');
'CgtDSERpbWVuc2lvbhIbCgROYW1lGAEgASgJQgf6QgRyAhABUgROYW1lEiAKC0dyYW51bGFyaX'
'R5GAIgASgJUgtHcmFudWxhcml0eRIdCgVMZXZlbBgDIAEoCUIH+kIEcgIQAVIFTGV2ZWwSLgoI'
'RGF0YVR5cGUYBCABKAlCEpJBCEoGImRhdGUi+kIEcgIQAVIIRGF0YVR5cGUSOAoLQ29udGVudF'
'R5cGUYBSABKAlCFpJBDEoKIkRhdGVUaW1lIvpCBHICEAFSC0NvbnRlbnRUeXBlEh4KCkVudW1W'
'YWx1ZXMYBiABKAlSCkVudW1WYWx1ZXMSLQoGUGVyaW9kGAcgASgJQhWSQRIyEEEgcGVyaW9kIG'
'9mIHRpbWVSBlBlcmlvZBK4AQoIT3BlcmF0b3IYCCABKAlCmwGSQZcBMpQBQWxsb3dlZCB2YWx1'
'ZXMgOiAiIiwgIkVRVUFMIiwgIkRJRkYiLCAiU1RBUlRfQlkiLCAiTk9UX1NUQVJUX0JZIiwgIk'
'ZJTklTSF9CWSIsICJOT1RfRklOSVNIX0JZIiwgIkNPTlRBSU5TIiwgIk5PVF9DT05UQUlOUyIs'
'ICJJTl9MSVNUIiwgIk5PVF9JTl9MSVNUIlIIT3BlcmF0b3ISFgoGVmFsdWVzGAkgAygJUgZWYW'
'x1ZXMSMwoJU3RhcnREYXRlGAogASgLMhUuYXBpLlN0cmluZ0RhdGVPYmplY3RSCVN0YXJ0RGF0'
'ZRIvCgdFbmREYXRlGAsgASgLMhUuYXBpLlN0cmluZ0RhdGVPYmplY3RSB0VuZERhdGUSOAoLRX'
'hwcmVzc2lvbnMYDCADKAsyFi5hcGkuQ0hRdWVyeUV4cHJlc3Npb25SC0V4cHJlc3Npb25zEh4K'
'CklzQ29tcHV0ZWQYDSABKAhSCklzQ29tcHV0ZWQSIAoCT3IYDiABKAsyEC5hcGkuQ0hEaW1lbn'
'Npb25SAk9yOi2SQSoKKNIBBE5hbWXSAQVMZXZlbNIBCERhdGFUeXBl0gELQ29udGVudFR5cGU=');
@$core.Deprecated('Use cHQueryExpressionDescriptor instead')
const CHQueryExpression$json = {
@@ -146,13 +144,13 @@ const CHMetric$json = {
/// Descriptor for `CHMetric`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List cHMetricDescriptor = $convert.base64Decode(
'CghDSE1ldHJpYxIcCgROYW1lGAEgASgJQgi6gQEEcgIQAVIETmFtZRIeCgVMZXZlbBgDIAEoCU'
'IIuoEBBHICEAFSBUxldmVsEjAKCERhdGFUeXBlGAQgASgJQhSSQQlKByJjb3VudCK6gQEEcgIQ'
'AVIIRGF0YVR5cGUSNAoLQ29udGVudFR5cGUYBSABKAlCEpJBB0oFImludCK6gQEEcgIQAVILQ2'
'9udGVudFR5cGUSHgoKRW51bVZhbHVlcxgGIAEoCVIKRW51bVZhbHVlcxI4CgtFeHByZXNzaW9u'
'cxgMIAMoCzIWLmFwaS5DSFF1ZXJ5RXhwcmVzc2lvblILRXhwcmVzc2lvbnMSHgoKSXNDb21wdX'
'RlZBgNIAEoCFIKSXNDb21wdXRlZDotkkEqCijSAQROYW1l0gEFTGV2ZWzSAQhEYXRhVHlwZdIB'
'C0NvbnRlbnRUeXBl');
'CghDSE1ldHJpYxIbCgROYW1lGAEgASgJQgf6QgRyAhABUgROYW1lEh0KBUxldmVsGAMgASgJQg'
'f6QgRyAhABUgVMZXZlbBIvCghEYXRhVHlwZRgEIAEoCUITkkEJSgciY291bnQi+kIEcgIQAVII'
'RGF0YVR5cGUSMwoLQ29udGVudFR5cGUYBSABKAlCEZJBB0oFImludCL6QgRyAhABUgtDb250ZW'
'50VHlwZRIeCgpFbnVtVmFsdWVzGAYgASgJUgpFbnVtVmFsdWVzEjgKC0V4cHJlc3Npb25zGAwg'
'AygLMhYuYXBpLkNIUXVlcnlFeHByZXNzaW9uUgtFeHByZXNzaW9ucxIeCgpJc0NvbXB1dGVkGA'
'0gASgIUgpJc0NvbXB1dGVkOi2SQSoKKNIBBE5hbWXSAQVMZXZlbNIBCERhdGFUeXBl0gELQ29u'
'dGVudFR5cGU=');
@$core.Deprecated('Use cHFilterDescriptor instead')
const CHFilter$json = {
@@ -201,24 +199,24 @@ const GetKPIDataQuery$json = {
/// Descriptor for `GetKPIDataQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getKPIDataQueryDescriptor = $convert.base64Decode(
'Cg9HZXRLUElEYXRhUXVlcnkSOgoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYW'
'RlckIJuoEBBYoBAhABUgZIZWFkZXISOQoJQ2hhcnRUeXBlGAIgASgOMhAuYXBpLkNIQ2hhcnRU'
'eXBlQgm6gQEFggECEAFSCUNoYXJ0VHlwZRI5CglRdWVyeVR5cGUYAyABKA4yEC5hcGkuQ0hRdW'
'VyeVR5cGVCCbqBAQWCAQIQAVIJUXVlcnlUeXBlEigKClF1ZXJ5QmxvY2sYBCABKAlCCLqBAQRy'
'AhABUgpRdWVyeUJsb2NrEjAKCkRpbWVuc2lvbnMYBSADKAsyEC5hcGkuQ0hEaW1lbnNpb25SCk'
'RpbWVuc2lvbnMSJwoHTWV0cmljcxgGIAMoCzINLmFwaS5DSE1ldHJpY1IHTWV0cmljcxIlCgZG'
'aWx0ZXIYByABKAsyDS5hcGkuQ0hGaWx0ZXJSBkZpbHRlchKxAQoOVGFyZ2V0VGltZVpvbmUYCC'
'ABKAlCiAGSQXoyaFRhcmdldCB1c2VyIHRpbWUgem9uZSAgPGEgaHJlZj0naHR0cHM6Ly9lbi53'
'aWtpcGVkaWEub3JnL3dpa2kvTGlzdF9vZl90el9kYXRhYmFzZV90aW1lX3pvbmVzJz5mb3JtYX'
'Q8L2E+Sg4iRXVyb3BlL1BhcmlzIrqBAQdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRJ6CgxSZXN1'
'bHRGb3JtYXQYCSABKA4yGC5hcGkuS3BpRGF0YVJlc3VsdEZvcm1hdEI8kkE5MhdSZXN1bHQgZm'
'9ybWF0IHNlbGVjdGlvbkoeIktQSURBVEFfUkVTVUxUX0ZPUk1BVF9TRVJJRVMiUgxSZXN1bHRG'
'b3JtYXQS1wEKDEtwaUdyb3VwTmFtZRgKIAEoCUKyAZJBSjI3TmFtZSBvZiB0aGUgYW5hbHlzaX'
'MgY3JpdGVyaW9uIHRvIGdldCB0aGUga3BpIGRhdGEgZnJvbUoPImV4ZWN1dGlvbmZsb3ciuoEB'
'YXJfUg1leGVjdXRpb25mbG93UgVzdG9ja1IIbW92ZW1lbnRSDGhhbmRsaW5ndW5pdFIFYWN0b3'
'JSBGl0ZW1SDnN0b2NrX2V4dGVuZGVkUgVjbGFpbVILYXBwb2ludG1lbnRSDEtwaUdyb3VwTmFt'
'ZTpMkkFJCkfSAQZIZWFkZXLSAQlDaGFydFR5cGXSAQlRdWVyeVR5cGXSAQpRdWVyeUJsb2Nr0g'
'EHTWV0cmljc9IBDEtwaUdyb3VwTmFtZQ==');
'Cg9HZXRLUElEYXRhUXVlcnkSOQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYW'
'RlckII+kIFigECEAFSBkhlYWRlchI4CglDaGFydFR5cGUYAiABKA4yEC5hcGkuQ0hDaGFydFR5'
'cGVCCPpCBYIBAhABUglDaGFydFR5cGUSOAoJUXVlcnlUeXBlGAMgASgOMhAuYXBpLkNIUXVlcn'
'lUeXBlQgj6QgWCAQIQAVIJUXVlcnlUeXBlEicKClF1ZXJ5QmxvY2sYBCABKAlCB/pCBHICEAFS'
'ClF1ZXJ5QmxvY2sSMAoKRGltZW5zaW9ucxgFIAMoCzIQLmFwaS5DSERpbWVuc2lvblIKRGltZW'
'5zaW9ucxInCgdNZXRyaWNzGAYgAygLMg0uYXBpLkNITWV0cmljUgdNZXRyaWNzEiUKBkZpbHRl'
'chgHIAEoCzINLmFwaS5DSEZpbHRlclIGRmlsdGVyErABCg5UYXJnZXRUaW1lWm9uZRgIIAEoCU'
'KHAZJBejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVmPSdodHRwczovL2VuLndpa2lw'
'ZWRpYS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT'
'5KDiJFdXJvcGUvUGFyaXMi+kIHcgUQAeABAVIOVGFyZ2V0VGltZVpvbmUSegoMUmVzdWx0Rm9y'
'bWF0GAkgASgOMhguYXBpLktwaURhdGFSZXN1bHRGb3JtYXRCPJJBOTIXUmVzdWx0IGZvcm1hdC'
'BzZWxlY3Rpb25KHiJLUElEQVRBX1JFU1VMVF9GT1JNQVRfU0VSSUVTIlIMUmVzdWx0Rm9ybWF0'
'EskBCgxLcGlHcm91cE5hbWUYCiABKAlCpAGSQUoyN05hbWUgb2YgdGhlIGFuYWx5c2lzIGNyaX'
'RlcmlvbiB0byBnZXQgdGhlIGtwaSBkYXRhIGZyb21KDyJleGVjdXRpb25mbG93IvpCVHJSUg1l'
'eGVjdXRpb25mbG93UgVzdG9ja1IIbW92ZW1lbnRSDGhhbmRsaW5ndW5pdFIFYWN0b3JSBGl0ZW'
'1SDnN0b2NrX2V4dGVuZGVkUgVjbGFpbVIMS3BpR3JvdXBOYW1lOkySQUkKR9IBBkhlYWRlctIB'
'CUNoYXJ0VHlwZdIBCVF1ZXJ5VHlwZdIBClF1ZXJ5QmxvY2vSAQdNZXRyaWNz0gEMS3BpR3JvdX'
'BOYW1l');
@$core.Deprecated('Use getKPIDataForUserQueryDescriptor instead')
const GetKPIDataForUserQuery$json = {
@@ -243,28 +241,28 @@ const GetKPIDataForUserQuery$json = {
/// Descriptor for `GetKPIDataForUserQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getKPIDataForUserQueryDescriptor = $convert.base64Decode(
'ChZHZXRLUElEYXRhRm9yVXNlclF1ZXJ5EiYKCVByb2plY3RJRBgBIAEoCUIIuoEBBHICEAFSCV'
'Byb2plY3RJRBI5CglDaGFydFR5cGUYAiABKA4yEC5hcGkuQ0hDaGFydFR5cGVCCbqBAQWCAQIQ'
'AVIJQ2hhcnRUeXBlEjkKCVF1ZXJ5VHlwZRgDIAEoDjIQLmFwaS5DSFF1ZXJ5VHlwZUIJuoEBBY'
'IBAhABUglRdWVyeVR5cGUSKAoKUXVlcnlCbG9jaxgEIAEoCUIIuoEBBHICEAFSClF1ZXJ5Qmxv'
'Y2sSMAoKRGltZW5zaW9ucxgFIAMoCzIQLmFwaS5DSERpbWVuc2lvblIKRGltZW5zaW9ucxInCg'
'dNZXRyaWNzGAYgAygLMg0uYXBpLkNITWV0cmljUgdNZXRyaWNzEiUKBkZpbHRlchgHIAEoCzIN'
'LmFwaS5DSEZpbHRlclIGRmlsdGVyErEBCg5UYXJnZXRUaW1lWm9uZRgIIAEoCUKIAZJBejJoVG'
'FyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcv'
'd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT5KDiJFdXJvcG'
'UvUGFyaXMiuoEBB3IFEAHgAQFSDlRhcmdldFRpbWVab25lEnoKDFJlc3VsdEZvcm1hdBgJIAEo'
'DjIYLmFwaS5LcGlEYXRhUmVzdWx0Rm9ybWF0QjySQTkyF1Jlc3VsdCBmb3JtYXQgc2VsZWN0aW'
'9uSh4iS1BJREFUQV9SRVNVTFRfRk9STUFUX1NFUklFUyJSDFJlc3VsdEZvcm1hdBLXAQoMS3Bp'
'R3JvdXBOYW1lGAogASgJQrIBkkFKMjdOYW1lIG9mIHRoZSBhbmFseXNpcyBjcml0ZXJpb24gdG'
'8gZ2V0IHRoZSBrcGkgZGF0YSBmcm9tSg8iZXhlY3V0aW9uZmxvdyK6gQFhcl9SDWV4ZWN1dGlv'
'bmZsb3dSBXN0b2NrUghtb3ZlbWVudFIMaGFuZGxpbmd1bml0UgVhY3RvclIEaXRlbVIOc3RvY2'
'tfZXh0ZW5kZWRSBWNsYWltUgthcHBvaW50bWVudFIMS3BpR3JvdXBOYW1lEiAKBlVzZXJJRBgL'
'IAEoCUIIuoEBBHICEAFSBlVzZXJJRBJ5CgtQYWdpbmdTdGF0ZRgMIAEoCUJXkkFUMkxTdGFydC'
'Bwb3NpdGlvbiBvZiB0aGUgcXVlcnkgcmVzdWx0IHBhZ2UuIFBhZ2luYXRpb24gZGlzYWJsZWQg'
'aWYgZXF1YWwgdG8gLTEuSgQiNTAiUgtQYWdpbmdTdGF0ZRJACgVMaW1pdBgNIAEoCUIqkkEnMh'
'9MZW5ndGggb2YgdGhlIHF1ZXJ5IHJlc3VsdCBwYWdlSgQiNTAiUgVMaW1pdDpYkkFVClPSAQlQ'
'cm9qZWN0SUTSAQlDaGFydFR5cGXSAQlRdWVyeVR5cGXSAQpRdWVyeUJsb2Nr0gEHTWV0cmljc9'
'IBDEtwaUdyb3VwTmFtZdIBBlVzZXJJRA==');
'ChZHZXRLUElEYXRhRm9yVXNlclF1ZXJ5EiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAVIJUH'
'JvamVjdElEEjgKCUNoYXJ0VHlwZRgCIAEoDjIQLmFwaS5DSENoYXJ0VHlwZUII+kIFggECEAFS'
'CUNoYXJ0VHlwZRI4CglRdWVyeVR5cGUYAyABKA4yEC5hcGkuQ0hRdWVyeVR5cGVCCPpCBYIBAh'
'ABUglRdWVyeVR5cGUSJwoKUXVlcnlCbG9jaxgEIAEoCUIH+kIEcgIQAVIKUXVlcnlCbG9jaxIw'
'CgpEaW1lbnNpb25zGAUgAygLMhAuYXBpLkNIRGltZW5zaW9uUgpEaW1lbnNpb25zEicKB01ldH'
'JpY3MYBiADKAsyDS5hcGkuQ0hNZXRyaWNSB01ldHJpY3MSJQoGRmlsdGVyGAcgASgLMg0uYXBp'
'LkNIRmlsdGVyUgZGaWx0ZXISsAEKDlRhcmdldFRpbWVab25lGAggASgJQocBkkF6MmhUYXJnZX'
'QgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtp'
'L0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm9wZS9QYX'
'JpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRJ6CgxSZXN1bHRGb3JtYXQYCSABKA4yGC5h'
'cGkuS3BpRGF0YVJlc3VsdEZvcm1hdEI8kkE5MhdSZXN1bHQgZm9ybWF0IHNlbGVjdGlvbkoeIk'
'tQSURBVEFfUkVTVUxUX0ZPUk1BVF9TRVJJRVMiUgxSZXN1bHRGb3JtYXQSyQEKDEtwaUdyb3Vw'
'TmFtZRgKIAEoCUKkAZJBSjI3TmFtZSBvZiB0aGUgYW5hbHlzaXMgY3JpdGVyaW9uIHRvIGdldC'
'B0aGUga3BpIGRhdGEgZnJvbUoPImV4ZWN1dGlvbmZsb3ci+kJUclJSDWV4ZWN1dGlvbmZsb3dS'
'BXN0b2NrUghtb3ZlbWVudFIMaGFuZGxpbmd1bml0UgVhY3RvclIEaXRlbVIOc3RvY2tfZXh0ZW'
'5kZWRSBWNsYWltUgxLcGlHcm91cE5hbWUSHwoGVXNlcklEGAsgASgJQgf6QgRyAhABUgZVc2Vy'
'SUQSeQoLUGFnaW5nU3RhdGUYDCABKAlCV5JBVDJMU3RhcnQgcG9zaXRpb24gb2YgdGhlIHF1ZX'
'J5IHJlc3VsdCBwYWdlLiBQYWdpbmF0aW9uIGRpc2FibGVkIGlmIGVxdWFsIHRvIC0xLkoEIjUw'
'IlILUGFnaW5nU3RhdGUSQAoFTGltaXQYDSABKAlCKpJBJzIfTGVuZ3RoIG9mIHRoZSBxdWVyeS'
'ByZXN1bHQgcGFnZUoEIjUwIlIFTGltaXQ6WJJBVQpT0gEJUHJvamVjdElE0gEJQ2hhcnRUeXBl'
'0gEJUXVlcnlUeXBl0gEKUXVlcnlCbG9ja9IBB01ldHJpY3PSAQxLcGlHcm91cE5hbWXSAQZVc2'
'VySUQ=');
@$core.Deprecated('Use getKPIDataResultDescriptor instead')
const GetKPIDataResult$json = {
@@ -317,22 +315,22 @@ const FindKPIDataQuery$json = {
/// Descriptor for `FindKPIDataQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List findKPIDataQueryDescriptor = $convert.base64Decode(
'ChBGaW5kS1BJRGF0YVF1ZXJ5EjoKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3RIZW'
'FkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjkKCVF1ZXJ5VHlwZRgCIAEoDjIQLmFwaS5DSFF1ZXJ5'
'VHlwZUIJuoEBBYIBAhABUglRdWVyeVR5cGUSKAoKUXVlcnlCbG9jaxgDIAEoCUIIuoEBBHICEA'
'FSClF1ZXJ5QmxvY2sSRgoSRW50aXR5QmxvY2tGaWx0ZXJzGAQgAygLMhYuYXBpLkVudGl0eUJs'
'b2NrRmlsdGVyUhJFbnRpdHlCbG9ja0ZpbHRlcnMSJQoGRmlsdGVyGAUgASgLMg0uYXBpLkNIRm'
'lsdGVyUgZGaWx0ZXISMAoKRGltZW5zaW9ucxgGIAMoCzIQLmFwaS5DSERpbWVuc2lvblIKRGlt'
'ZW5zaW9ucxInCgdNZXRyaWNzGAcgAygLMg0uYXBpLkNITWV0cmljUgdNZXRyaWNzErEBCg5UYX'
'JnZXRUaW1lWm9uZRgIIAEoCUKIAZJBejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVm'
'PSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbW'
'Vfem9uZXMnPmZvcm1hdDwvYT5KDiJFdXJvcGUvUGFyaXMiuoEBB3IFEAHgAQFSDlRhcmdldFRp'
'bWVab25lEtkBCgxLcGlHcm91cE5hbWUYCSABKAlCtAGSQUwyOE5hbWUgb2YgdGhlIGFuYWx5c2'
'lzIGNyaXRlcmlvbiB0byBmaW5kIHRoZSBrcGkgZGF0YSBmcm9tShAic3RvY2tfZXh0ZW5kZWQi'
'uoEBYXJfUg1leGVjdXRpb25mbG93UgVzdG9ja1IIbW92ZW1lbnRSDGhhbmRsaW5ndW5pdFIFYW'
'N0b3JSBGl0ZW1SDnN0b2NrX2V4dGVuZGVkUgVjbGFpbVILYXBwb2ludG1lbnRSDEtwaUdyb3Vw'
'TmFtZTpMkkFJCkfSAQZIZWFkZXLSAQlDaGFydFR5cGXSAQlRdWVyeVR5cGXSAQpRdWVyeUJsb2'
'Nr0gEHTWV0cmljc9IBDEtwaUdyb3VwTmFtZQ==');
'ChBGaW5kS1BJRGF0YVF1ZXJ5EjkKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3RIZW'
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISOAoJUXVlcnlUeXBlGAIgASgOMhAuYXBpLkNIUXVlcnlU'
'eXBlQgj6QgWCAQIQAVIJUXVlcnlUeXBlEicKClF1ZXJ5QmxvY2sYAyABKAlCB/pCBHICEAFSCl'
'F1ZXJ5QmxvY2sSRgoSRW50aXR5QmxvY2tGaWx0ZXJzGAQgAygLMhYuYXBpLkVudGl0eUJsb2Nr'
'RmlsdGVyUhJFbnRpdHlCbG9ja0ZpbHRlcnMSJQoGRmlsdGVyGAUgASgLMg0uYXBpLkNIRmlsdG'
'VyUgZGaWx0ZXISMAoKRGltZW5zaW9ucxgGIAMoCzIQLmFwaS5DSERpbWVuc2lvblIKRGltZW5z'
'aW9ucxInCgdNZXRyaWNzGAcgAygLMg0uYXBpLkNITWV0cmljUgdNZXRyaWNzErABCg5UYXJnZX'
'RUaW1lWm9uZRgIIAEoCUKHAZJBejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVmPSdo'
'dHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem'
'9uZXMnPmZvcm1hdDwvYT5KDiJFdXJvcGUvUGFyaXMi+kIHcgUQAeABAVIOVGFyZ2V0VGltZVpv'
'bmUSywEKDEtwaUdyb3VwTmFtZRgJIAEoCUKmAZJBTDI4TmFtZSBvZiB0aGUgYW5hbHlzaXMgY3'
'JpdGVyaW9uIHRvIGZpbmQgdGhlIGtwaSBkYXRhIGZyb21KECJzdG9ja19leHRlbmRlZCL6QlRy'
'UlINZXhlY3V0aW9uZmxvd1IFc3RvY2tSCG1vdmVtZW50UgxoYW5kbGluZ3VuaXRSBWFjdG9yUg'
'RpdGVtUg5zdG9ja19leHRlbmRlZFIFY2xhaW1SDEtwaUdyb3VwTmFtZTpMkkFJCkfSAQZIZWFk'
'ZXLSAQlDaGFydFR5cGXSAQlRdWVyeVR5cGXSAQpRdWVyeUJsb2Nr0gEHTWV0cmljc9IBDEtwaU'
'dyb3VwTmFtZQ==');
@$core.Deprecated('Use findKPIDataResultDescriptor instead')
const FindKPIDataResult$json = {
@@ -403,42 +401,41 @@ const ExtractKPIQuery_ColumnFormatsEntry$json = {
/// Descriptor for `ExtractKPIQuery`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List extractKPIQueryDescriptor = $convert.base64Decode(
'Cg9FeHRyYWN0S1BJUXVlcnkSOgoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYW'
'RlckIJuoEBBYoBAhABUgZIZWFkZXISIAoGVXNlcklkGAIgASgJQgi6gQEEcgIQAVIGVXNlcklk'
'EjkKCVF1ZXJ5VHlwZRgDIAEoDjIQLmFwaS5DSFF1ZXJ5VHlwZUIJuoEBBYIBAhABUglRdWVyeV'
'R5cGUSKAoKUXVlcnlCbG9jaxgEIAEoCUIIuoEBBHICEAFSClF1ZXJ5QmxvY2sSRgoSRW50aXR5'
'QmxvY2tGaWx0ZXJzGAUgAygLMhYuYXBpLkVudGl0eUJsb2NrRmlsdGVyUhJFbnRpdHlCbG9ja0'
'ZpbHRlcnMSJQoGRmlsdGVyGAYgASgLMg0uYXBpLkNIRmlsdGVyUgZGaWx0ZXISMAoKRGltZW5z'
'aW9ucxgHIAMoCzIQLmFwaS5DSERpbWVuc2lvblIKRGltZW5zaW9ucxInCgdNZXRyaWNzGAggAy'
'gLMg0uYXBpLkNITWV0cmljUgdNZXRyaWNzErEBCg5UYXJnZXRUaW1lWm9uZRgJIAEoCUKIAZJB'
'ejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS'
'5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT5KDiJF'
'dXJvcGUvUGFyaXMiuoEBB3IFEAHgAQFSDlRhcmdldFRpbWVab25lEtkBCgxLcGlHcm91cE5hbW'
'UYCiABKAlCtAGSQUwyOE5hbWUgb2YgdGhlIGFuYWx5c2lzIGNyaXRlcmlvbiB0byBmaW5kIHRo'
'ZSBrcGkgZGF0YSBmcm9tShAic3RvY2tfZXh0ZW5kZWQiuoEBYXJfUg1leGVjdXRpb25mbG93Ug'
'VzdG9ja1IIbW92ZW1lbnRSDGhhbmRsaW5ndW5pdFIFYWN0b3JSBGl0ZW1SDnN0b2NrX2V4dGVu'
'ZGVkUgVjbGFpbVILYXBwb2ludG1lbnRSDEtwaUdyb3VwTmFtZRIsCgxUYXJnZXREb21haW4YCy'
'ABKAlCCLqBAQRyAhABUgxUYXJnZXREb21haW4SKAoKVGFyZ2V0VHlwZRgMIAEoCUIIuoEBBHIC'
'EAFSClRhcmdldFR5cGUSFgoGRmllbGRzGA0gAygJUgZGaWVsZHMSLgoNTGlzdFNlcGFyYXRvch'
'gOIAEoCUIIuoEBBHICEAFSDUxpc3RTZXBhcmF0b3ISNAoQRGVjaW1hbFNlcGFyYXRvchgPIAEo'
'CUIIuoEBBHICEAFSEERlY2ltYWxTZXBhcmF0b3ISIAoLQ29sdW1uTmFtZXMYECADKAlSC0NvbH'
'Vtbk5hbWVzEmUKFUNvbHVtblRyYW5zbGF0aW9uTWFwcxgRIAMoCzIvLmFwaS5FeHRyYWN0S1BJ'
'UXVlcnkuQ29sdW1uVHJhbnNsYXRpb25NYXBzRW50cnlSFUNvbHVtblRyYW5zbGF0aW9uTWFwcx'
'I+ChpGaWVsZElkeExWRGV0YWlsZWRRdWFudGl0eRgSIAMoBVIaRmllbGRJZHhMVkRldGFpbGVk'
'UXVhbnRpdHkSTQoNQ29sdW1uRm9ybWF0cxgTIAMoCzInLmFwaS5FeHRyYWN0S1BJUXVlcnkuQ2'
'9sdW1uRm9ybWF0c0VudHJ5Ug1Db2x1bW5Gb3JtYXRzEocBCgpEYXRlRm9ybWF0GBQgASgJQmeS'
'QWQyWUxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IGRhdGVzICA8YSBocmVmPSdodHRwczovL2VuLn'
'dpa2lwZWRpYS5vcmcvd2lraS9JU09fNjM5Jz5mb3JtYXQ8L2E+SgciZW4tVVMiUgpEYXRlRm9y'
'bWF0EowBCgxOdW1iZXJGb3JtYXQYFSABKAlCaJJBZTJaTGFuZ3VhZ2UgY29kZSB0byBmb3JtYX'
'QgbnVtYmVycyA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fNjM5'
'Jz5mb3JtYXQ8L2E+SgciZW4tVVMiUgxOdW1iZXJGb3JtYXQSTAoKVGltZUZvcm1hdBgWIAEoDj'
'IPLmFwaS5UaW1lRm9ybWF0QhuSQRgyFkhvdXIgY2xvY2sgdGltZSBmb3JtYXRSClRpbWVGb3Jt'
'YXQaXQoaQ29sdW1uVHJhbnNsYXRpb25NYXBzRW50cnkSEAoDa2V5GAEgASgJUgNrZXkSKQoFdm'
'FsdWUYAiABKAsyEy5hcGkuVHJhbnNsYXRpb25NYXBSBXZhbHVlOgI4ARpaChJDb2x1bW5Gb3Jt'
'YXRzRW50cnkSEAoDa2V5GAEgASgFUgNrZXkSLgoFdmFsdWUYAiABKAsyGC5hcGkuRXh0cmFjdE'
'NvbHVtbkZvcm1hdFIFdmFsdWU6AjgBOmySQWkKZ9IBBkhlYWRlctIBBlVzZXJJZNIBBkZpZWxk'
'c9IBDUxpc3RTZXBhcmF0b3LSARBEZWNpbWFsU2VwYXJhdG9y0gEKQ29sdW1uTmFtZdIBDFRhcm'
'dldERvbWFpbtIBClRhcmdldFR5cGU=');
'Cg9FeHRyYWN0S1BJUXVlcnkSOQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYW'
'RlckII+kIFigECEAFSBkhlYWRlchIfCgZVc2VySWQYAiABKAlCB/pCBHICEAFSBlVzZXJJZBI4'
'CglRdWVyeVR5cGUYAyABKA4yEC5hcGkuQ0hRdWVyeVR5cGVCCPpCBYIBAhABUglRdWVyeVR5cG'
'USJwoKUXVlcnlCbG9jaxgEIAEoCUIH+kIEcgIQAVIKUXVlcnlCbG9jaxJGChJFbnRpdHlCbG9j'
'a0ZpbHRlcnMYBSADKAsyFi5hcGkuRW50aXR5QmxvY2tGaWx0ZXJSEkVudGl0eUJsb2NrRmlsdG'
'VycxIlCgZGaWx0ZXIYBiABKAsyDS5hcGkuQ0hGaWx0ZXJSBkZpbHRlchIwCgpEaW1lbnNpb25z'
'GAcgAygLMhAuYXBpLkNIRGltZW5zaW9uUgpEaW1lbnNpb25zEicKB01ldHJpY3MYCCADKAsyDS'
'5hcGkuQ0hNZXRyaWNSB01ldHJpY3MSsAEKDlRhcmdldFRpbWVab25lGAkgASgJQocBkkF6MmhU'
'YXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy'
'93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm9w'
'ZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRLLAQoMS3BpR3JvdXBOYW1lGAogAS'
'gJQqYBkkFMMjhOYW1lIG9mIHRoZSBhbmFseXNpcyBjcml0ZXJpb24gdG8gZmluZCB0aGUga3Bp'
'IGRhdGEgZnJvbUoQInN0b2NrX2V4dGVuZGVkIvpCVHJSUg1leGVjdXRpb25mbG93UgVzdG9ja1'
'IIbW92ZW1lbnRSDGhhbmRsaW5ndW5pdFIFYWN0b3JSBGl0ZW1SDnN0b2NrX2V4dGVuZGVkUgVj'
'bGFpbVIMS3BpR3JvdXBOYW1lEisKDFRhcmdldERvbWFpbhgLIAEoCUIH+kIEcgIQAVIMVGFyZ2'
'V0RG9tYWluEicKClRhcmdldFR5cGUYDCABKAlCB/pCBHICEAFSClRhcmdldFR5cGUSFgoGRmll'
'bGRzGA0gAygJUgZGaWVsZHMSLQoNTGlzdFNlcGFyYXRvchgOIAEoCUIH+kIEcgIQAVINTGlzdF'
'NlcGFyYXRvchIzChBEZWNpbWFsU2VwYXJhdG9yGA8gASgJQgf6QgRyAhABUhBEZWNpbWFsU2Vw'
'YXJhdG9yEiAKC0NvbHVtbk5hbWVzGBAgAygJUgtDb2x1bW5OYW1lcxJlChVDb2x1bW5UcmFuc2'
'xhdGlvbk1hcHMYESADKAsyLy5hcGkuRXh0cmFjdEtQSVF1ZXJ5LkNvbHVtblRyYW5zbGF0aW9u'
'TWFwc0VudHJ5UhVDb2x1bW5UcmFuc2xhdGlvbk1hcHMSPgoaRmllbGRJZHhMVkRldGFpbGVkUX'
'VhbnRpdHkYEiADKAVSGkZpZWxkSWR4TFZEZXRhaWxlZFF1YW50aXR5Ek0KDUNvbHVtbkZvcm1h'
'dHMYEyADKAsyJy5hcGkuRXh0cmFjdEtQSVF1ZXJ5LkNvbHVtbkZvcm1hdHNFbnRyeVINQ29sdW'
'1uRm9ybWF0cxKHAQoKRGF0ZUZvcm1hdBgUIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZv'
'cm1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXz'
'YzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GBUg'
'ASgJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cH'
'M6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIM'
'TnVtYmVyRm9ybWF0EkwKClRpbWVGb3JtYXQYFiABKA4yDy5hcGkuVGltZUZvcm1hdEIbkkEYMh'
'ZIb3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpUaW1lRm9ybWF0Gl0KGkNvbHVtblRyYW5zbGF0aW9u'
'TWFwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EikKBXZhbHVlGAIgASgLMhMuYXBpLlRyYW5zbG'
'F0aW9uTWFwUgV2YWx1ZToCOAEaWgoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVID'
'a2V5Ei4KBXZhbHVlGAIgASgLMhguYXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4AT'
'pskkFpCmfSAQZIZWFkZXLSAQZVc2VySWTSAQZGaWVsZHPSAQ1MaXN0U2VwYXJhdG9y0gEQRGVj'
'aW1hbFNlcGFyYXRvctIBCkNvbHVtbk5hbWXSAQxUYXJnZXREb21haW7SAQpUYXJnZXRUeXBl');
@$core.Deprecated('Use extractKPIResultDescriptor instead')
const ExtractKPIResult$json = {

View File

@@ -1,14 +1,13 @@
// This is a generated file - do not edit.
//
// Generated from clickhouseMetrics.proto.
// Generated code. Do not modify.
// source: clickhouseMetrics.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import
import 'dart:core' as $core;
@@ -28,22 +27,36 @@ class Metrics extends $pb.GeneratedMessage {
$core.String? userMail,
$core.String? refID,
}) {
final result = create();
if (currentTime != null) result.currentTime = currentTime;
if (organisationID != null) result.organisationID = organisationID;
if (projectID != null) result.projectID = projectID;
if (entityService != null) result.entityService = entityService;
if (method != null) result.method = method;
if (userID != null) result.userID = userID;
if (userMail != null) result.userMail = userMail;
if (refID != null) result.refID = refID;
return result;
final $result = create();
if (currentTime != null) {
$result.currentTime = currentTime;
}
if (organisationID != null) {
$result.organisationID = organisationID;
}
if (projectID != null) {
$result.projectID = projectID;
}
if (entityService != null) {
$result.entityService = entityService;
}
if (method != null) {
$result.method = method;
}
if (userID != null) {
$result.userID = userID;
}
if (userMail != null) {
$result.userMail = userMail;
}
if (refID != null) {
$result.refID = refID;
}
return $result;
}
Metrics._();
factory Metrics.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory Metrics.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
Metrics._() : super();
factory Metrics.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
factory Metrics.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Metrics', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aInt64(1, _omitFieldNames ? '' : 'CurrentTime', protoName: 'CurrentTime')
@@ -57,17 +70,21 @@ class Metrics extends $pb.GeneratedMessage {
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
Metrics clone() => Metrics()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
@$core.Deprecated(
'Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
Metrics copyWith(void Function(Metrics) updates) => super.copyWith((message) => updates(message as Metrics)) as Metrics;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static Metrics create() => Metrics._();
@$core.override
Metrics createEmptyInstance() => create();
static $pb.PbList<Metrics> createRepeated() => $pb.PbList<Metrics>();
@$core.pragma('dart2js:noInline')
@@ -77,7 +94,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(1)
$fixnum.Int64 get currentTime => $_getI64(0);
@$pb.TagNumber(1)
set currentTime($fixnum.Int64 value) => $_setInt64(0, value);
set currentTime($fixnum.Int64 v) { $_setInt64(0, v); }
@$pb.TagNumber(1)
$core.bool hasCurrentTime() => $_has(0);
@$pb.TagNumber(1)
@@ -86,7 +103,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$core.String get organisationID => $_getSZ(1);
@$pb.TagNumber(2)
set organisationID($core.String value) => $_setString(1, value);
set organisationID($core.String v) { $_setString(1, v); }
@$pb.TagNumber(2)
$core.bool hasOrganisationID() => $_has(1);
@$pb.TagNumber(2)
@@ -95,7 +112,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(3)
$core.String get projectID => $_getSZ(2);
@$pb.TagNumber(3)
set projectID($core.String value) => $_setString(2, value);
set projectID($core.String v) { $_setString(2, v); }
@$pb.TagNumber(3)
$core.bool hasProjectID() => $_has(2);
@$pb.TagNumber(3)
@@ -104,7 +121,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$core.String get entityService => $_getSZ(3);
@$pb.TagNumber(4)
set entityService($core.String value) => $_setString(3, value);
set entityService($core.String v) { $_setString(3, v); }
@$pb.TagNumber(4)
$core.bool hasEntityService() => $_has(3);
@$pb.TagNumber(4)
@@ -113,7 +130,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(5)
$core.String get method => $_getSZ(4);
@$pb.TagNumber(5)
set method($core.String value) => $_setString(4, value);
set method($core.String v) { $_setString(4, v); }
@$pb.TagNumber(5)
$core.bool hasMethod() => $_has(4);
@$pb.TagNumber(5)
@@ -122,7 +139,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(6)
$core.String get userID => $_getSZ(5);
@$pb.TagNumber(6)
set userID($core.String value) => $_setString(5, value);
set userID($core.String v) { $_setString(5, v); }
@$pb.TagNumber(6)
$core.bool hasUserID() => $_has(5);
@$pb.TagNumber(6)
@@ -131,7 +148,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(7)
$core.String get userMail => $_getSZ(6);
@$pb.TagNumber(7)
set userMail($core.String value) => $_setString(6, value);
set userMail($core.String v) { $_setString(6, v); }
@$pb.TagNumber(7)
$core.bool hasUserMail() => $_has(6);
@$pb.TagNumber(7)
@@ -140,7 +157,7 @@ class Metrics extends $pb.GeneratedMessage {
@$pb.TagNumber(8)
$core.String get refID => $_getSZ(7);
@$pb.TagNumber(8)
set refID($core.String value) => $_setString(7, value);
set refID($core.String v) { $_setString(7, v); }
@$pb.TagNumber(8)
$core.bool hasRefID() => $_has(7);
@$pb.TagNumber(8)
@@ -148,5 +165,5 @@ class Metrics extends $pb.GeneratedMessage {
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -1,12 +1,11 @@
// This is a generated file - do not edit.
//
// Generated from clickhouseMetrics.proto.
// Generated code. Do not modify.
// source: clickhouseMetrics.proto
//
// @dart = 3.3
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
// ignore_for_file: constant_identifier_names
// ignore_for_file: curly_braces_in_flow_control_structures
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
// ignore_for_file: non_constant_identifier_names
// ignore_for_file: constant_identifier_names, library_prefixes
// ignore_for_file: non_constant_identifier_names, prefer_final_fields
// ignore_for_file: unnecessary_import, unnecessary_this, unused_import

Some files were not shown because too many files have changed in this diff Show More