You've already forked dart-core-sdk
Latest generation
This commit is contained in:
1256
lib/accounts.pb.dart
Normal file
1256
lib/accounts.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
11
lib/accounts.pbenum.dart
Normal file
11
lib/accounts.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: accounts.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
239
lib/accounts.pbgrpc.dart
Normal file
239
lib/accounts.pbgrpc.dart
Normal file
@@ -0,0 +1,239 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: accounts.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'accounts.pb.dart' as $50;
|
||||
|
||||
export 'accounts.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.Accounts')
|
||||
class AccountsClient extends $grpc.Client {
|
||||
static final _$createAccount = $grpc.ClientMethod<$50.CreateAccountRequest, $50.CreateAccountResult>(
|
||||
'/api.Accounts/CreateAccount',
|
||||
($50.CreateAccountRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.CreateAccountResult.fromBuffer(value));
|
||||
static final _$getAccount = $grpc.ClientMethod<$50.GetAccountRequest, $50.GetAccountResult>(
|
||||
'/api.Accounts/GetAccount',
|
||||
($50.GetAccountRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.GetAccountResult.fromBuffer(value));
|
||||
static final _$listAccounts = $grpc.ClientMethod<$50.ListAccountsRequest, $50.ListAccountsResult>(
|
||||
'/api.Accounts/ListAccounts',
|
||||
($50.ListAccountsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.ListAccountsResult.fromBuffer(value));
|
||||
static final _$editAccount = $grpc.ClientMethod<$50.EditAccountRequest, $50.EditAccountResult>(
|
||||
'/api.Accounts/EditAccount',
|
||||
($50.EditAccountRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.EditAccountResult.fromBuffer(value));
|
||||
static final _$deleteAccount = $grpc.ClientMethod<$50.DeleteAccountRequest, $50.DeleteAccountResult>(
|
||||
'/api.Accounts/DeleteAccount',
|
||||
($50.DeleteAccountRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.DeleteAccountResult.fromBuffer(value));
|
||||
static final _$pushAccounts = $grpc.ClientMethod<$50.PushAccountsRequest, $50.PushAccountsResult>(
|
||||
'/api.Accounts/PushAccounts',
|
||||
($50.PushAccountsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.PushAccountsResult.fromBuffer(value));
|
||||
static final _$addExport = $grpc.ClientMethod<$50.AddExportRequest, $50.AddExportResult>(
|
||||
'/api.Accounts/AddExport',
|
||||
($50.AddExportRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.AddExportResult.fromBuffer(value));
|
||||
static final _$addImport = $grpc.ClientMethod<$50.AddImportRequest, $50.AddImportResult>(
|
||||
'/api.Accounts/AddImport',
|
||||
($50.AddImportRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.AddImportResult.fromBuffer(value));
|
||||
static final _$deleteExport = $grpc.ClientMethod<$50.DeleteExportRequest, $50.DeleteExportResult>(
|
||||
'/api.Accounts/DeleteExport',
|
||||
($50.DeleteExportRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.DeleteExportResult.fromBuffer(value));
|
||||
static final _$deleteImport = $grpc.ClientMethod<$50.DeleteImportRequest, $50.DeleteImportResult>(
|
||||
'/api.Accounts/DeleteImport',
|
||||
($50.DeleteImportRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $50.DeleteImportResult.fromBuffer(value));
|
||||
|
||||
AccountsClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$50.CreateAccountResult> createAccount($50.CreateAccountRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$createAccount, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.GetAccountResult> getAccount($50.GetAccountRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getAccount, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.ListAccountsResult> listAccounts($50.ListAccountsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$listAccounts, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.EditAccountResult> editAccount($50.EditAccountRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$editAccount, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.DeleteAccountResult> deleteAccount($50.DeleteAccountRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteAccount, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.PushAccountsResult> pushAccounts($50.PushAccountsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$pushAccounts, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.AddExportResult> addExport($50.AddExportRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$addExport, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.AddImportResult> addImport($50.AddImportRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$addImport, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.DeleteExportResult> deleteExport($50.DeleteExportRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteExport, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$50.DeleteImportResult> deleteImport($50.DeleteImportRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteImport, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.Accounts')
|
||||
abstract class AccountsServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.Accounts';
|
||||
|
||||
AccountsServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$50.CreateAccountRequest, $50.CreateAccountResult>(
|
||||
'CreateAccount',
|
||||
createAccount_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.CreateAccountRequest.fromBuffer(value),
|
||||
($50.CreateAccountResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.GetAccountRequest, $50.GetAccountResult>(
|
||||
'GetAccount',
|
||||
getAccount_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.GetAccountRequest.fromBuffer(value),
|
||||
($50.GetAccountResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.ListAccountsRequest, $50.ListAccountsResult>(
|
||||
'ListAccounts',
|
||||
listAccounts_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.ListAccountsRequest.fromBuffer(value),
|
||||
($50.ListAccountsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.EditAccountRequest, $50.EditAccountResult>(
|
||||
'EditAccount',
|
||||
editAccount_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.EditAccountRequest.fromBuffer(value),
|
||||
($50.EditAccountResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.DeleteAccountRequest, $50.DeleteAccountResult>(
|
||||
'DeleteAccount',
|
||||
deleteAccount_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.DeleteAccountRequest.fromBuffer(value),
|
||||
($50.DeleteAccountResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.PushAccountsRequest, $50.PushAccountsResult>(
|
||||
'PushAccounts',
|
||||
pushAccounts_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.PushAccountsRequest.fromBuffer(value),
|
||||
($50.PushAccountsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.AddExportRequest, $50.AddExportResult>(
|
||||
'AddExport',
|
||||
addExport_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.AddExportRequest.fromBuffer(value),
|
||||
($50.AddExportResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.AddImportRequest, $50.AddImportResult>(
|
||||
'AddImport',
|
||||
addImport_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.AddImportRequest.fromBuffer(value),
|
||||
($50.AddImportResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.DeleteExportRequest, $50.DeleteExportResult>(
|
||||
'DeleteExport',
|
||||
deleteExport_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.DeleteExportRequest.fromBuffer(value),
|
||||
($50.DeleteExportResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$50.DeleteImportRequest, $50.DeleteImportResult>(
|
||||
'DeleteImport',
|
||||
deleteImport_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $50.DeleteImportRequest.fromBuffer(value),
|
||||
($50.DeleteImportResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$50.CreateAccountResult> createAccount_Pre($grpc.ServiceCall call, $async.Future<$50.CreateAccountRequest> request) async {
|
||||
return createAccount(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.GetAccountResult> getAccount_Pre($grpc.ServiceCall call, $async.Future<$50.GetAccountRequest> request) async {
|
||||
return getAccount(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.ListAccountsResult> listAccounts_Pre($grpc.ServiceCall call, $async.Future<$50.ListAccountsRequest> request) async {
|
||||
return listAccounts(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.EditAccountResult> editAccount_Pre($grpc.ServiceCall call, $async.Future<$50.EditAccountRequest> request) async {
|
||||
return editAccount(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.DeleteAccountResult> deleteAccount_Pre($grpc.ServiceCall call, $async.Future<$50.DeleteAccountRequest> request) async {
|
||||
return deleteAccount(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.PushAccountsResult> pushAccounts_Pre($grpc.ServiceCall call, $async.Future<$50.PushAccountsRequest> request) async {
|
||||
return pushAccounts(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.AddExportResult> addExport_Pre($grpc.ServiceCall call, $async.Future<$50.AddExportRequest> request) async {
|
||||
return addExport(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.AddImportResult> addImport_Pre($grpc.ServiceCall call, $async.Future<$50.AddImportRequest> request) async {
|
||||
return addImport(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.DeleteExportResult> deleteExport_Pre($grpc.ServiceCall call, $async.Future<$50.DeleteExportRequest> request) async {
|
||||
return deleteExport(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.DeleteImportResult> deleteImport_Pre($grpc.ServiceCall call, $async.Future<$50.DeleteImportRequest> request) async {
|
||||
return deleteImport(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$50.CreateAccountResult> createAccount($grpc.ServiceCall call, $50.CreateAccountRequest request);
|
||||
$async.Future<$50.GetAccountResult> getAccount($grpc.ServiceCall call, $50.GetAccountRequest request);
|
||||
$async.Future<$50.ListAccountsResult> listAccounts($grpc.ServiceCall call, $50.ListAccountsRequest request);
|
||||
$async.Future<$50.EditAccountResult> editAccount($grpc.ServiceCall call, $50.EditAccountRequest request);
|
||||
$async.Future<$50.DeleteAccountResult> deleteAccount($grpc.ServiceCall call, $50.DeleteAccountRequest request);
|
||||
$async.Future<$50.PushAccountsResult> pushAccounts($grpc.ServiceCall call, $50.PushAccountsRequest request);
|
||||
$async.Future<$50.AddExportResult> addExport($grpc.ServiceCall call, $50.AddExportRequest request);
|
||||
$async.Future<$50.AddImportResult> addImport($grpc.ServiceCall call, $50.AddImportRequest request);
|
||||
$async.Future<$50.DeleteExportResult> deleteExport($grpc.ServiceCall call, $50.DeleteExportRequest request);
|
||||
$async.Future<$50.DeleteImportResult> deleteImport($grpc.ServiceCall call, $50.DeleteImportRequest request);
|
||||
}
|
||||
312
lib/accounts.pbjson.dart
Normal file
312
lib/accounts.pbjson.dart
Normal file
@@ -0,0 +1,312 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: accounts.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use createAccountRequestDescriptor instead')
|
||||
const CreateAccountRequest$json = {
|
||||
'1': 'CreateAccountRequest',
|
||||
'2': [
|
||||
{'1': 'name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'name'},
|
||||
{'1': 'permission', '3': 2, '4': 1, '5': 11, '6': '.api.NscPermission', '10': 'permission'},
|
||||
{'1': 'jetStream', '3': 3, '4': 1, '5': 8, '10': 'jetStream'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createAccountRequestDescriptor = $convert.base64Decode(
|
||||
'ChRDcmVhdGVBY2NvdW50UmVxdWVzdBIbCgRuYW1lGAEgASgJQgf6QgRyAhABUgRuYW1lEjIKCn'
|
||||
'Blcm1pc3Npb24YAiABKAsyEi5hcGkuTnNjUGVybWlzc2lvblIKcGVybWlzc2lvbhIcCglqZXRT'
|
||||
'dHJlYW0YAyABKAhSCWpldFN0cmVhbToMkkEJCgfSAQRuYW1l');
|
||||
|
||||
@$core.Deprecated('Use createAccountResultDescriptor instead')
|
||||
const CreateAccountResult$json = {
|
||||
'1': 'CreateAccountResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateAccountResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createAccountResultDescriptor = $convert.base64Decode(
|
||||
'ChNDcmVhdGVBY2NvdW50UmVzdWx0EokBCgtDcmVkZW50aWFscxgBIAEoCzIULmFwaS5OYXRzQ3'
|
||||
'JlZGVudGlhbHNCUZJBTjJMTmF0c0NyZWRlbnRpYWxzIGhvbGRzIHRoZSBjb25maWd1cmF0aW9u'
|
||||
'IGZvciBpbnRlcmFjdGluZyB3aXRoIFBsYXRmb3JtJ3MgTkFUU1ILQ3JlZGVudGlhbHM=');
|
||||
|
||||
@$core.Deprecated('Use addExportRequestDescriptor instead')
|
||||
const AddExportRequest$json = {
|
||||
'1': 'AddExportRequest',
|
||||
'2': [
|
||||
{'1': 'accountName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'accountName'},
|
||||
{'1': 'public', '3': 2, '4': 1, '5': 8, '10': 'public'},
|
||||
{'1': 'stream', '3': 3, '4': 1, '5': 8, '10': 'stream'},
|
||||
{'1': 'subject', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'subject'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AddExportRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addExportRequestDescriptor = $convert.base64Decode(
|
||||
'ChBBZGRFeHBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2NvdW'
|
||||
'50TmFtZRIWCgZwdWJsaWMYAiABKAhSBnB1YmxpYxIWCgZzdHJlYW0YAyABKAhSBnN0cmVhbRIh'
|
||||
'CgdzdWJqZWN0GAQgASgJQgf6QgRyAhABUgdzdWJqZWN0Oh2SQRoKGNIBC2FjY291bnROYW1l0g'
|
||||
'EHc3ViamVjdA==');
|
||||
|
||||
@$core.Deprecated('Use addExportResultDescriptor instead')
|
||||
const AddExportResult$json = {
|
||||
'1': 'AddExportResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AddExportResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addExportResultDescriptor = $convert.base64Decode(
|
||||
'Cg9BZGRFeHBvcnRSZXN1bHQSiQEKC0NyZWRlbnRpYWxzGAEgASgLMhQuYXBpLk5hdHNDcmVkZW'
|
||||
'50aWFsc0JRkkFOMkxOYXRzQ3JlZGVudGlhbHMgaG9sZHMgdGhlIGNvbmZpZ3VyYXRpb24gZm9y'
|
||||
'IGludGVyYWN0aW5nIHdpdGggUGxhdGZvcm0ncyBOQVRTUgtDcmVkZW50aWFscw==');
|
||||
|
||||
@$core.Deprecated('Use addImportRequestDescriptor instead')
|
||||
const AddImportRequest$json = {
|
||||
'1': 'AddImportRequest',
|
||||
'2': [
|
||||
{'1': 'accountName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'accountName'},
|
||||
{'1': 'remoteAccount', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'remoteAccount'},
|
||||
{'1': 'subject', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'subject'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AddImportRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addImportRequestDescriptor = $convert.base64Decode(
|
||||
'ChBBZGRJbXBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2NvdW'
|
||||
'50TmFtZRItCg1yZW1vdGVBY2NvdW50GAIgASgJQgf6QgRyAhABUg1yZW1vdGVBY2NvdW50EiEK'
|
||||
'B3N1YmplY3QYAyABKAlCB/pCBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE5hbWXSAQ'
|
||||
'1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
|
||||
|
||||
@$core.Deprecated('Use addImportResultDescriptor instead')
|
||||
const AddImportResult$json = {
|
||||
'1': 'AddImportResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AddImportResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addImportResultDescriptor = $convert.base64Decode(
|
||||
'Cg9BZGRJbXBvcnRSZXN1bHQSiQEKC0NyZWRlbnRpYWxzGAEgASgLMhQuYXBpLk5hdHNDcmVkZW'
|
||||
'50aWFsc0JRkkFOMkxOYXRzQ3JlZGVudGlhbHMgaG9sZHMgdGhlIGNvbmZpZ3VyYXRpb24gZm9y'
|
||||
'IGludGVyYWN0aW5nIHdpdGggUGxhdGZvcm0ncyBOQVRTUgtDcmVkZW50aWFscw==');
|
||||
|
||||
@$core.Deprecated('Use deleteExportRequestDescriptor instead')
|
||||
const DeleteExportRequest$json = {
|
||||
'1': 'DeleteExportRequest',
|
||||
'2': [
|
||||
{'1': 'accountName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'accountName'},
|
||||
{'1': 'subject', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'subject'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteExportRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteExportRequestDescriptor = $convert.base64Decode(
|
||||
'ChNEZWxldGVFeHBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2'
|
||||
'NvdW50TmFtZRIhCgdzdWJqZWN0GAIgASgJQgf6QgRyAhABUgdzdWJqZWN0Oh2SQRoKGNIBC2Fj'
|
||||
'Y291bnROYW1l0gEHc3ViamVjdA==');
|
||||
|
||||
@$core.Deprecated('Use deleteExportResultDescriptor instead')
|
||||
const DeleteExportResult$json = {
|
||||
'1': 'DeleteExportResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteExportResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteExportResultDescriptor = $convert.base64Decode(
|
||||
'ChJEZWxldGVFeHBvcnRSZXN1bHQSiQEKC0NyZWRlbnRpYWxzGAEgASgLMhQuYXBpLk5hdHNDcm'
|
||||
'VkZW50aWFsc0JRkkFOMkxOYXRzQ3JlZGVudGlhbHMgaG9sZHMgdGhlIGNvbmZpZ3VyYXRpb24g'
|
||||
'Zm9yIGludGVyYWN0aW5nIHdpdGggUGxhdGZvcm0ncyBOQVRTUgtDcmVkZW50aWFscw==');
|
||||
|
||||
@$core.Deprecated('Use deleteImportRequestDescriptor instead')
|
||||
const DeleteImportRequest$json = {
|
||||
'1': 'DeleteImportRequest',
|
||||
'2': [
|
||||
{'1': 'accountName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'accountName'},
|
||||
{'1': 'remoteAccount', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'remoteAccount'},
|
||||
{'1': 'subject', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'subject'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteImportRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteImportRequestDescriptor = $convert.base64Decode(
|
||||
'ChNEZWxldGVJbXBvcnRSZXF1ZXN0EikKC2FjY291bnROYW1lGAEgASgJQgf6QgRyAhABUgthY2'
|
||||
'NvdW50TmFtZRItCg1yZW1vdGVBY2NvdW50GAIgASgJQgf6QgRyAhABUg1yZW1vdGVBY2NvdW50'
|
||||
'EiEKB3N1YmplY3QYAyABKAlCB/pCBHICEAFSB3N1YmplY3Q6LZJBKgoo0gELYWNjb3VudE5hbW'
|
||||
'XSAQ1yZW1vdGVBY2NvdW500gEHc3ViamVjdA==');
|
||||
|
||||
@$core.Deprecated('Use deleteImportResultDescriptor instead')
|
||||
const DeleteImportResult$json = {
|
||||
'1': 'DeleteImportResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteImportResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteImportResultDescriptor = $convert.base64Decode(
|
||||
'ChJEZWxldGVJbXBvcnRSZXN1bHQSiQEKC0NyZWRlbnRpYWxzGAEgASgLMhQuYXBpLk5hdHNDcm'
|
||||
'VkZW50aWFsc0JRkkFOMkxOYXRzQ3JlZGVudGlhbHMgaG9sZHMgdGhlIGNvbmZpZ3VyYXRpb24g'
|
||||
'Zm9yIGludGVyYWN0aW5nIHdpdGggUGxhdGZvcm0ncyBOQVRTUgtDcmVkZW50aWFscw==');
|
||||
|
||||
@$core.Deprecated('Use getAccountRequestDescriptor instead')
|
||||
const GetAccountRequest$json = {
|
||||
'1': 'GetAccountRequest',
|
||||
'2': [
|
||||
{'1': 'name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'name'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAccountRequestDescriptor = $convert.base64Decode(
|
||||
'ChFHZXRBY2NvdW50UmVxdWVzdBIbCgRuYW1lGAEgASgJQgf6QgRyAhABUgRuYW1lOgySQQkKB9'
|
||||
'IBBG5hbWU=');
|
||||
|
||||
@$core.Deprecated('Use getAccountResultDescriptor instead')
|
||||
const GetAccountResult$json = {
|
||||
'1': 'GetAccountResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAccountResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAccountResultDescriptor = $convert.base64Decode(
|
||||
'ChBHZXRBY2NvdW50UmVzdWx0EokBCgtDcmVkZW50aWFscxgBIAEoCzIULmFwaS5OYXRzQ3JlZG'
|
||||
'VudGlhbHNCUZJBTjJMTmF0c0NyZWRlbnRpYWxzIGhvbGRzIHRoZSBjb25maWd1cmF0aW9uIGZv'
|
||||
'ciBpbnRlcmFjdGluZyB3aXRoIFBsYXRmb3JtJ3MgTkFUU1ILQ3JlZGVudGlhbHM=');
|
||||
|
||||
@$core.Deprecated('Use editAccountRequestDescriptor instead')
|
||||
const EditAccountRequest$json = {
|
||||
'1': 'EditAccountRequest',
|
||||
'2': [
|
||||
{'1': 'name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'name'},
|
||||
{'1': 'permission', '3': 2, '4': 1, '5': 11, '6': '.api.NscPermission', '10': 'permission'},
|
||||
{'1': 'rmPerms', '3': 3, '4': 3, '5': 9, '10': 'rmPerms'},
|
||||
{'1': 'jetStream', '3': 4, '4': 1, '5': 8, '10': 'jetStream'},
|
||||
{'1': 'diskStorage', '3': 5, '4': 1, '5': 3, '10': 'diskStorage'},
|
||||
{'1': 'streams', '3': 6, '4': 1, '5': 3, '10': 'streams'},
|
||||
{'1': 'consumers', '3': 7, '4': 1, '5': 3, '10': 'consumers'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `EditAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List editAccountRequestDescriptor = $convert.base64Decode(
|
||||
'ChJFZGl0QWNjb3VudFJlcXVlc3QSGwoEbmFtZRgBIAEoCUIH+kIEcgIQAVIEbmFtZRIyCgpwZX'
|
||||
'JtaXNzaW9uGAIgASgLMhIuYXBpLk5zY1Blcm1pc3Npb25SCnBlcm1pc3Npb24SGAoHcm1QZXJt'
|
||||
'cxgDIAMoCVIHcm1QZXJtcxIcCglqZXRTdHJlYW0YBCABKAhSCWpldFN0cmVhbRIgCgtkaXNrU3'
|
||||
'RvcmFnZRgFIAEoA1ILZGlza1N0b3JhZ2USGAoHc3RyZWFtcxgGIAEoA1IHc3RyZWFtcxIcCglj'
|
||||
'b25zdW1lcnMYByABKANSCWNvbnN1bWVyczolkkEiCiAyF0VudGl0eSBlZGl0aW9uIG1lc3NhZ2'
|
||||
'Vz0gEEbmFtZQ==');
|
||||
|
||||
@$core.Deprecated('Use editAccountResultDescriptor instead')
|
||||
const EditAccountResult$json = {
|
||||
'1': 'EditAccountResult',
|
||||
'2': [
|
||||
{'1': 'Credentials', '3': 1, '4': 1, '5': 11, '6': '.api.NatsCredentials', '8': {}, '10': 'Credentials'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EditAccountResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List editAccountResultDescriptor = $convert.base64Decode(
|
||||
'ChFFZGl0QWNjb3VudFJlc3VsdBKJAQoLQ3JlZGVudGlhbHMYASABKAsyFC5hcGkuTmF0c0NyZW'
|
||||
'RlbnRpYWxzQlGSQU4yTE5hdHNDcmVkZW50aWFscyBob2xkcyB0aGUgY29uZmlndXJhdGlvbiBm'
|
||||
'b3IgaW50ZXJhY3Rpbmcgd2l0aCBQbGF0Zm9ybSdzIE5BVFNSC0NyZWRlbnRpYWxz');
|
||||
|
||||
@$core.Deprecated('Use deleteAccountRequestDescriptor instead')
|
||||
const DeleteAccountRequest$json = {
|
||||
'1': 'DeleteAccountRequest',
|
||||
'2': [
|
||||
{'1': 'accountName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'accountName'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAccountRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAccountRequestDescriptor = $convert.base64Decode(
|
||||
'ChREZWxldGVBY2NvdW50UmVxdWVzdBIpCgthY2NvdW50TmFtZRgBIAEoCUIH+kIEcgIQAVILYW'
|
||||
'Njb3VudE5hbWU6E5JBEAoO0gELYWNjb3VudE5hbWU=');
|
||||
|
||||
@$core.Deprecated('Use deleteAccountResultDescriptor instead')
|
||||
const DeleteAccountResult$json = {
|
||||
'1': 'DeleteAccountResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAccountResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAccountResultDescriptor = $convert.base64Decode(
|
||||
'ChNEZWxldGVBY2NvdW50UmVzdWx0');
|
||||
|
||||
@$core.Deprecated('Use pushAccountsRequestDescriptor instead')
|
||||
const PushAccountsRequest$json = {
|
||||
'1': 'PushAccountsRequest',
|
||||
'2': [
|
||||
{'1': 'addAcc', '3': 1, '4': 1, '5': 9, '9': 0, '10': 'addAcc'},
|
||||
{'1': 'removeAcc', '3': 2, '4': 1, '5': 9, '9': 0, '10': 'removeAcc'},
|
||||
{'1': 'pushAll', '3': 3, '4': 1, '5': 8, '9': 0, '10': 'pushAll'},
|
||||
],
|
||||
'8': [
|
||||
{'1': 'Params'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `PushAccountsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List pushAccountsRequestDescriptor = $convert.base64Decode(
|
||||
'ChNQdXNoQWNjb3VudHNSZXF1ZXN0EhgKBmFkZEFjYxgBIAEoCUgAUgZhZGRBY2MSHgoJcmVtb3'
|
||||
'ZlQWNjGAIgASgJSABSCXJlbW92ZUFjYxIaCgdwdXNoQWxsGAMgASgISABSB3B1c2hBbGxCCAoG'
|
||||
'UGFyYW1z');
|
||||
|
||||
@$core.Deprecated('Use pushAccountsResultDescriptor instead')
|
||||
const PushAccountsResult$json = {
|
||||
'1': 'PushAccountsResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `PushAccountsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List pushAccountsResultDescriptor = $convert.base64Decode(
|
||||
'ChJQdXNoQWNjb3VudHNSZXN1bHQ=');
|
||||
|
||||
@$core.Deprecated('Use listAccountsRequestDescriptor instead')
|
||||
const ListAccountsRequest$json = {
|
||||
'1': 'ListAccountsRequest',
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAccountsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAccountsRequestDescriptor = $convert.base64Decode(
|
||||
'ChNMaXN0QWNjb3VudHNSZXF1ZXN0');
|
||||
|
||||
@$core.Deprecated('Use listAccountsResultDescriptor instead')
|
||||
const ListAccountsResult$json = {
|
||||
'1': 'ListAccountsResult',
|
||||
'2': [
|
||||
{'1': 'entities', '3': 1, '4': 3, '5': 11, '6': '.api.NamedNscCredentials', '10': 'entities'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAccountsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAccountsResultDescriptor = $convert.base64Decode(
|
||||
'ChJMaXN0QWNjb3VudHNSZXN1bHQSNAoIZW50aXRpZXMYASADKAsyGC5hcGkuTmFtZWROc2NDcm'
|
||||
'VkZW50aWFsc1IIZW50aXRpZXM=');
|
||||
|
||||
717
lib/actor.pb.dart
Normal file
717
lib/actor.pb.dart
Normal file
@@ -0,0 +1,717 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $74;
|
||||
import 'repositoryShared.pb.dart' as $69;
|
||||
import 'repositoryShared.pbenum.dart' as $69;
|
||||
import 'shared.pb.dart' as $28;
|
||||
|
||||
///
|
||||
/// Aggregation object message
|
||||
class Actor extends $pb.GeneratedMessage {
|
||||
factory Actor({
|
||||
$28.EventHeader? lastEventHeader,
|
||||
$28.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;
|
||||
}
|
||||
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<$28.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $28.EventHeader.create)
|
||||
..aOM<$28.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $28.EntityID.create)
|
||||
..aOM<ActorPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ActorPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Actor create() => Actor._();
|
||||
Actor createEmptyInstance() => create();
|
||||
static $pb.PbList<Actor> createRepeated() => $pb.PbList<Actor>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Actor getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Actor>(create);
|
||||
static Actor? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.EventHeader get lastEventHeader => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set lastEventHeader($28.EventHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasLastEventHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearLastEventHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.EventHeader ensureLastEventHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($28.EntityID v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorPayload v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorPayload extends $pb.GeneratedMessage {
|
||||
factory ActorPayload({
|
||||
$core.String? name,
|
||||
$69.IdType? idType,
|
||||
$core.Iterable<$28.MetadataElement>? metaData,
|
||||
$69.Address? address,
|
||||
$69.ActorStatusStruct? status,
|
||||
$core.String? partnerID,
|
||||
$69.ActorTypology? typology,
|
||||
$69.ActorSnapshot? snapshot,
|
||||
$core.Iterable<$core.String>? emails,
|
||||
$core.Iterable<$core.String>? phones,
|
||||
$core.bool? managedStock,
|
||||
$core.String? additionalInformation,
|
||||
$core.bool? isCarrier,
|
||||
$core.Iterable<$69.CarrierService>? carrierServices,
|
||||
$core.bool? isShipToConnected,
|
||||
$core.bool? isShipFromConnected,
|
||||
$core.String? shipToPartnerAppID,
|
||||
$core.String? shipFromPartnerAppID,
|
||||
$core.Iterable<$28.AttachmentSummary>? attachments,
|
||||
$core.int? attachmentNumber,
|
||||
$core.Iterable<$28.ClaimSummary>? claims,
|
||||
$core.int? claimNumber,
|
||||
$core.String? photoURI,
|
||||
$core.Iterable<$core.String>? connectionIdentifierPrefixes,
|
||||
}) {
|
||||
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._() : 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<$69.IdType>(2, _omitFieldNames ? '' : 'IdType', $pb.PbFieldType.OE, protoName: 'IdType', defaultOrMaker: $69.IdType.IDTYPE_UNKNOWN, valueOf: $69.IdType.valueOf, enumValues: $69.IdType.values)
|
||||
..pc<$28.MetadataElement>(3, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $28.MetadataElement.create)
|
||||
..aOM<$69.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $69.Address.create)
|
||||
..aOM<$69.ActorStatusStruct>(6, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $69.ActorStatusStruct.create)
|
||||
..aOS(7, _omitFieldNames ? '' : 'PartnerID', protoName: 'PartnerID')
|
||||
..e<$69.ActorTypology>(10, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $69.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $69.ActorTypology.valueOf, enumValues: $69.ActorTypology.values)
|
||||
..aOM<$69.ActorSnapshot>(11, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $69.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<$69.CarrierService>(17, _omitFieldNames ? '' : 'CarrierServices', $pb.PbFieldType.PM, protoName: 'CarrierServices', subBuilder: $69.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<$28.AttachmentSummary>(22, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $28.AttachmentSummary.create)
|
||||
..a<$core.int>(23, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
|
||||
..pc<$28.ClaimSummary>(24, _omitFieldNames ? '' : 'Claims', $pb.PbFieldType.PM, protoName: 'Claims', subBuilder: $28.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')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorPayload create() => ActorPayload._();
|
||||
ActorPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorPayload> createRepeated() => $pb.PbList<ActorPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorPayload>(create);
|
||||
static ActorPayload? _defaultInstance;
|
||||
|
||||
/// Actor Name
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get name => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
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)
|
||||
$69.IdType get idType => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set idType($69.IdType v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasIdType() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearIdType() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<$28.MetadataElement> get metaData => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$69.Address get address => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set address($69.Address v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasAddress() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearAddress() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$69.Address ensureAddress() => $_ensure(3);
|
||||
|
||||
/// Status field is not accessible from APIs
|
||||
@$pb.TagNumber(6)
|
||||
$69.ActorStatusStruct get status => $_getN(4);
|
||||
@$pb.TagNumber(6)
|
||||
set status($69.ActorStatusStruct v) { setField(6, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasStatus() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearStatus() => clearField(6);
|
||||
@$pb.TagNumber(6)
|
||||
$69.ActorStatusStruct ensureStatus() => $_ensure(4);
|
||||
|
||||
/// Existing PartnerID
|
||||
@$pb.TagNumber(7)
|
||||
$core.String get partnerID => $_getSZ(5);
|
||||
@$pb.TagNumber(7)
|
||||
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)
|
||||
$69.ActorTypology get typology => $_getN(6);
|
||||
@$pb.TagNumber(10)
|
||||
set typology($69.ActorTypology v) { setField(10, v); }
|
||||
@$pb.TagNumber(10)
|
||||
$core.bool hasTypology() => $_has(6);
|
||||
@$pb.TagNumber(10)
|
||||
void clearTypology() => clearField(10);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$69.ActorSnapshot get snapshot => $_getN(7);
|
||||
@$pb.TagNumber(11)
|
||||
set snapshot($69.ActorSnapshot v) { setField(11, v); }
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasSnapshot() => $_has(7);
|
||||
@$pb.TagNumber(11)
|
||||
void clearSnapshot() => clearField(11);
|
||||
@$pb.TagNumber(11)
|
||||
$69.ActorSnapshot ensureSnapshot() => $_ensure(7);
|
||||
|
||||
/// Must be a valid email address
|
||||
@$pb.TagNumber(12)
|
||||
$core.List<$core.String> get emails => $_getList(8);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.List<$core.String> get phones => $_getList(9);
|
||||
|
||||
/// Can manage stock
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool get managedStock => $_getBF(10);
|
||||
@$pb.TagNumber(14)
|
||||
set managedStock($core.bool v) { $_setBool(10, v); }
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool hasManagedStock() => $_has(10);
|
||||
@$pb.TagNumber(14)
|
||||
void clearManagedStock() => clearField(14);
|
||||
|
||||
@$pb.TagNumber(15)
|
||||
$core.String get additionalInformation => $_getSZ(11);
|
||||
@$pb.TagNumber(15)
|
||||
set additionalInformation($core.String v) { $_setString(11, v); }
|
||||
@$pb.TagNumber(15)
|
||||
$core.bool hasAdditionalInformation() => $_has(11);
|
||||
@$pb.TagNumber(15)
|
||||
void clearAdditionalInformation() => clearField(15);
|
||||
|
||||
/// Can be used as carrier
|
||||
@$pb.TagNumber(16)
|
||||
$core.bool get isCarrier => $_getBF(12);
|
||||
@$pb.TagNumber(16)
|
||||
set isCarrier($core.bool v) { $_setBool(12, v); }
|
||||
@$pb.TagNumber(16)
|
||||
$core.bool hasIsCarrier() => $_has(12);
|
||||
@$pb.TagNumber(16)
|
||||
void clearIsCarrier() => clearField(16);
|
||||
|
||||
/// List of carrier services
|
||||
@$pb.TagNumber(17)
|
||||
$core.List<$69.CarrierService> get carrierServices => $_getList(13);
|
||||
|
||||
@$pb.TagNumber(18)
|
||||
$core.bool get isShipToConnected => $_getBF(14);
|
||||
@$pb.TagNumber(18)
|
||||
set isShipToConnected($core.bool v) { $_setBool(14, v); }
|
||||
@$pb.TagNumber(18)
|
||||
$core.bool hasIsShipToConnected() => $_has(14);
|
||||
@$pb.TagNumber(18)
|
||||
void clearIsShipToConnected() => clearField(18);
|
||||
|
||||
@$pb.TagNumber(19)
|
||||
$core.bool get isShipFromConnected => $_getBF(15);
|
||||
@$pb.TagNumber(19)
|
||||
set isShipFromConnected($core.bool v) { $_setBool(15, v); }
|
||||
@$pb.TagNumber(19)
|
||||
$core.bool hasIsShipFromConnected() => $_has(15);
|
||||
@$pb.TagNumber(19)
|
||||
void clearIsShipFromConnected() => clearField(19);
|
||||
|
||||
/// Must be existing partner ID
|
||||
@$pb.TagNumber(20)
|
||||
$core.String get shipToPartnerAppID => $_getSZ(16);
|
||||
@$pb.TagNumber(20)
|
||||
set shipToPartnerAppID($core.String v) { $_setString(16, v); }
|
||||
@$pb.TagNumber(20)
|
||||
$core.bool hasShipToPartnerAppID() => $_has(16);
|
||||
@$pb.TagNumber(20)
|
||||
void clearShipToPartnerAppID() => clearField(20);
|
||||
|
||||
/// Must be existing partner ID
|
||||
@$pb.TagNumber(21)
|
||||
$core.String get shipFromPartnerAppID => $_getSZ(17);
|
||||
@$pb.TagNumber(21)
|
||||
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)
|
||||
$core.List<$28.AttachmentSummary> get attachments => $_getList(18);
|
||||
|
||||
@$pb.TagNumber(23)
|
||||
$core.int get attachmentNumber => $_getIZ(19);
|
||||
@$pb.TagNumber(23)
|
||||
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)
|
||||
$core.List<$28.ClaimSummary> get claims => $_getList(20);
|
||||
|
||||
@$pb.TagNumber(25)
|
||||
$core.int get claimNumber => $_getIZ(21);
|
||||
@$pb.TagNumber(25)
|
||||
set claimNumber($core.int v) { $_setSignedInt32(21, v); }
|
||||
@$pb.TagNumber(25)
|
||||
$core.bool hasClaimNumber() => $_has(21);
|
||||
@$pb.TagNumber(25)
|
||||
void clearClaimNumber() => clearField(25);
|
||||
|
||||
@$pb.TagNumber(26)
|
||||
$core.String get photoURI => $_getSZ(22);
|
||||
@$pb.TagNumber(26)
|
||||
set photoURI($core.String v) { $_setString(22, v); }
|
||||
@$pb.TagNumber(26)
|
||||
$core.bool hasPhotoURI() => $_has(22);
|
||||
@$pb.TagNumber(26)
|
||||
void clearPhotoURI() => clearField(26);
|
||||
|
||||
/// Prefix used to create executionflow identifiers
|
||||
@$pb.TagNumber(28)
|
||||
$core.List<$core.String> get connectionIdentifierPrefixes => $_getList(23);
|
||||
}
|
||||
|
||||
enum ActorEnrichment_Content {
|
||||
partner,
|
||||
notSet
|
||||
}
|
||||
|
||||
/// Actor Enrichment : Obsolete
|
||||
class ActorEnrichment extends $pb.GeneratedMessage {
|
||||
factory ActorEnrichment({
|
||||
$core.String? parentEventID,
|
||||
$core.String? entityName,
|
||||
$core.String? entityRefID,
|
||||
$core.String? refFilter,
|
||||
$core.String? mergePath,
|
||||
$core.String? project,
|
||||
$core.String? parentEntityName,
|
||||
$core.String? parentEntityID,
|
||||
$74.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;
|
||||
}
|
||||
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,
|
||||
0 : ActorEnrichment_Content.notSet
|
||||
};
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorEnrichment', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..oo(0, [10])
|
||||
..aOS(1, _omitFieldNames ? '' : 'ParentEventID', protoName: 'ParentEventID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'EntityName', protoName: 'EntityName')
|
||||
..aOS(3, _omitFieldNames ? '' : 'EntityRefID', protoName: 'EntityRefID')
|
||||
..aOS(4, _omitFieldNames ? '' : 'RefFilter', protoName: 'RefFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'MergePath', protoName: 'MergePath')
|
||||
..aOS(6, _omitFieldNames ? '' : 'Project', protoName: 'Project')
|
||||
..aOS(7, _omitFieldNames ? '' : 'ParentEntityName', protoName: 'ParentEntityName')
|
||||
..aOS(8, _omitFieldNames ? '' : 'ParentEntityID', protoName: 'ParentEntityID')
|
||||
..aOM<$74.PartnerPayload>(10, _omitFieldNames ? '' : 'Partner', protoName: 'Partner', subBuilder: $74.PartnerPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorEnrichment create() => ActorEnrichment._();
|
||||
ActorEnrichment createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorEnrichment> createRepeated() => $pb.PbList<ActorEnrichment>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorEnrichment getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorEnrichment>(create);
|
||||
static ActorEnrichment? _defaultInstance;
|
||||
|
||||
ActorEnrichment_Content whichContent() => _ActorEnrichment_ContentByTag[$_whichOneof(0)]!;
|
||||
void clearContent() => clearField($_whichOneof(0));
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get parentEventID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set parentEventID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasParentEventID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearParentEventID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get entityName => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set entityName($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasEntityName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearEntityName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get entityRefID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set entityRefID($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntityRefID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntityRefID() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get refFilter => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set refFilter($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasRefFilter() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearRefFilter() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get mergePath => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set mergePath($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasMergePath() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearMergePath() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get project => $_getSZ(5);
|
||||
@$pb.TagNumber(6)
|
||||
set project($core.String v) { $_setString(5, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasProject() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearProject() => clearField(6);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.String get parentEntityName => $_getSZ(6);
|
||||
@$pb.TagNumber(7)
|
||||
set parentEntityName($core.String v) { $_setString(6, v); }
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasParentEntityName() => $_has(6);
|
||||
@$pb.TagNumber(7)
|
||||
void clearParentEntityName() => clearField(7);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.String get parentEntityID => $_getSZ(7);
|
||||
@$pb.TagNumber(8)
|
||||
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)
|
||||
$74.PartnerPayload get partner => $_getN(8);
|
||||
@$pb.TagNumber(10)
|
||||
set partner($74.PartnerPayload v) { setField(10, v); }
|
||||
@$pb.TagNumber(10)
|
||||
$core.bool hasPartner() => $_has(8);
|
||||
@$pb.TagNumber(10)
|
||||
void clearPartner() => clearField(10);
|
||||
@$pb.TagNumber(10)
|
||||
$74.PartnerPayload ensurePartner() => $_ensure(8);
|
||||
}
|
||||
|
||||
class ActorTriplet extends $pb.GeneratedMessage {
|
||||
factory ActorTriplet({
|
||||
Actor? current,
|
||||
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;
|
||||
}
|
||||
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)
|
||||
..aOM<Actor>(2, _omitFieldNames ? '' : 'Previous', protoName: 'Previous', subBuilder: Actor.create)
|
||||
..aOM<Actor>(3, _omitFieldNames ? '' : 'LastEvent', protoName: 'LastEvent', subBuilder: Actor.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorTriplet create() => ActorTriplet._();
|
||||
ActorTriplet createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorTriplet> createRepeated() => $pb.PbList<ActorTriplet>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorTriplet getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorTriplet>(create);
|
||||
static ActorTriplet? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
Actor get current => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set current(Actor v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCurrent() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCurrent() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Actor ensureCurrent() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
Actor get previous => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set previous(Actor v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasPrevious() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearPrevious() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
Actor ensurePrevious() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
Actor get lastEvent => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set lastEvent(Actor v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasLastEvent() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearLastEvent() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
Actor ensureLastEvent() => $_ensure(2);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/actor.pbenum.dart
Normal file
11
lib/actor.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
195
lib/actor.pbjson.dart
Normal file
195
lib/actor.pbjson.dart
Normal file
@@ -0,0 +1,195 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use actorDescriptor instead')
|
||||
const Actor$json = {
|
||||
'1': 'Actor',
|
||||
'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', '8': {}, '10': 'ID'},
|
||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.ActorPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `Actor`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorDescriptor = $convert.base64Decode(
|
||||
'CgVBY3RvchI6Cg9MYXN0RXZlbnRIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSD0xhc3'
|
||||
'RFdmVudEhlYWRlchJLCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREIsysIYFAoSCgEqEg1nZW5l'
|
||||
'cmF0ZWRUZXh02sIYEAoOCgEqEglzaG9ydFRleHRSAklEEisKB1BheWxvYWQYAyABKAsyES5hcG'
|
||||
'kuQWN0b3JQYXlsb2FkUgdQYXlsb2FkOiGSQR4KHDIaQWdncmVnYXRpb24gb2JqZWN0IG1lc3Nh'
|
||||
'Z2U=');
|
||||
|
||||
@$core.Deprecated('Use actorPayloadDescriptor instead')
|
||||
const ActorPayload$json = {
|
||||
'1': 'ActorPayload',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'IdType', '3': 2, '4': 1, '5': 14, '6': '.api.IdType', '8': {}, '10': 'IdType'},
|
||||
{'1': 'MetaData', '3': 3, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||
{'1': 'Address', '3': 4, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
|
||||
{'1': 'Status', '3': 6, '4': 1, '5': 11, '6': '.api.ActorStatusStruct', '8': {}, '10': 'Status'},
|
||||
{'1': 'PartnerID', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'PartnerID'},
|
||||
{'1': 'AdditionalInformation', '3': 15, '4': 1, '5': 9, '10': 'AdditionalInformation'},
|
||||
{'1': 'Typology', '3': 10, '4': 1, '5': 14, '6': '.api.ActorTypology', '8': {}, '10': 'Typology'},
|
||||
{'1': 'Snapshot', '3': 11, '4': 1, '5': 11, '6': '.api.ActorSnapshot', '8': {}, '10': 'Snapshot'},
|
||||
{'1': 'Emails', '3': 12, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
|
||||
{'1': 'Phones', '3': 13, '4': 3, '5': 9, '8': {}, '10': 'Phones'},
|
||||
{'1': 'ManagedStock', '3': 14, '4': 1, '5': 8, '8': {}, '10': 'ManagedStock'},
|
||||
{'1': 'IsCarrier', '3': 16, '4': 1, '5': 8, '8': {}, '10': 'IsCarrier'},
|
||||
{'1': 'CarrierServices', '3': 17, '4': 3, '5': 11, '6': '.api.CarrierService', '8': {}, '10': 'CarrierServices'},
|
||||
{'1': 'IsShipToConnected', '3': 18, '4': 1, '5': 8, '8': {}, '10': 'IsShipToConnected'},
|
||||
{'1': 'IsShipFromConnected', '3': 19, '4': 1, '5': 8, '8': {}, '10': 'IsShipFromConnected'},
|
||||
{'1': 'ShipToPartnerAppID', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'ShipToPartnerAppID'},
|
||||
{'1': 'ShipFromPartnerAppID', '3': 21, '4': 1, '5': 9, '8': {}, '10': 'ShipFromPartnerAppID'},
|
||||
{'1': 'Attachments', '3': 22, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
{'1': 'AttachmentNumber', '3': 23, '4': 1, '5': 5, '8': {}, '10': 'AttachmentNumber'},
|
||||
{'1': 'Claims', '3': 24, '4': 3, '5': 11, '6': '.api.ClaimSummary', '8': {}, '10': 'Claims'},
|
||||
{'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorPayloadDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'ActorEnrichment',
|
||||
'2': [
|
||||
{'1': 'ParentEventID', '3': 1, '4': 1, '5': 9, '10': 'ParentEventID'},
|
||||
{'1': 'EntityName', '3': 2, '4': 1, '5': 9, '10': 'EntityName'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '10': 'EntityRefID'},
|
||||
{'1': 'RefFilter', '3': 4, '4': 1, '5': 9, '10': 'RefFilter'},
|
||||
{'1': 'MergePath', '3': 5, '4': 1, '5': 9, '10': 'MergePath'},
|
||||
{'1': 'Partner', '3': 10, '4': 1, '5': 11, '6': '.api.PartnerPayload', '9': 0, '10': 'Partner'},
|
||||
{'1': 'Project', '3': 6, '4': 1, '5': 9, '10': 'Project'},
|
||||
{'1': 'ParentEntityName', '3': 7, '4': 1, '5': 9, '10': 'ParentEntityName'},
|
||||
{'1': 'ParentEntityID', '3': 8, '4': 1, '5': 9, '10': 'ParentEntityID'},
|
||||
],
|
||||
'8': [
|
||||
{'1': 'Content'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorEnrichment`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorEnrichmentDescriptor = $convert.base64Decode(
|
||||
'Cg9BY3RvckVucmljaG1lbnQSJAoNUGFyZW50RXZlbnRJRBgBIAEoCVINUGFyZW50RXZlbnRJRB'
|
||||
'IeCgpFbnRpdHlOYW1lGAIgASgJUgpFbnRpdHlOYW1lEiAKC0VudGl0eVJlZklEGAMgASgJUgtF'
|
||||
'bnRpdHlSZWZJRBIcCglSZWZGaWx0ZXIYBCABKAlSCVJlZkZpbHRlchIcCglNZXJnZVBhdGgYBS'
|
||||
'ABKAlSCU1lcmdlUGF0aBIvCgdQYXJ0bmVyGAogASgLMhMuYXBpLlBhcnRuZXJQYXlsb2FkSABS'
|
||||
'B1BhcnRuZXISGAoHUHJvamVjdBgGIAEoCVIHUHJvamVjdBIqChBQYXJlbnRFbnRpdHlOYW1lGA'
|
||||
'cgASgJUhBQYXJlbnRFbnRpdHlOYW1lEiYKDlBhcmVudEVudGl0eUlEGAggASgJUg5QYXJlbnRF'
|
||||
'bnRpdHlJREIJCgdDb250ZW50');
|
||||
|
||||
@$core.Deprecated('Use actorTripletDescriptor instead')
|
||||
const ActorTriplet$json = {
|
||||
'1': 'ActorTriplet',
|
||||
'2': [
|
||||
{'1': 'Current', '3': 1, '4': 1, '5': 11, '6': '.api.Actor', '10': 'Current'},
|
||||
{'1': 'Previous', '3': 2, '4': 1, '5': 11, '6': '.api.Actor', '10': 'Previous'},
|
||||
{'1': 'LastEvent', '3': 3, '4': 1, '5': 11, '6': '.api.Actor', '10': 'LastEvent'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorTriplet`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorTripletDescriptor = $convert.base64Decode(
|
||||
'CgxBY3RvclRyaXBsZXQSJAoHQ3VycmVudBgBIAEoCzIKLmFwaS5BY3RvclIHQ3VycmVudBImCg'
|
||||
'hQcmV2aW91cxgCIAEoCzIKLmFwaS5BY3RvclIIUHJldmlvdXMSKAoJTGFzdEV2ZW50GAMgASgL'
|
||||
'MgouYXBpLkFjdG9yUglMYXN0RXZlbnQ=');
|
||||
|
||||
193
lib/actorAction.pb.dart
Normal file
193
lib/actorAction.pb.dart
Normal file
@@ -0,0 +1,193 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorAction.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $69;
|
||||
import 'shared.pb.dart' as $28;
|
||||
|
||||
///
|
||||
/// CompleteSnapshot : finalize a actor snapshot
|
||||
/// by sending cumulated snapshotted quantity on stock id not already cumulated,
|
||||
/// by reseting the quantity of missing stock entry for the current snapshot
|
||||
class ActorCompleteSnapshotPayload extends $pb.GeneratedMessage {
|
||||
factory ActorCompleteSnapshotPayload({
|
||||
$69.ActorSnapshot? snapshot,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (snapshot != null) {
|
||||
$result.snapshot = snapshot;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$69.ActorSnapshot>(1, _omitFieldNames ? '' : 'Snapshot', protoName: 'Snapshot', subBuilder: $69.ActorSnapshot.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorCompleteSnapshotPayload create() => ActorCompleteSnapshotPayload._();
|
||||
ActorCompleteSnapshotPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorCompleteSnapshotPayload> createRepeated() => $pb.PbList<ActorCompleteSnapshotPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorCompleteSnapshotPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorCompleteSnapshotPayload>(create);
|
||||
static ActorCompleteSnapshotPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$69.ActorSnapshot get snapshot => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set snapshot($69.ActorSnapshot v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSnapshot() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSnapshot() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$69.ActorSnapshot ensureSnapshot() => $_ensure(0);
|
||||
}
|
||||
|
||||
class ActorCompleteSnapshot extends $pb.GeneratedMessage {
|
||||
factory ActorCompleteSnapshot({
|
||||
$28.CommandHeader? header,
|
||||
$28.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;
|
||||
}
|
||||
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<$28.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.CommandHeader.create)
|
||||
..aOM<$28.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $28.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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorCompleteSnapshot create() => ActorCompleteSnapshot._();
|
||||
ActorCompleteSnapshot createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorCompleteSnapshot> createRepeated() => $pb.PbList<ActorCompleteSnapshot>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorCompleteSnapshot getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorCompleteSnapshot>(create);
|
||||
static ActorCompleteSnapshot? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.CommandHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.CommandHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.CommandHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($28.EntityID v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorCompleteSnapshotPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ActorCompleteSnapshotPayload v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorCompleteSnapshotPayload ensurePayload() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
ActorCompleteSnapshotPayload get eventPayload => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set eventPayload(ActorCompleteSnapshotPayload v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasEventPayload() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearEventPayload() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
ActorCompleteSnapshotPayload ensureEventPayload() => $_ensure(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
ActorCompleteSnapshotPayload get previousPayload => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set previousPayload(ActorCompleteSnapshotPayload v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasPreviousPayload() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearPreviousPayload() => clearField(5);
|
||||
@$pb.TagNumber(5)
|
||||
ActorCompleteSnapshotPayload ensurePreviousPayload() => $_ensure(4);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/actorAction.pbenum.dart
Normal file
11
lib/actorAction.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorAction.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
54
lib/actorAction.pbjson.dart
Normal file
54
lib/actorAction.pbjson.dart
Normal file
@@ -0,0 +1,54 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorAction.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use actorCompleteSnapshotPayloadDescriptor instead')
|
||||
const ActorCompleteSnapshotPayload$json = {
|
||||
'1': 'ActorCompleteSnapshotPayload',
|
||||
'2': [
|
||||
{'1': 'Snapshot', '3': 1, '4': 1, '5': 11, '6': '.api.ActorSnapshot', '10': 'Snapshot'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorCompleteSnapshotPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCompleteSnapshotPayloadDescriptor = $convert.base64Decode(
|
||||
'ChxBY3RvckNvbXBsZXRlU25hcHNob3RQYXlsb2FkEi4KCFNuYXBzaG90GAEgASgLMhIuYXBpLk'
|
||||
'FjdG9yU25hcHNob3RSCFNuYXBzaG90OiOiuxgHQ29tbWFuZKi7GAGyuxgQQ29tcGxldGVTbmFw'
|
||||
'c2hvdA==');
|
||||
|
||||
@$core.Deprecated('Use actorCompleteSnapshotDescriptor instead')
|
||||
const ActorCompleteSnapshot$json = {
|
||||
'1': 'ActorCompleteSnapshot',
|
||||
'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.ActorCompleteSnapshotPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ActorCompleteSnapshotPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ActorCompleteSnapshotPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorCompleteSnapshot`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCompleteSnapshotDescriptor = $convert.base64Decode(
|
||||
'ChVBY3RvckNvbXBsZXRlU25hcHNob3QSKgoGSGVhZGVyGAEgASgLMhIuYXBpLkNvbW1hbmRIZW'
|
||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSOwoHUGF5bG9hZBgD'
|
||||
'IAEoCzIhLmFwaS5BY3RvckNvbXBsZXRlU25hcHNob3RQYXlsb2FkUgdQYXlsb2FkEkUKDEV2ZW'
|
||||
'50UGF5bG9hZBgEIAEoCzIhLmFwaS5BY3RvckNvbXBsZXRlU25hcHNob3RQYXlsb2FkUgxFdmVu'
|
||||
'dFBheWxvYWQSSwoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiEuYXBpLkFjdG9yQ29tcGxldGVTbm'
|
||||
'Fwc2hvdFBheWxvYWRSD1ByZXZpb3VzUGF5bG9hZDpforsYB0NvbW1hbmSyuxgQQ29tcGxldGVT'
|
||||
'bmFwc2hvdMK7GBFzdG9jay5TbmFwc2hvdHRlZNK7GBJzdG9jayxnZXRBY3RvcklEKCnquxgRU2'
|
||||
'5hcHNob3RDb21wbGV0ZWQ=');
|
||||
|
||||
2216
lib/actorInput.pb.dart
Normal file
2216
lib/actorInput.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
11
lib/actorInput.pbenum.dart
Normal file
11
lib/actorInput.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
179
lib/actorInput.pbgrpc.dart
Normal file
179
lib/actorInput.pbgrpc.dart
Normal file
@@ -0,0 +1,179 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'actorInput.pb.dart' as $35;
|
||||
|
||||
export 'actorInput.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ActorInputAPI')
|
||||
class ActorInputAPIClient extends $grpc.Client {
|
||||
static final _$created = $grpc.ClientMethod<$35.ActorCreatedRequest, $35.ActorCreatedResponse>(
|
||||
'/api.ActorInputAPI/Created',
|
||||
($35.ActorCreatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorCreatedResponse.fromBuffer(value));
|
||||
static final _$deleted = $grpc.ClientMethod<$35.ActorDeletedRequest, $35.ActorDeletedResponse>(
|
||||
'/api.ActorInputAPI/Deleted',
|
||||
($35.ActorDeletedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorDeletedResponse.fromBuffer(value));
|
||||
static final _$snapshotCompleted = $grpc.ClientMethod<$35.ActorSnapshotCompletedRequest, $35.ActorSnapshotCompletedResponse>(
|
||||
'/api.ActorInputAPI/SnapshotCompleted',
|
||||
($35.ActorSnapshotCompletedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorSnapshotCompletedResponse.fromBuffer(value));
|
||||
static final _$attachmentAdded = $grpc.ClientMethod<$35.ActorAttachmentAddedRequest, $35.ActorAttachmentAddedResponse>(
|
||||
'/api.ActorInputAPI/AttachmentAdded',
|
||||
($35.ActorAttachmentAddedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorAttachmentAddedResponse.fromBuffer(value));
|
||||
static final _$attachmentRemoved = $grpc.ClientMethod<$35.ActorAttachmentRemovedRequest, $35.ActorAttachmentRemovedResponse>(
|
||||
'/api.ActorInputAPI/AttachmentRemoved',
|
||||
($35.ActorAttachmentRemovedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorAttachmentRemovedResponse.fromBuffer(value));
|
||||
static final _$claimAdded = $grpc.ClientMethod<$35.ActorClaimAddedRequest, $35.ActorClaimAddedResponse>(
|
||||
'/api.ActorInputAPI/ClaimAdded',
|
||||
($35.ActorClaimAddedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorClaimAddedResponse.fromBuffer(value));
|
||||
static final _$metaDataUpdated = $grpc.ClientMethod<$35.ActorMetaDataUpdatedRequest, $35.ActorMetaDataUpdatedResponse>(
|
||||
'/api.ActorInputAPI/MetaDataUpdated',
|
||||
($35.ActorMetaDataUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $35.ActorMetaDataUpdatedResponse.fromBuffer(value));
|
||||
|
||||
ActorInputAPIClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorCreatedResponse> created($35.ActorCreatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$created, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorDeletedResponse> deleted($35.ActorDeletedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleted, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorSnapshotCompletedResponse> snapshotCompleted($35.ActorSnapshotCompletedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$snapshotCompleted, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorAttachmentAddedResponse> attachmentAdded($35.ActorAttachmentAddedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$attachmentAdded, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorAttachmentRemovedResponse> attachmentRemoved($35.ActorAttachmentRemovedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$attachmentRemoved, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorClaimAddedResponse> claimAdded($35.ActorClaimAddedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$claimAdded, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$35.ActorMetaDataUpdatedResponse> metaDataUpdated($35.ActorMetaDataUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$metaDataUpdated, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ActorInputAPI')
|
||||
abstract class ActorInputAPIServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ActorInputAPI';
|
||||
|
||||
ActorInputAPIServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorCreatedRequest, $35.ActorCreatedResponse>(
|
||||
'Created',
|
||||
created_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorCreatedRequest.fromBuffer(value),
|
||||
($35.ActorCreatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorDeletedRequest, $35.ActorDeletedResponse>(
|
||||
'Deleted',
|
||||
deleted_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorDeletedRequest.fromBuffer(value),
|
||||
($35.ActorDeletedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorSnapshotCompletedRequest, $35.ActorSnapshotCompletedResponse>(
|
||||
'SnapshotCompleted',
|
||||
snapshotCompleted_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorSnapshotCompletedRequest.fromBuffer(value),
|
||||
($35.ActorSnapshotCompletedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorAttachmentAddedRequest, $35.ActorAttachmentAddedResponse>(
|
||||
'AttachmentAdded',
|
||||
attachmentAdded_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorAttachmentAddedRequest.fromBuffer(value),
|
||||
($35.ActorAttachmentAddedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorAttachmentRemovedRequest, $35.ActorAttachmentRemovedResponse>(
|
||||
'AttachmentRemoved',
|
||||
attachmentRemoved_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorAttachmentRemovedRequest.fromBuffer(value),
|
||||
($35.ActorAttachmentRemovedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorClaimAddedRequest, $35.ActorClaimAddedResponse>(
|
||||
'ClaimAdded',
|
||||
claimAdded_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorClaimAddedRequest.fromBuffer(value),
|
||||
($35.ActorClaimAddedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$35.ActorMetaDataUpdatedRequest, $35.ActorMetaDataUpdatedResponse>(
|
||||
'MetaDataUpdated',
|
||||
metaDataUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $35.ActorMetaDataUpdatedRequest.fromBuffer(value),
|
||||
($35.ActorMetaDataUpdatedResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorCreatedResponse> created_Pre($grpc.ServiceCall call, $async.Future<$35.ActorCreatedRequest> request) async {
|
||||
return created(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorDeletedResponse> deleted_Pre($grpc.ServiceCall call, $async.Future<$35.ActorDeletedRequest> request) async {
|
||||
return deleted(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorSnapshotCompletedResponse> snapshotCompleted_Pre($grpc.ServiceCall call, $async.Future<$35.ActorSnapshotCompletedRequest> request) async {
|
||||
return snapshotCompleted(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall call, $async.Future<$35.ActorAttachmentAddedRequest> request) async {
|
||||
return attachmentAdded(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall call, $async.Future<$35.ActorAttachmentRemovedRequest> request) async {
|
||||
return attachmentRemoved(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorClaimAddedResponse> claimAdded_Pre($grpc.ServiceCall call, $async.Future<$35.ActorClaimAddedRequest> request) async {
|
||||
return claimAdded(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall call, $async.Future<$35.ActorMetaDataUpdatedRequest> request) async {
|
||||
return metaDataUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$35.ActorCreatedResponse> created($grpc.ServiceCall call, $35.ActorCreatedRequest request);
|
||||
$async.Future<$35.ActorDeletedResponse> deleted($grpc.ServiceCall call, $35.ActorDeletedRequest request);
|
||||
$async.Future<$35.ActorSnapshotCompletedResponse> snapshotCompleted($grpc.ServiceCall call, $35.ActorSnapshotCompletedRequest request);
|
||||
$async.Future<$35.ActorAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $35.ActorAttachmentAddedRequest request);
|
||||
$async.Future<$35.ActorAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $35.ActorAttachmentRemovedRequest request);
|
||||
$async.Future<$35.ActorClaimAddedResponse> claimAdded($grpc.ServiceCall call, $35.ActorClaimAddedRequest request);
|
||||
$async.Future<$35.ActorMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $35.ActorMetaDataUpdatedRequest request);
|
||||
}
|
||||
534
lib/actorInput.pbjson.dart
Normal file
534
lib/actorInput.pbjson.dart
Normal file
@@ -0,0 +1,534 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use actorCreatedPayloadDescriptor instead')
|
||||
const ActorCreatedPayload$json = {
|
||||
'1': 'ActorCreatedPayload',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'IdType', '3': 2, '4': 1, '5': 14, '6': '.api.IdType', '8': {}, '10': 'IdType'},
|
||||
{'1': 'MetaData', '3': 3, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||
{'1': 'Address', '3': 4, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
|
||||
{'1': 'PartnerID', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'PartnerID'},
|
||||
{'1': 'AdditionalInformation', '3': 15, '4': 1, '5': 9, '10': 'AdditionalInformation'},
|
||||
{'1': 'Typology', '3': 10, '4': 1, '5': 14, '6': '.api.ActorTypology', '10': 'Typology'},
|
||||
{'1': 'Emails', '3': 12, '4': 3, '5': 9, '8': {}, '10': 'Emails'},
|
||||
{'1': 'Phones', '3': 13, '4': 3, '5': 9, '8': {}, '10': 'Phones'},
|
||||
{'1': 'ManagedStock', '3': 14, '4': 1, '5': 8, '8': {}, '10': 'ManagedStock'},
|
||||
{'1': 'IsCarrier', '3': 16, '4': 1, '5': 8, '8': {}, '10': 'IsCarrier'},
|
||||
{'1': 'CarrierServices', '3': 17, '4': 3, '5': 11, '6': '.api.CarrierService', '8': {}, '10': 'CarrierServices'},
|
||||
{'1': 'IsShipToConnected', '3': 18, '4': 1, '5': 8, '10': 'IsShipToConnected'},
|
||||
{'1': 'IsShipFromConnected', '3': 19, '4': 1, '5': 8, '10': 'IsShipFromConnected'},
|
||||
{'1': 'ShipToPartnerAppID', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'ShipToPartnerAppID'},
|
||||
{'1': 'ShipFromPartnerAppID', '3': 21, '4': 1, '5': 9, '8': {}, '10': 'ShipFromPartnerAppID'},
|
||||
{'1': 'PhotoURI', '3': 26, '4': 1, '5': 9, '8': {}, '10': 'PhotoURI'},
|
||||
{'1': 'ConnectionIdentifierPrefixes', '3': 28, '4': 3, '5': 9, '8': {}, '10': 'ConnectionIdentifierPrefixes'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorCreatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCreatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckNyZWF0ZWRQYXlsb2FkEiMKBE5hbWUYASABKAlCD5JBDDIKQWN0b3IgTmFtZVIETm'
|
||||
'FtZRJRCgZJZFR5cGUYAiABKA4yCy5hcGkuSWRUeXBlQizKwhgUChIKASoSDWdlbmVyYXRlZFRl'
|
||||
'eHTawhgQCg4KASoSCXNob3J0VGV4dFIGSWRUeXBlEsoBCghNZXRhRGF0YRgDIAMoCzIULmFwaS'
|
||||
'5NZXRhZGF0YUVsZW1lbnRClwGSQYgBMoUBTWV0YWRhdGEgYXJlIGNoYXJhY3RlcmlzdGljcyBz'
|
||||
'cGVjaWZpYyB0byB0aGUgcHJvamVjdC4gVGhleSBjYW4gYmUgb2Ygc2V2ZXJhbCBkYXRhIGZvcm'
|
||||
'0gKHN0cmluZywgaW50ZWdlciwgZmxvYXQsIGJvb2xlYW4gb3IgdGltZXN0YW1wKcDBGAHqwRgD'
|
||||
'S2V5UghNZXRhRGF0YRImCgdBZGRyZXNzGAQgASgLMgwuYXBpLkFkZHJlc3NSB0FkZHJlc3MSQA'
|
||||
'oJUGFydG5lcklEGAYgASgJQiKSQRQyEkV4aXN0aW5nIFBhcnRuZXJJRNrBGAdQYXJ0bmVyUglQ'
|
||||
'YXJ0bmVySUQSNAoVQWRkaXRpb25hbEluZm9ybWF0aW9uGA8gASgJUhVBZGRpdGlvbmFsSW5mb3'
|
||||
'JtYXRpb24SLgoIVHlwb2xvZ3kYCiABKA4yEi5hcGkuQWN0b3JUeXBvbG9neVIIVHlwb2xvZ3kS'
|
||||
'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 = {
|
||||
'1': 'ActorCreatedEvent',
|
||||
'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.ActorCreatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorCreatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCreatedEventDescriptor = $convert.base64Decode(
|
||||
'ChFBY3RvckNyZWF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCP'
|
||||
'pCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhABUgJJ'
|
||||
'RBI8CgdQYXlsb2FkGAMgASgLMhguYXBpLkFjdG9yQ3JlYXRlZFBheWxvYWRCCPpCBYoBAhABUg'
|
||||
'dQYXlsb2FkOliSQSwKKtIBBkhlYWRlctIBCEVudGl0eUlE0gETQWN0b3JDcmVhdGVkUGF5bG9h'
|
||||
'ZKK7GAVFdmVudLq7GAdDcmVhdGVk2rsYEWNoZWNrUGFydG5lckFwcElk');
|
||||
|
||||
@$core.Deprecated('Use actorCreatedRequestDescriptor instead')
|
||||
const ActorCreatedRequest$json = {
|
||||
'1': 'ActorCreatedRequest',
|
||||
'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.ActorCreatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorCreatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCreatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckNyZWF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
|
||||
'+kIFigECEAFSAklEEjwKB1BheWxvYWQYAyABKAsyGC5hcGkuQWN0b3JDcmVhdGVkUGF5bG9hZE'
|
||||
'II+kIFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1Jl'
|
||||
'cXVlc3S6uxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorCreatedResponseDescriptor instead')
|
||||
const ActorCreatedResponse$json = {
|
||||
'1': 'ActorCreatedResponse',
|
||||
'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 `ActorCreatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorCreatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChRBY3RvckNyZWF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG9uc2VIZW'
|
||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
||||
'Zbq7GAdDcmVhdGVk');
|
||||
|
||||
@$core.Deprecated('Use actorDeletedPayloadDescriptor instead')
|
||||
const ActorDeletedPayload$json = {
|
||||
'1': 'ActorDeletedPayload',
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorDeletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorDeletedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckRlbGV0ZWRQYXlsb2FkOiySQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GA'
|
||||
'G6uxgHRGVsZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorDeletedEventDescriptor instead')
|
||||
const ActorDeletedEvent$json = {
|
||||
'1': 'ActorDeletedEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '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.ActorDeletedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorDeletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorDeletedEventDescriptor = $convert.base64Decode(
|
||||
'ChFBY3RvckRlbGV0ZWRFdmVudBIoCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSBk'
|
||||
'hlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSMgoHUGF5bG9hZBgDIAEoCzIY'
|
||||
'LmFwaS5BY3RvckRlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOhSiuxgFRXZlbnS6uxgHRGVsZXRlZA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use actorDeletedRequestDescriptor instead')
|
||||
const ActorDeletedRequest$json = {
|
||||
'1': 'ActorDeletedRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '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.ActorDeletedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorDeletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorDeletedRequestDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckRlbGV0ZWRSZXF1ZXN0EjEKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||
'VjdEhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBIyCgdQYXls'
|
||||
'b2FkGAMgASgLMhguYXBpLkFjdG9yRGVsZXRlZFBheWxvYWRSB1BheWxvYWQ6FqK7GAdSZXF1ZX'
|
||||
'N0ursYB0RlbGV0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorDeletedResponseDescriptor instead')
|
||||
const ActorDeletedResponse$json = {
|
||||
'1': 'ActorDeletedResponse',
|
||||
'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 `ActorDeletedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorDeletedResponseDescriptor = $convert.base64Decode(
|
||||
'ChRBY3RvckRlbGV0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG9uc2VIZW'
|
||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
||||
'Zbq7GAdEZWxldGVk');
|
||||
|
||||
@$core.Deprecated('Use actorSnapshotCompletedPayloadDescriptor instead')
|
||||
const ActorSnapshotCompletedPayload$json = {
|
||||
'1': 'ActorSnapshotCompletedPayload',
|
||||
'2': [
|
||||
{'1': 'Snapshot', '3': 1, '4': 1, '5': 11, '6': '.api.ActorSnapshot', '8': {}, '10': 'Snapshot'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorSnapshotCompletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorSnapshotCompletedPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUGF5bG9hZBI4CghTbmFwc2hvdBgBIAEoCzISLmFwaS'
|
||||
'5BY3RvclNuYXBzaG90Qgj6QgWKAQIQAVIIU25hcHNob3Q6RJJBDQoL0gEIU25hcHNob3SiuxgF'
|
||||
'RXZlbnSouxgBursYEVNuYXBzaG90Q29tcGxldGVk2rsYDlJlamVjdFNuYXBzaG90');
|
||||
|
||||
@$core.Deprecated('Use actorSnapshotCompletedEventDescriptor instead')
|
||||
const ActorSnapshotCompletedEvent$json = {
|
||||
'1': 'ActorSnapshotCompletedEvent',
|
||||
'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.ActorSnapshotCompletedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorSnapshotCompletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorSnapshotCompletedEventDescriptor = $convert.base64Decode(
|
||||
'ChtBY3RvclNuYXBzaG90Q29tcGxldGVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
|
||||
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
|
||||
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5BY3RvclNuYXBzaG90Q29tcGxldG'
|
||||
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6HqK7GAVFdmVudLq7GBFTbmFwc2hvdENvbXBs'
|
||||
'ZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorSnapshotCompletedRequestDescriptor instead')
|
||||
const ActorSnapshotCompletedRequest$json = {
|
||||
'1': 'ActorSnapshotCompletedRequest',
|
||||
'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.ActorSnapshotCompletedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorSnapshotCompletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorSnapshotCompletedRequestDescriptor = $convert.base64Decode(
|
||||
'Ch1BY3RvclNuYXBzaG90Q29tcGxldGVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
|
||||
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yU25hcH'
|
||||
'Nob3RDb21wbGV0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
|
||||
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFTbmFwc2hvdENvbXBsZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorSnapshotCompletedResponseDescriptor instead')
|
||||
const ActorSnapshotCompletedResponse$json = {
|
||||
'1': 'ActorSnapshotCompletedResponse',
|
||||
'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 `ActorSnapshotCompletedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorSnapshotCompletedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch5BY3RvclNuYXBzaG90Q29tcGxldGVkUmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMhMuYXBpLl'
|
||||
'Jlc3BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEOiGi'
|
||||
'uxgIUmVzcG9uc2W6uxgRU25hcHNob3RDb21wbGV0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentAddedPayloadDescriptor instead')
|
||||
const ActorAttachmentAddedPayload$json = {
|
||||
'1': 'ActorAttachmentAddedPayload',
|
||||
'2': [
|
||||
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentAddedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChtBY3RvckF0dGFjaG1lbnRBZGRlZFBheWxvYWQSYwoLQXR0YWNobWVudHMYASADKAsyFi5hcG'
|
||||
'kuQXR0YWNobWVudFN1bW1hcnlCKZJBJjIkTnVtYmVyIG9mIGF0dGFjaG1lbnRzIGFkZGVkIHBl'
|
||||
'ciB0eXBlUgtBdHRhY2htZW50czogorsYBUV2ZW50qLsYAbq7GA9BdHRhY2htZW50QWRkZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentAddedEventDescriptor instead')
|
||||
const ActorAttachmentAddedEvent$json = {
|
||||
'1': 'ActorAttachmentAddedEvent',
|
||||
'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.ActorAttachmentAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentAddedEventDescriptor = $convert.base64Decode(
|
||||
'ChlBY3RvckF0dGFjaG1lbnRBZGRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQWN0b3JBdHRhY2htZW50QWRkZWRQYX'
|
||||
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRlZNq7'
|
||||
'GA1hZGRBdHRhY2htZW50');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentAddedRequestDescriptor instead')
|
||||
const ActorAttachmentAddedRequest$json = {
|
||||
'1': 'ActorAttachmentAddedRequest',
|
||||
'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.ActorAttachmentAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentAddedRequestDescriptor = $convert.base64Decode(
|
||||
'ChtBY3RvckF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
|
||||
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3RvckF0dGFjaG'
|
||||
'1lbnRBZGRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
|
||||
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentAddedResponseDescriptor instead')
|
||||
const ActorAttachmentAddedResponse$json = {
|
||||
'1': 'ActorAttachmentAddedResponse',
|
||||
'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 `ActorAttachmentAddedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentAddedResponseDescriptor = $convert.base64Decode(
|
||||
'ChxBY3RvckF0dGFjaG1lbnRBZGRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZX'
|
||||
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
|
||||
'CFJlc3BvbnNlursYD0F0dGFjaG1lbnRBZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentRemovedPayloadDescriptor instead')
|
||||
const ActorAttachmentRemovedPayload$json = {
|
||||
'1': 'ActorAttachmentRemovedPayload',
|
||||
'2': [
|
||||
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentRemovedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentRemovedPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch1BY3RvckF0dGFjaG1lbnRSZW1vdmVkUGF5bG9hZBJlCgtBdHRhY2htZW50cxgBIAMoCzIWLm'
|
||||
'FwaS5BdHRhY2htZW50U3VtbWFyeUIrkkEoMiZOdW1iZXIgb2YgYXR0YWNobWVudHMgcmVtb3Zl'
|
||||
'ZCBwZXIgdHlwZVILQXR0YWNobWVudHM6IqK7GAVFdmVudKi7GAG6uxgRQXR0YWNobWVudFJlbW'
|
||||
'92ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentRemovedEventDescriptor instead')
|
||||
const ActorAttachmentRemovedEvent$json = {
|
||||
'1': 'ActorAttachmentRemovedEvent',
|
||||
'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.ActorAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentRemovedEventDescriptor = $convert.base64Decode(
|
||||
'ChtBY3RvckF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
|
||||
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
|
||||
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5BY3RvckF0dGFjaG1lbnRSZW1vdm'
|
||||
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50UmVt'
|
||||
'b3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentRemovedRequestDescriptor instead')
|
||||
const ActorAttachmentRemovedRequest$json = {
|
||||
'1': 'ActorAttachmentRemovedRequest',
|
||||
'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.ActorAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorAttachmentRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentRemovedRequestDescriptor = $convert.base64Decode(
|
||||
'Ch1BY3RvckF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
|
||||
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkFjdG9yQXR0YW'
|
||||
'NobWVudFJlbW92ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
|
||||
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorAttachmentRemovedResponseDescriptor instead')
|
||||
const ActorAttachmentRemovedResponse$json = {
|
||||
'1': 'ActorAttachmentRemovedResponse',
|
||||
'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 `ActorAttachmentRemovedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorAttachmentRemovedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch5BY3RvckF0dGFjaG1lbnRSZW1vdmVkUmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMhMuYXBpLl'
|
||||
'Jlc3BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEOiGi'
|
||||
'uxgIUmVzcG9uc2W6uxgRQXR0YWNobWVudFJlbW92ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorClaimAddedPayloadDescriptor instead')
|
||||
const ActorClaimAddedPayload$json = {
|
||||
'1': 'ActorClaimAddedPayload',
|
||||
'2': [
|
||||
{'1': 'Claims', '3': 1, '4': 3, '5': 11, '6': '.api.ClaimSummary', '8': {}, '10': 'Claims'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorClaimAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorClaimAddedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChZBY3RvckNsYWltQWRkZWRQYXlsb2FkEl4KBkNsYWltcxgBIAMoCzIRLmFwaS5DbGFpbVN1bW'
|
||||
'1hcnlCM5JBITIfTnVtYmVyIG9mIGNsYWltcyBhZGRlZCBwZXIgdHlwZerBGAtDbGFpbVR5cGVJ'
|
||||
'RFIGQ2xhaW1zOhuiuxgFRXZlbnSouxgBursYCkNsYWltQWRkZWQ=');
|
||||
|
||||
@$core.Deprecated('Use actorClaimAddedEventDescriptor instead')
|
||||
const ActorClaimAddedEvent$json = {
|
||||
'1': 'ActorClaimAddedEvent',
|
||||
'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.ActorClaimAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorClaimAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorClaimAddedEventDescriptor = $convert.base64Decode(
|
||||
'ChRBY3RvckNsYWltQWRkZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZX'
|
||||
'JCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhAB'
|
||||
'UgJJRBI/CgdQYXlsb2FkGAMgASgLMhsuYXBpLkFjdG9yQ2xhaW1BZGRlZFBheWxvYWRCCPpCBY'
|
||||
'oBAhABUgdQYXlsb2FkOiOiuxgFRXZlbnS6uxgKQ2xhaW1BZGRlZNq7GAhhZGRDbGFpbQ==');
|
||||
|
||||
@$core.Deprecated('Use actorClaimAddedRequestDescriptor instead')
|
||||
const ActorClaimAddedRequest$json = {
|
||||
'1': 'ActorClaimAddedRequest',
|
||||
'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.ActorClaimAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorClaimAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorClaimAddedRequestDescriptor = $convert.base64Decode(
|
||||
'ChZBY3RvckNsYWltQWRkZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
|
||||
'REII+kIFigECEAFSAklEEj8KB1BheWxvYWQYAyABKAsyGy5hcGkuQWN0b3JDbGFpbUFkZGVkUG'
|
||||
'F5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6NpJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2Fk'
|
||||
'orsYB1JlcXVlc3S6uxgKQ2xhaW1BZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorClaimAddedResponseDescriptor instead')
|
||||
const ActorClaimAddedResponse$json = {
|
||||
'1': 'ActorClaimAddedResponse',
|
||||
'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 `ActorClaimAddedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorClaimAddedResponseDescriptor = $convert.base64Decode(
|
||||
'ChdBY3RvckNsYWltQWRkZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG9uc2'
|
||||
'VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6GqK7GAhSZXNw'
|
||||
'b25zZbq7GApDbGFpbUFkZGVk');
|
||||
|
||||
@$core.Deprecated('Use actorMetaDataUpdatedPayloadDescriptor instead')
|
||||
const ActorMetaDataUpdatedPayload$json = {
|
||||
'1': 'ActorMetaDataUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'MetaData', '3': 1, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorMetaDataUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorMetaDataUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChtBY3Rvck1ldGFEYXRhVXBkYXRlZFBheWxvYWQSygEKCE1ldGFEYXRhGAEgAygLMhQuYXBpLk'
|
||||
'1ldGFkYXRhRWxlbWVudEKXAZJBiAEyhQFNZXRhZGF0YSBhcmUgY2hhcmFjdGVyaXN0aWNzIHNw'
|
||||
'ZWNpZmljIHRvIHRoZSBwcm9qZWN0LiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm9ybS'
|
||||
'Aoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANL'
|
||||
'ZXlSCE1ldGFEYXRhOiCiuxgFRXZlbnSouxgBursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorMetaDataUpdatedEventDescriptor instead')
|
||||
const ActorMetaDataUpdatedEvent$json = {
|
||||
'1': 'ActorMetaDataUpdatedEvent',
|
||||
'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.ActorMetaDataUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorMetaDataUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorMetaDataUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChlBY3Rvck1ldGFEYXRhVXBkYXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQWN0b3JNZXRhRGF0YVVwZGF0ZWRQYX'
|
||||
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDocorsYBUV2ZW50ursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorMetaDataUpdatedRequestDescriptor instead')
|
||||
const ActorMetaDataUpdatedRequest$json = {
|
||||
'1': 'ActorMetaDataUpdatedRequest',
|
||||
'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.ActorMetaDataUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorMetaDataUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorMetaDataUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChtBY3Rvck1ldGFEYXRhVXBkYXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
|
||||
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5BY3Rvck1ldGFEYX'
|
||||
'RhVXBkYXRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
|
||||
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use actorMetaDataUpdatedResponseDescriptor instead')
|
||||
const ActorMetaDataUpdatedResponse$json = {
|
||||
'1': 'ActorMetaDataUpdatedResponse',
|
||||
'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 `ActorMetaDataUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorMetaDataUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChxBY3Rvck1ldGFEYXRhVXBkYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZX'
|
||||
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
|
||||
'CFJlc3BvbnNlursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
419
lib/actorQuery.pb.dart
Normal file
419
lib/actorQuery.pb.dart
Normal file
@@ -0,0 +1,419 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $77;
|
||||
import 'shared.pb.dart' as $28;
|
||||
|
||||
class ActorByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ActorByIdQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.Iterable<$28.EntityID>? iDs,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iDs != null) {
|
||||
$result.iDs.addAll(iDs);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..pc<$28.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $28.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByIdQuery create() => ActorByIdQuery._();
|
||||
ActorByIdQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByIdQuery> createRepeated() => $pb.PbList<ActorByIdQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByIdQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByIdQuery>(create);
|
||||
static ActorByIdQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.EntityID> get iDs => $_getList(1);
|
||||
}
|
||||
|
||||
class ActorByIdResult extends $pb.GeneratedMessage {
|
||||
factory ActorByIdResult({
|
||||
$28.ResultHeader? header,
|
||||
$core.Iterable<$77.Actor>? objects,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (objects != null) {
|
||||
$result.objects.addAll(objects);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.ResultHeader.create)
|
||||
..pc<$77.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $77.Actor.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByIdResult create() => ActorByIdResult._();
|
||||
ActorByIdResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByIdResult> createRepeated() => $pb.PbList<ActorByIdResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByIdResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByIdResult>(create);
|
||||
static ActorByIdResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.ResultHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$77.Actor> get objects => $_getList(1);
|
||||
}
|
||||
|
||||
class ActorByFilterQuery extends $pb.GeneratedMessage {
|
||||
factory ActorByFilterQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$28.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);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$28.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $28.BlockFilter.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByFilterQuery create() => ActorByFilterQuery._();
|
||||
ActorByFilterQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByFilterQuery> createRepeated() => $pb.PbList<ActorByFilterQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByFilterQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByFilterQuery>(create);
|
||||
static ActorByFilterQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// Number of maximum result
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get limitFilter => $_getSZ(1);
|
||||
@$pb.TagNumber(4)
|
||||
set limitFilter($core.String v) { $_setString(1, v); }
|
||||
@$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 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, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$28.BlockFilter> get blockFilters => $_getList(3);
|
||||
}
|
||||
|
||||
class ActorByFilterResult extends $pb.GeneratedMessage {
|
||||
factory ActorByFilterResult({
|
||||
$28.ResultHeader? header,
|
||||
$core.Iterable<$77.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;
|
||||
}
|
||||
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<$28.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.ResultHeader.create)
|
||||
..pc<$77.Actor>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $77.Actor.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByFilterResult create() => ActorByFilterResult._();
|
||||
ActorByFilterResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByFilterResult> createRepeated() => $pb.PbList<ActorByFilterResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByFilterResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByFilterResult>(create);
|
||||
static ActorByFilterResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.ResultHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$77.Actor> get objects => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set queryContext($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearQueryContext() => clearField(3);
|
||||
}
|
||||
|
||||
class ActorByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory ActorByMatchQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.Iterable<$28.BlockFilter>? blockFilters,
|
||||
$core.Iterable<$28.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);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..pc<$28.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $28.BlockFilter.create)
|
||||
..pc<$28.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $28.MatchField.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByMatchQuery create() => ActorByMatchQuery._();
|
||||
ActorByMatchQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByMatchQuery> createRepeated() => $pb.PbList<ActorByMatchQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByMatchQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByMatchQuery>(create);
|
||||
static ActorByMatchQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// 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)
|
||||
$core.List<$28.BlockFilter> get blockFilters => $_getList(1);
|
||||
|
||||
/// MatchField list structure, for FindMatching query
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$28.MatchField> get matchFields => $_getList(2);
|
||||
}
|
||||
|
||||
class ActorByMatchResult extends $pb.GeneratedMessage {
|
||||
factory ActorByMatchResult({
|
||||
$core.Iterable<$28.MatchFieldResult>? matchResults,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (matchResults != null) {
|
||||
$result.matchResults.addAll(matchResults);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $28.MatchFieldResult.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByMatchResult create() => ActorByMatchResult._();
|
||||
ActorByMatchResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorByMatchResult> createRepeated() => $pb.PbList<ActorByMatchResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorByMatchResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorByMatchResult>(create);
|
||||
static ActorByMatchResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.MatchFieldResult> get matchResults => $_getList(0);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/actorQuery.pbenum.dart
Normal file
11
lib/actorQuery.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
160
lib/actorQuery.pbgrpc.dart
Normal file
160
lib/actorQuery.pbgrpc.dart
Normal file
@@ -0,0 +1,160 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'actorQuery.pb.dart' as $27;
|
||||
import 'shared.pb.dart' as $28;
|
||||
|
||||
export 'actorQuery.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ActorQuery')
|
||||
class ActorQueryClient extends $grpc.Client {
|
||||
static final _$getByIds = $grpc.ClientMethod<$27.ActorByIdQuery, $27.ActorByIdResult>(
|
||||
'/api.ActorQuery/GetByIds',
|
||||
($27.ActorByIdQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $27.ActorByIdResult.fromBuffer(value));
|
||||
static final _$find = $grpc.ClientMethod<$27.ActorByFilterQuery, $27.ActorByFilterResult>(
|
||||
'/api.ActorQuery/Find',
|
||||
($27.ActorByFilterQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $27.ActorByFilterResult.fromBuffer(value));
|
||||
static final _$findMatchingFieldValues = $grpc.ClientMethod<$27.ActorByMatchQuery, $27.ActorByMatchResult>(
|
||||
'/api.ActorQuery/FindMatchingFieldValues',
|
||||
($27.ActorByMatchQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $27.ActorByMatchResult.fromBuffer(value));
|
||||
static final _$findMatchingFieldElements = $grpc.ClientMethod<$28.ElementByMatchQuery, $28.ElementByMatchResult>(
|
||||
'/api.ActorQuery/FindMatchingFieldElements',
|
||||
($28.ElementByMatchQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.ElementByMatchResult.fromBuffer(value));
|
||||
static final _$extract = $grpc.ClientMethod<$28.ExtractQuery, $28.ExtractResult>(
|
||||
'/api.ActorQuery/Extract',
|
||||
($28.ExtractQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.ExtractResult.fromBuffer(value));
|
||||
static final _$countLines = $grpc.ClientMethod<$28.CountLinesQuery, $28.CountLinesResult>(
|
||||
'/api.ActorQuery/CountLines',
|
||||
($28.CountLinesQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.CountLinesResult.fromBuffer(value));
|
||||
|
||||
ActorQueryClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$27.ActorByIdResult> getByIds($27.ActorByIdQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getByIds, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$27.ActorByFilterResult> find($27.ActorByFilterQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$find, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$27.ActorByMatchResult> findMatchingFieldValues($27.ActorByMatchQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.ElementByMatchResult> findMatchingFieldElements($28.ElementByMatchQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.ExtractResult> extract($28.ExtractQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$extract, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.CountLinesResult> countLines($28.CountLinesQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$countLines, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ActorQuery')
|
||||
abstract class ActorQueryServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ActorQuery';
|
||||
|
||||
ActorQueryServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$27.ActorByIdQuery, $27.ActorByIdResult>(
|
||||
'GetByIds',
|
||||
getByIds_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $27.ActorByIdQuery.fromBuffer(value),
|
||||
($27.ActorByIdResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$27.ActorByFilterQuery, $27.ActorByFilterResult>(
|
||||
'Find',
|
||||
find_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $27.ActorByFilterQuery.fromBuffer(value),
|
||||
($27.ActorByFilterResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$27.ActorByMatchQuery, $27.ActorByMatchResult>(
|
||||
'FindMatchingFieldValues',
|
||||
findMatchingFieldValues_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $27.ActorByMatchQuery.fromBuffer(value),
|
||||
($27.ActorByMatchResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.ElementByMatchQuery, $28.ElementByMatchResult>(
|
||||
'FindMatchingFieldElements',
|
||||
findMatchingFieldElements_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.ElementByMatchQuery.fromBuffer(value),
|
||||
($28.ElementByMatchResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.ExtractQuery, $28.ExtractResult>(
|
||||
'Extract',
|
||||
extract_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.ExtractQuery.fromBuffer(value),
|
||||
($28.ExtractResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.CountLinesQuery, $28.CountLinesResult>(
|
||||
'CountLines',
|
||||
countLines_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.CountLinesQuery.fromBuffer(value),
|
||||
($28.CountLinesResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$27.ActorByIdResult> getByIds_Pre($grpc.ServiceCall call, $async.Future<$27.ActorByIdQuery> request) async {
|
||||
return getByIds(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$27.ActorByFilterResult> find_Pre($grpc.ServiceCall call, $async.Future<$27.ActorByFilterQuery> request) async {
|
||||
return find(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$27.ActorByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall call, $async.Future<$27.ActorByMatchQuery> request) async {
|
||||
return findMatchingFieldValues(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall call, $async.Future<$28.ElementByMatchQuery> request) async {
|
||||
return findMatchingFieldElements(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.ExtractResult> extract_Pre($grpc.ServiceCall call, $async.Future<$28.ExtractQuery> request) async {
|
||||
return extract(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.CountLinesResult> countLines_Pre($grpc.ServiceCall call, $async.Future<$28.CountLinesQuery> request) async {
|
||||
return countLines(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$27.ActorByIdResult> getByIds($grpc.ServiceCall call, $27.ActorByIdQuery request);
|
||||
$async.Future<$27.ActorByFilterResult> find($grpc.ServiceCall call, $27.ActorByFilterQuery request);
|
||||
$async.Future<$27.ActorByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $27.ActorByMatchQuery request);
|
||||
$async.Future<$28.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $28.ElementByMatchQuery request);
|
||||
$async.Future<$28.ExtractResult> extract($grpc.ServiceCall call, $28.ExtractQuery request);
|
||||
$async.Future<$28.CountLinesResult> countLines($grpc.ServiceCall call, $28.CountLinesQuery request);
|
||||
}
|
||||
115
lib/actorQuery.pbjson.dart
Normal file
115
lib/actorQuery.pbjson.dart
Normal file
@@ -0,0 +1,115 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: actorQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use actorByIdQueryDescriptor instead')
|
||||
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.EntityID', '8': {}, '10': 'IDs'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByIdQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5BY3RvckJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
|
||||
@$core.Deprecated('Use actorByIdResultDescriptor instead')
|
||||
const ActorByIdResult$json = {
|
||||
'1': 'ActorByIdResult',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
|
||||
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Actor', '10': 'Objects'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByIdResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByIdResultDescriptor = $convert.base64Decode(
|
||||
'Cg9BY3RvckJ5SWRSZXN1bHQSKQoGSGVhZGVyGAEgASgLMhEuYXBpLlJlc3VsdEhlYWRlclIGSG'
|
||||
'VhZGVyEiQKB09iamVjdHMYAiADKAsyCi5hcGkuQWN0b3JSB09iamVjdHM6D5JBAgoAorsYBlJl'
|
||||
'c3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use actorByFilterQueryDescriptor instead')
|
||||
const ActorByFilterQuery$json = {
|
||||
'1': 'ActorByFilterQuery',
|
||||
'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByFilterQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByFilterQueryDescriptor = $convert.base64Decode(
|
||||
'ChJBY3RvckJ5RmlsdGVyUXVlcnkSPAoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
|
||||
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
|
||||
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
|
||||
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use actorByFilterResultDescriptor instead')
|
||||
const ActorByFilterResult$json = {
|
||||
'1': 'ActorByFilterResult',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
|
||||
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Actor', '10': 'Objects'},
|
||||
{'1': 'queryContext', '3': 3, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByFilterResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByFilterResultDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckJ5RmlsdGVyUmVzdWx0EikKBkhlYWRlchgBIAEoCzIRLmFwaS5SZXN1bHRIZWFkZX'
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkFjdG9yUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use actorByMatchQueryDescriptor instead')
|
||||
const ActorByMatchQuery$json = {
|
||||
'1': 'ActorByMatchQuery',
|
||||
'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByMatchQueryDescriptor = $convert.base64Decode(
|
||||
'ChFBY3RvckJ5TWF0Y2hRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgFIAMoCzIQLmFwaS5CbG9j'
|
||||
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEmkKC01hdGNoRmllbGRzGAYgAygLMg8uYXBpLk1hdGNoRm'
|
||||
'llbGRCNpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZSwgZm9yIEZpbmRNYXRjaGluZyBx'
|
||||
'dWVyeVILTWF0Y2hGaWVsZHM6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use actorByMatchResultDescriptor instead')
|
||||
const ActorByMatchResult$json = {
|
||||
'1': 'ActorByMatchResult',
|
||||
'2': [
|
||||
{'1': 'MatchResults', '3': 2, '4': 3, '5': 11, '6': '.api.MatchFieldResult', '10': 'MatchResults'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorByMatchResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorByMatchResultDescriptor = $convert.base64Decode(
|
||||
'ChJBY3RvckJ5TWF0Y2hSZXN1bHQSOQoMTWF0Y2hSZXN1bHRzGAIgAygLMhUuYXBpLk1hdGNoRm'
|
||||
'llbGRSZXN1bHRSDE1hdGNoUmVzdWx0cw==');
|
||||
|
||||
562
lib/adaptiveCard.pb.dart
Normal file
562
lib/adaptiveCard.pb.dart
Normal file
@@ -0,0 +1,562 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adaptiveCard.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class AdaptiveCard extends $pb.GeneratedMessage {
|
||||
factory AdaptiveCard({
|
||||
$core.String? name,
|
||||
$core.String? template,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (name != null) {
|
||||
$result.name = name;
|
||||
}
|
||||
if (template != null) {
|
||||
$result.template = template;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Template', protoName: 'Template')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdaptiveCard create() => AdaptiveCard._();
|
||||
AdaptiveCard createEmptyInstance() => create();
|
||||
static $pb.PbList<AdaptiveCard> createRepeated() => $pb.PbList<AdaptiveCard>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdaptiveCard getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdaptiveCard>(create);
|
||||
static AdaptiveCard? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get name => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
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)
|
||||
$core.String get template => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set template($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasTemplate() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearTemplate() => clearField(2);
|
||||
}
|
||||
|
||||
class ListAdaptiveCardRequest extends $pb.GeneratedMessage {
|
||||
factory ListAdaptiveCardRequest() => create();
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAdaptiveCardRequest create() => ListAdaptiveCardRequest._();
|
||||
ListAdaptiveCardRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAdaptiveCardRequest> createRepeated() => $pb.PbList<ListAdaptiveCardRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAdaptiveCardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAdaptiveCardRequest>(create);
|
||||
static ListAdaptiveCardRequest? _defaultInstance;
|
||||
}
|
||||
|
||||
class ListAdaptiveCardResult extends $pb.GeneratedMessage {
|
||||
factory ListAdaptiveCardResult({
|
||||
$core.Iterable<AdaptiveCard>? adaptiveCards,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (adaptiveCards != null) {
|
||||
$result.adaptiveCards.addAll(adaptiveCards);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAdaptiveCardResult create() => ListAdaptiveCardResult._();
|
||||
ListAdaptiveCardResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAdaptiveCardResult> createRepeated() => $pb.PbList<ListAdaptiveCardResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAdaptiveCardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAdaptiveCardResult>(create);
|
||||
static ListAdaptiveCardResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<AdaptiveCard> get adaptiveCards => $_getList(0);
|
||||
}
|
||||
|
||||
class GetAdaptiveCardRequest extends $pb.GeneratedMessage {
|
||||
factory GetAdaptiveCardRequest({
|
||||
$core.String? name,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (name != null) {
|
||||
$result.name = name;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAdaptiveCardRequest create() => GetAdaptiveCardRequest._();
|
||||
GetAdaptiveCardRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetAdaptiveCardRequest> createRepeated() => $pb.PbList<GetAdaptiveCardRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAdaptiveCardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAdaptiveCardRequest>(create);
|
||||
static GetAdaptiveCardRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get name => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set name($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearName() => clearField(1);
|
||||
}
|
||||
|
||||
class GetAdaptiveCardResult extends $pb.GeneratedMessage {
|
||||
factory GetAdaptiveCardResult({
|
||||
AdaptiveCard? adaptiveCard,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (adaptiveCard != null) {
|
||||
$result.adaptiveCard = adaptiveCard;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAdaptiveCardResult create() => GetAdaptiveCardResult._();
|
||||
GetAdaptiveCardResult createEmptyInstance() => create();
|
||||
static $pb.PbList<GetAdaptiveCardResult> createRepeated() => $pb.PbList<GetAdaptiveCardResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAdaptiveCardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAdaptiveCardResult>(create);
|
||||
static GetAdaptiveCardResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard get adaptiveCard => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set adaptiveCard(AdaptiveCard v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAdaptiveCard() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAdaptiveCard() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard ensureAdaptiveCard() => $_ensure(0);
|
||||
}
|
||||
|
||||
class CreateAdaptiveCardRequest extends $pb.GeneratedMessage {
|
||||
factory CreateAdaptiveCardRequest({
|
||||
$core.String? template,
|
||||
$core.String? name,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (template != null) {
|
||||
$result.template = template;
|
||||
}
|
||||
if (name != null) {
|
||||
$result.name = name;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAdaptiveCardRequest create() => CreateAdaptiveCardRequest._();
|
||||
CreateAdaptiveCardRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateAdaptiveCardRequest> createRepeated() => $pb.PbList<CreateAdaptiveCardRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAdaptiveCardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAdaptiveCardRequest>(create);
|
||||
static CreateAdaptiveCardRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get template => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set template($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasTemplate() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearTemplate() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get name => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set name($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearName() => clearField(2);
|
||||
}
|
||||
|
||||
class CreateAdaptiveCardResult extends $pb.GeneratedMessage {
|
||||
factory CreateAdaptiveCardResult({
|
||||
AdaptiveCard? adaptiveCard,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (adaptiveCard != null) {
|
||||
$result.adaptiveCard = adaptiveCard;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAdaptiveCardResult create() => CreateAdaptiveCardResult._();
|
||||
CreateAdaptiveCardResult createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateAdaptiveCardResult> createRepeated() => $pb.PbList<CreateAdaptiveCardResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAdaptiveCardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAdaptiveCardResult>(create);
|
||||
static CreateAdaptiveCardResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard get adaptiveCard => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set adaptiveCard(AdaptiveCard v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAdaptiveCard() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAdaptiveCard() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard ensureAdaptiveCard() => $_ensure(0);
|
||||
}
|
||||
|
||||
class UpdateAdaptiveCardRequest extends $pb.GeneratedMessage {
|
||||
factory UpdateAdaptiveCardRequest({
|
||||
AdaptiveCard? adaptiveCard,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (adaptiveCard != null) {
|
||||
$result.adaptiveCard = adaptiveCard;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAdaptiveCardRequest create() => UpdateAdaptiveCardRequest._();
|
||||
UpdateAdaptiveCardRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateAdaptiveCardRequest> createRepeated() => $pb.PbList<UpdateAdaptiveCardRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAdaptiveCardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateAdaptiveCardRequest>(create);
|
||||
static UpdateAdaptiveCardRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard get adaptiveCard => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set adaptiveCard(AdaptiveCard v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAdaptiveCard() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAdaptiveCard() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard ensureAdaptiveCard() => $_ensure(0);
|
||||
}
|
||||
|
||||
class UpdateAdaptiveCardResult extends $pb.GeneratedMessage {
|
||||
factory UpdateAdaptiveCardResult({
|
||||
AdaptiveCard? adaptiveCard,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (adaptiveCard != null) {
|
||||
$result.adaptiveCard = adaptiveCard;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAdaptiveCardResult create() => UpdateAdaptiveCardResult._();
|
||||
UpdateAdaptiveCardResult createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateAdaptiveCardResult> createRepeated() => $pb.PbList<UpdateAdaptiveCardResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAdaptiveCardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateAdaptiveCardResult>(create);
|
||||
static UpdateAdaptiveCardResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard get adaptiveCard => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set adaptiveCard(AdaptiveCard v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAdaptiveCard() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAdaptiveCard() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
AdaptiveCard ensureAdaptiveCard() => $_ensure(0);
|
||||
}
|
||||
|
||||
class DeleteAdaptiveCardRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteAdaptiveCardRequest({
|
||||
$core.String? name,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (name != null) {
|
||||
$result.name = name;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAdaptiveCardRequest create() => DeleteAdaptiveCardRequest._();
|
||||
DeleteAdaptiveCardRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAdaptiveCardRequest> createRepeated() => $pb.PbList<DeleteAdaptiveCardRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAdaptiveCardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAdaptiveCardRequest>(create);
|
||||
static DeleteAdaptiveCardRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get name => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set name($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearName() => clearField(1);
|
||||
}
|
||||
|
||||
class DeleteAdaptiveCardResult extends $pb.GeneratedMessage {
|
||||
factory DeleteAdaptiveCardResult() => create();
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAdaptiveCardResult create() => DeleteAdaptiveCardResult._();
|
||||
DeleteAdaptiveCardResult createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAdaptiveCardResult> createRepeated() => $pb.PbList<DeleteAdaptiveCardResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAdaptiveCardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAdaptiveCardResult>(create);
|
||||
static DeleteAdaptiveCardResult? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/adaptiveCard.pbenum.dart
Normal file
11
lib/adaptiveCard.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adaptiveCard.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
139
lib/adaptiveCard.pbgrpc.dart
Normal file
139
lib/adaptiveCard.pbgrpc.dart
Normal file
@@ -0,0 +1,139 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adaptiveCard.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'adaptiveCard.pb.dart' as $48;
|
||||
|
||||
export 'adaptiveCard.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.AdaptiveCardService')
|
||||
class AdaptiveCardServiceClient extends $grpc.Client {
|
||||
static final _$get = $grpc.ClientMethod<$48.GetAdaptiveCardRequest, $48.GetAdaptiveCardResult>(
|
||||
'/api.AdaptiveCardService/Get',
|
||||
($48.GetAdaptiveCardRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $48.GetAdaptiveCardResult.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$48.ListAdaptiveCardRequest, $48.ListAdaptiveCardResult>(
|
||||
'/api.AdaptiveCardService/List',
|
||||
($48.ListAdaptiveCardRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $48.ListAdaptiveCardResult.fromBuffer(value));
|
||||
static final _$create = $grpc.ClientMethod<$48.CreateAdaptiveCardRequest, $48.CreateAdaptiveCardResult>(
|
||||
'/api.AdaptiveCardService/Create',
|
||||
($48.CreateAdaptiveCardRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $48.CreateAdaptiveCardResult.fromBuffer(value));
|
||||
static final _$update = $grpc.ClientMethod<$48.UpdateAdaptiveCardRequest, $48.UpdateAdaptiveCardResult>(
|
||||
'/api.AdaptiveCardService/Update',
|
||||
($48.UpdateAdaptiveCardRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $48.UpdateAdaptiveCardResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$48.DeleteAdaptiveCardRequest, $48.DeleteAdaptiveCardResult>(
|
||||
'/api.AdaptiveCardService/Delete',
|
||||
($48.DeleteAdaptiveCardRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $48.DeleteAdaptiveCardResult.fromBuffer(value));
|
||||
|
||||
AdaptiveCardServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$48.GetAdaptiveCardResult> get($48.GetAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$48.ListAdaptiveCardResult> list($48.ListAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$48.CreateAdaptiveCardResult> create($48.CreateAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$48.UpdateAdaptiveCardResult> update($48.UpdateAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$update, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$48.DeleteAdaptiveCardResult> delete($48.DeleteAdaptiveCardRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.AdaptiveCardService')
|
||||
abstract class AdaptiveCardServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.AdaptiveCardService';
|
||||
|
||||
AdaptiveCardServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$48.GetAdaptiveCardRequest, $48.GetAdaptiveCardResult>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $48.GetAdaptiveCardRequest.fromBuffer(value),
|
||||
($48.GetAdaptiveCardResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$48.ListAdaptiveCardRequest, $48.ListAdaptiveCardResult>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $48.ListAdaptiveCardRequest.fromBuffer(value),
|
||||
($48.ListAdaptiveCardResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$48.CreateAdaptiveCardRequest, $48.CreateAdaptiveCardResult>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $48.CreateAdaptiveCardRequest.fromBuffer(value),
|
||||
($48.CreateAdaptiveCardResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$48.UpdateAdaptiveCardRequest, $48.UpdateAdaptiveCardResult>(
|
||||
'Update',
|
||||
update_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $48.UpdateAdaptiveCardRequest.fromBuffer(value),
|
||||
($48.UpdateAdaptiveCardResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$48.DeleteAdaptiveCardRequest, $48.DeleteAdaptiveCardResult>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $48.DeleteAdaptiveCardRequest.fromBuffer(value),
|
||||
($48.DeleteAdaptiveCardResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$48.GetAdaptiveCardResult> get_Pre($grpc.ServiceCall call, $async.Future<$48.GetAdaptiveCardRequest> request) async {
|
||||
return get(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$48.ListAdaptiveCardResult> list_Pre($grpc.ServiceCall call, $async.Future<$48.ListAdaptiveCardRequest> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$48.CreateAdaptiveCardResult> create_Pre($grpc.ServiceCall call, $async.Future<$48.CreateAdaptiveCardRequest> request) async {
|
||||
return create(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$48.UpdateAdaptiveCardResult> update_Pre($grpc.ServiceCall call, $async.Future<$48.UpdateAdaptiveCardRequest> request) async {
|
||||
return update(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$48.DeleteAdaptiveCardResult> delete_Pre($grpc.ServiceCall call, $async.Future<$48.DeleteAdaptiveCardRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$48.GetAdaptiveCardResult> get($grpc.ServiceCall call, $48.GetAdaptiveCardRequest request);
|
||||
$async.Future<$48.ListAdaptiveCardResult> list($grpc.ServiceCall call, $48.ListAdaptiveCardRequest request);
|
||||
$async.Future<$48.CreateAdaptiveCardResult> create($grpc.ServiceCall call, $48.CreateAdaptiveCardRequest request);
|
||||
$async.Future<$48.UpdateAdaptiveCardResult> update($grpc.ServiceCall call, $48.UpdateAdaptiveCardRequest request);
|
||||
$async.Future<$48.DeleteAdaptiveCardResult> delete($grpc.ServiceCall call, $48.DeleteAdaptiveCardRequest request);
|
||||
}
|
||||
154
lib/adaptiveCard.pbjson.dart
Normal file
154
lib/adaptiveCard.pbjson.dart
Normal file
@@ -0,0 +1,154 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adaptiveCard.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use adaptiveCardDescriptor instead')
|
||||
const AdaptiveCard$json = {
|
||||
'1': 'AdaptiveCard',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
|
||||
{'1': 'Template', '3': 2, '4': 1, '5': 9, '10': 'Template'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AdaptiveCard`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adaptiveCardDescriptor = $convert.base64Decode(
|
||||
'CgxBZGFwdGl2ZUNhcmQSEgoETmFtZRgBIAEoCVIETmFtZRIaCghUZW1wbGF0ZRgCIAEoCVIIVG'
|
||||
'VtcGxhdGU=');
|
||||
|
||||
@$core.Deprecated('Use listAdaptiveCardRequestDescriptor instead')
|
||||
const ListAdaptiveCardRequest$json = {
|
||||
'1': 'ListAdaptiveCardRequest',
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAdaptiveCardRequestDescriptor = $convert.base64Decode(
|
||||
'ChdMaXN0QWRhcHRpdmVDYXJkUmVxdWVzdA==');
|
||||
|
||||
@$core.Deprecated('Use listAdaptiveCardResultDescriptor instead')
|
||||
const ListAdaptiveCardResult$json = {
|
||||
'1': 'ListAdaptiveCardResult',
|
||||
'2': [
|
||||
{'1': 'AdaptiveCards', '3': 1, '4': 3, '5': 11, '6': '.api.AdaptiveCard', '10': 'AdaptiveCards'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAdaptiveCardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAdaptiveCardResultDescriptor = $convert.base64Decode(
|
||||
'ChZMaXN0QWRhcHRpdmVDYXJkUmVzdWx0EjcKDUFkYXB0aXZlQ2FyZHMYASADKAsyES5hcGkuQW'
|
||||
'RhcHRpdmVDYXJkUg1BZGFwdGl2ZUNhcmRz');
|
||||
|
||||
@$core.Deprecated('Use getAdaptiveCardRequestDescriptor instead')
|
||||
const GetAdaptiveCardRequest$json = {
|
||||
'1': 'GetAdaptiveCardRequest',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAdaptiveCardRequestDescriptor = $convert.base64Decode(
|
||||
'ChZHZXRBZGFwdGl2ZUNhcmRSZXF1ZXN0Ej8KBE5hbWUYASABKAlCK5JBITIfTmFtZSBvZiB0aG'
|
||||
'UgQWRhcHRpdmVDYXJkIHRvIGdldPpCBHICEAFSBE5hbWU=');
|
||||
|
||||
@$core.Deprecated('Use getAdaptiveCardResultDescriptor instead')
|
||||
const GetAdaptiveCardResult$json = {
|
||||
'1': 'GetAdaptiveCardResult',
|
||||
'2': [
|
||||
{'1': 'AdaptiveCard', '3': 1, '4': 1, '5': 11, '6': '.api.AdaptiveCard', '10': 'AdaptiveCard'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAdaptiveCardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAdaptiveCardResultDescriptor = $convert.base64Decode(
|
||||
'ChVHZXRBZGFwdGl2ZUNhcmRSZXN1bHQSNQoMQWRhcHRpdmVDYXJkGAEgASgLMhEuYXBpLkFkYX'
|
||||
'B0aXZlQ2FyZFIMQWRhcHRpdmVDYXJk');
|
||||
|
||||
@$core.Deprecated('Use createAdaptiveCardRequestDescriptor instead')
|
||||
const CreateAdaptiveCardRequest$json = {
|
||||
'1': 'CreateAdaptiveCardRequest',
|
||||
'2': [
|
||||
{'1': 'Template', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Template'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createAdaptiveCardRequestDescriptor = $convert.base64Decode(
|
||||
'ChlDcmVhdGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkgKCFRlbXBsYXRlGAEgASgJQiySQSIyIFRlbX'
|
||||
'BsYXRlIG9mIHRoZSBuZXcgQWRhcHRpdmVDYXJk+kIEcgIQAVIIVGVtcGxhdGUSRQoETmFtZRgC'
|
||||
'IAEoCUIxkkEnMiVOYW1lIG9mIHRoZSBuZXcgQWRhcHRpdmVDYXJkLiBVbmlxdWUu+kIEcgIQAV'
|
||||
'IETmFtZQ==');
|
||||
|
||||
@$core.Deprecated('Use createAdaptiveCardResultDescriptor instead')
|
||||
const CreateAdaptiveCardResult$json = {
|
||||
'1': 'CreateAdaptiveCardResult',
|
||||
'2': [
|
||||
{'1': 'AdaptiveCard', '3': 1, '4': 1, '5': 11, '6': '.api.AdaptiveCard', '10': 'AdaptiveCard'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateAdaptiveCardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createAdaptiveCardResultDescriptor = $convert.base64Decode(
|
||||
'ChhDcmVhdGVBZGFwdGl2ZUNhcmRSZXN1bHQSNQoMQWRhcHRpdmVDYXJkGAEgASgLMhEuYXBpLk'
|
||||
'FkYXB0aXZlQ2FyZFIMQWRhcHRpdmVDYXJk');
|
||||
|
||||
@$core.Deprecated('Use updateAdaptiveCardRequestDescriptor instead')
|
||||
const UpdateAdaptiveCardRequest$json = {
|
||||
'1': 'UpdateAdaptiveCardRequest',
|
||||
'2': [
|
||||
{'1': 'AdaptiveCard', '3': 1, '4': 1, '5': 11, '6': '.api.AdaptiveCard', '8': {}, '10': 'AdaptiveCard'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateAdaptiveCardRequestDescriptor = $convert.base64Decode(
|
||||
'ChlVcGRhdGVBZGFwdGl2ZUNhcmRSZXF1ZXN0ElIKDEFkYXB0aXZlQ2FyZBgBIAEoCzIRLmFwaS'
|
||||
'5BZGFwdGl2ZUNhcmRCG5JBGDIWQWRhcHRpdmVDYXJkIHRvIHVwZGF0ZVIMQWRhcHRpdmVDYXJk');
|
||||
|
||||
@$core.Deprecated('Use updateAdaptiveCardResultDescriptor instead')
|
||||
const UpdateAdaptiveCardResult$json = {
|
||||
'1': 'UpdateAdaptiveCardResult',
|
||||
'2': [
|
||||
{'1': 'AdaptiveCard', '3': 1, '4': 1, '5': 11, '6': '.api.AdaptiveCard', '10': 'AdaptiveCard'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateAdaptiveCardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateAdaptiveCardResultDescriptor = $convert.base64Decode(
|
||||
'ChhVcGRhdGVBZGFwdGl2ZUNhcmRSZXN1bHQSNQoMQWRhcHRpdmVDYXJkGAEgASgLMhEuYXBpLk'
|
||||
'FkYXB0aXZlQ2FyZFIMQWRhcHRpdmVDYXJk');
|
||||
|
||||
@$core.Deprecated('Use deleteAdaptiveCardRequestDescriptor instead')
|
||||
const DeleteAdaptiveCardRequest$json = {
|
||||
'1': 'DeleteAdaptiveCardRequest',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAdaptiveCardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAdaptiveCardRequestDescriptor = $convert.base64Decode(
|
||||
'ChlEZWxldGVBZGFwdGl2ZUNhcmRSZXF1ZXN0EkIKBE5hbWUYASABKAlCLpJBJDIiTmFtZSBvZi'
|
||||
'B0aGUgQWRhcHRpdmVDYXJkIHRvIGRlbGV0ZfpCBHICEAFSBE5hbWU=');
|
||||
|
||||
@$core.Deprecated('Use deleteAdaptiveCardResultDescriptor instead')
|
||||
const DeleteAdaptiveCardResult$json = {
|
||||
'1': 'DeleteAdaptiveCardResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAdaptiveCardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAdaptiveCardResultDescriptor = $convert.base64Decode(
|
||||
'ChhEZWxldGVBZGFwdGl2ZUNhcmRSZXN1bHQ=');
|
||||
|
||||
173
lib/admin-actor.pb.dart
Normal file
173
lib/admin-actor.pb.dart
Normal file
@@ -0,0 +1,173 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $69;
|
||||
import 'repositoryShared.pbenum.dart' as $69;
|
||||
|
||||
class AdminActor extends $pb.GeneratedMessage {
|
||||
factory AdminActor({
|
||||
$core.String? iD,
|
||||
$core.String? name,
|
||||
$core.String? organisationID,
|
||||
$core.String? partnerID,
|
||||
$69.Address? address,
|
||||
$69.ActorContact? contact,
|
||||
$69.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;
|
||||
}
|
||||
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<$69.Address>(6, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $69.Address.create)
|
||||
..aOM<$69.ActorContact>(7, _omitFieldNames ? '' : 'Contact', protoName: 'Contact', subBuilder: $69.ActorContact.create)
|
||||
..e<$69.ActorTypology>(8, _omitFieldNames ? '' : 'Typology', $pb.PbFieldType.OE, protoName: 'Typology', defaultOrMaker: $69.ActorTypology.TYPOLOGY_UNKNOWN, valueOf: $69.ActorTypology.valueOf, enumValues: $69.ActorTypology.values)
|
||||
..aOS(9, _omitFieldNames ? '' : 'AdditionalInformation', protoName: 'AdditionalInformation')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminActor create() => AdminActor._();
|
||||
AdminActor createEmptyInstance() => create();
|
||||
static $pb.PbList<AdminActor> createRepeated() => $pb.PbList<AdminActor>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminActor getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdminActor>(create);
|
||||
static AdminActor? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get iD => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set iD($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get name => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set name($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get organisationID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set organisationID($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOrganisationID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOrganisationID() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get partnerID => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
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)
|
||||
$69.Address get address => $_getN(4);
|
||||
@$pb.TagNumber(6)
|
||||
set address($69.Address v) { setField(6, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasAddress() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearAddress() => clearField(6);
|
||||
@$pb.TagNumber(6)
|
||||
$69.Address ensureAddress() => $_ensure(4);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$69.ActorContact get contact => $_getN(5);
|
||||
@$pb.TagNumber(7)
|
||||
set contact($69.ActorContact v) { setField(7, v); }
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasContact() => $_has(5);
|
||||
@$pb.TagNumber(7)
|
||||
void clearContact() => clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
$69.ActorContact ensureContact() => $_ensure(5);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$69.ActorTypology get typology => $_getN(6);
|
||||
@$pb.TagNumber(8)
|
||||
set typology($69.ActorTypology v) { setField(8, v); }
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasTypology() => $_has(6);
|
||||
@$pb.TagNumber(8)
|
||||
void clearTypology() => clearField(8);
|
||||
|
||||
@$pb.TagNumber(9)
|
||||
$core.String get additionalInformation => $_getSZ(7);
|
||||
@$pb.TagNumber(9)
|
||||
set additionalInformation($core.String v) { $_setString(7, v); }
|
||||
@$pb.TagNumber(9)
|
||||
$core.bool hasAdditionalInformation() => $_has(7);
|
||||
@$pb.TagNumber(9)
|
||||
void clearAdditionalInformation() => clearField(9);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/admin-actor.pbenum.dart
Normal file
11
lib/admin-actor.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
42
lib/admin-actor.pbjson.dart
Normal file
42
lib/admin-actor.pbjson.dart
Normal file
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-actor.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use adminActorDescriptor instead')
|
||||
const AdminActor$json = {
|
||||
'1': 'AdminActor',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'OrganisationID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
||||
{'1': 'PartnerID', '3': 4, '4': 1, '5': 9, '10': 'PartnerID'},
|
||||
{'1': 'Address', '3': 6, '4': 1, '5': 11, '6': '.api.Address', '8': {}, '10': 'Address'},
|
||||
{'1': 'Contact', '3': 7, '4': 1, '5': 11, '6': '.api.ActorContact', '8': {}, '10': 'Contact'},
|
||||
{'1': 'Typology', '3': 8, '4': 1, '5': 14, '6': '.api.ActorTypology', '10': 'Typology'},
|
||||
{'1': 'AdditionalInformation', '3': 9, '4': 1, '5': 9, '10': 'AdditionalInformation'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AdminActor`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adminActorDescriptor = $convert.base64Decode(
|
||||
'CgpBZG1pbkFjdG9yEhcKAklEGAEgASgJQgf6QgRyAhABUgJJRBIbCgROYW1lGAIgASgJQgf6Qg'
|
||||
'RyAhABUgROYW1lEi8KDk9yZ2FuaXNhdGlvbklEGAMgASgJQgf6QgRyAhABUg5PcmdhbmlzYXRp'
|
||||
'b25JRBIcCglQYXJ0bmVySUQYBCABKAlSCVBhcnRuZXJJRBIwCgdBZGRyZXNzGAYgASgLMgwuYX'
|
||||
'BpLkFkZHJlc3NCCPpCBYoBAhABUgdBZGRyZXNzEjUKB0NvbnRhY3QYByABKAsyES5hcGkuQWN0'
|
||||
'b3JDb250YWN0Qgj6QgWKAQIQAVIHQ29udGFjdBIuCghUeXBvbG9neRgIIAEoDjISLmFwaS5BY3'
|
||||
'RvclR5cG9sb2d5UghUeXBvbG9neRI0ChVBZGRpdGlvbmFsSW5mb3JtYXRpb24YCSABKAlSFUFk'
|
||||
'ZGl0aW9uYWxJbmZvcm1hdGlvbjoikkEfCh3SAQJJRNIBBE5hbWXSAQ5PcmdhbmlzYXRpb25JRA'
|
||||
'==');
|
||||
|
||||
161
lib/admin-partner.pb.dart
Normal file
161
lib/admin-partner.pb.dart
Normal file
@@ -0,0 +1,161 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-partner.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $71;
|
||||
import 'repositoryShared.pb.dart' as $69;
|
||||
|
||||
class AdminPartner extends $pb.GeneratedMessage {
|
||||
factory AdminPartner({
|
||||
$core.String? iD,
|
||||
$core.String? name,
|
||||
$core.String? legalStructure,
|
||||
$69.Address? address,
|
||||
$core.String? organisationID,
|
||||
$core.Iterable<$core.String>? actorIDs,
|
||||
$core.Iterable<$71.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;
|
||||
}
|
||||
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<$69.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $69.Address.create)
|
||||
..aOS(5, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
||||
..pPS(6, _omitFieldNames ? '' : 'ActorIDs', protoName: 'ActorIDs')
|
||||
..pc<$71.AdminActor>(7, _omitFieldNames ? '' : 'Actors', $pb.PbFieldType.PM, protoName: 'Actors', subBuilder: $71.AdminActor.create)
|
||||
..aOS(8, _omitFieldNames ? '' : 'PhotoURI', protoName: 'PhotoURI')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminPartner create() => AdminPartner._();
|
||||
AdminPartner createEmptyInstance() => create();
|
||||
static $pb.PbList<AdminPartner> createRepeated() => $pb.PbList<AdminPartner>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminPartner getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdminPartner>(create);
|
||||
static AdminPartner? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get iD => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set iD($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get name => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set name($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get legalStructure => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
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)
|
||||
$69.Address get address => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set address($69.Address v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasAddress() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearAddress() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$69.Address ensureAddress() => $_ensure(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get organisationID => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set organisationID($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasOrganisationID() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearOrganisationID() => clearField(5);
|
||||
|
||||
/// In ActorIDs are given / Out not present
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$core.String> get actorIDs => $_getList(5);
|
||||
|
||||
/// In not accepted / Out Actors are returned
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$71.AdminActor> get actors => $_getList(6);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.String get photoURI => $_getSZ(7);
|
||||
@$pb.TagNumber(8)
|
||||
set photoURI($core.String v) { $_setString(7, v); }
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasPhotoURI() => $_has(7);
|
||||
@$pb.TagNumber(8)
|
||||
void clearPhotoURI() => clearField(8);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/admin-partner.pbenum.dart
Normal file
11
lib/admin-partner.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-partner.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
42
lib/admin-partner.pbjson.dart
Normal file
42
lib/admin-partner.pbjson.dart
Normal file
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: admin-partner.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use adminPartnerDescriptor instead')
|
||||
const AdminPartner$json = {
|
||||
'1': 'AdminPartner',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'LegalStructure', '3': 3, '4': 1, '5': 9, '10': 'LegalStructure'},
|
||||
{'1': 'Address', '3': 4, '4': 1, '5': 11, '6': '.api.Address', '8': {}, '10': 'Address'},
|
||||
{'1': 'OrganisationID', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
||||
{'1': 'ActorIDs', '3': 6, '4': 3, '5': 9, '8': {}, '10': 'ActorIDs'},
|
||||
{'1': 'Actors', '3': 7, '4': 3, '5': 11, '6': '.api.AdminActor', '10': 'Actors'},
|
||||
{'1': 'PhotoURI', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'PhotoURI'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AdminPartner`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adminPartnerDescriptor = $convert.base64Decode(
|
||||
'CgxBZG1pblBhcnRuZXISFwoCSUQYASABKAlCB/pCBHICEAFSAklEEhsKBE5hbWUYAiABKAlCB/'
|
||||
'pCBHICEAFSBE5hbWUSJgoOTGVnYWxTdHJ1Y3R1cmUYAyABKAlSDkxlZ2FsU3RydWN0dXJlEjAK'
|
||||
'B0FkZHJlc3MYBCABKAsyDC5hcGkuQWRkcmVzc0II+kIFigECEAFSB0FkZHJlc3MSLwoOT3JnYW'
|
||||
'5pc2F0aW9uSUQYBSABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklEEiQKCEFjdG9ySURzGAYg'
|
||||
'AygJQgj6QgWSAQIYAVIIQWN0b3JJRHMSJwoGQWN0b3JzGAcgAygLMg8uYXBpLkFkbWluQWN0b3'
|
||||
'JSBkFjdG9ycxJICghQaG90b1VSSRgIIAEoCUIskkEpSiciaHR0cHM6Ly9yZWZsZXgtdmlzaWJp'
|
||||
'bGl0eS1mb3JldmVyLmpwZyJSCFBob3RvVVJJOiySQSkKJ9IBAklE0gEETmFtZdIBB0FkZHJlc3'
|
||||
'PSAQ5PcmdhbmlzYXRpb25JRA==');
|
||||
|
||||
338
lib/adminConnection.pb.dart
Normal file
338
lib/adminConnection.pb.dart
Normal file
@@ -0,0 +1,338 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adminConnection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $28;
|
||||
|
||||
class AdminConnection extends $pb.GeneratedMessage {
|
||||
factory AdminConnection({
|
||||
$core.String? iD,
|
||||
$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;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'UriStartApi', protoName: 'UriStartApi')
|
||||
..pc<ArgElement>(3, _omitFieldNames ? '' : 'ArgsUriStart', $pb.PbFieldType.PM, protoName: 'ArgsUriStart', subBuilder: ArgElement.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminConnection create() => AdminConnection._();
|
||||
AdminConnection createEmptyInstance() => create();
|
||||
static $pb.PbList<AdminConnection> createRepeated() => $pb.PbList<AdminConnection>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminConnection getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdminConnection>(create);
|
||||
static AdminConnection? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get iD => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set iD($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get uriStartApi => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set uriStartApi($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasUriStartApi() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearUriStartApi() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<ArgElement> get argsUriStart => $_getList(2);
|
||||
}
|
||||
|
||||
class ArgElement extends $pb.GeneratedMessage {
|
||||
factory ArgElement({
|
||||
$core.String? key,
|
||||
$28.ValueType? value,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (key != null) {
|
||||
$result.key = key;
|
||||
}
|
||||
if (value != null) {
|
||||
$result.value = value;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.ValueType>(2, _omitFieldNames ? '' : 'Value', protoName: 'Value', subBuilder: $28.ValueType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ArgElement create() => ArgElement._();
|
||||
ArgElement createEmptyInstance() => create();
|
||||
static $pb.PbList<ArgElement> createRepeated() => $pb.PbList<ArgElement>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ArgElement getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ArgElement>(create);
|
||||
static ArgElement? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get key => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
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)
|
||||
$28.ValueType get value => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set value($28.ValueType v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasValue() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearValue() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.ValueType ensureValue() => $_ensure(1);
|
||||
}
|
||||
|
||||
class RegisterConnectionManagerRequest extends $pb.GeneratedMessage {
|
||||
factory RegisterConnectionManagerRequest({
|
||||
$core.String? iD,
|
||||
$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;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'UriStartApi', protoName: 'UriStartApi')
|
||||
..pc<ArgElement>(3, _omitFieldNames ? '' : 'ArgsUriStart', $pb.PbFieldType.PM, protoName: 'ArgsUriStart', subBuilder: ArgElement.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterConnectionManagerRequest create() => RegisterConnectionManagerRequest._();
|
||||
RegisterConnectionManagerRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterConnectionManagerRequest> createRepeated() => $pb.PbList<RegisterConnectionManagerRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterConnectionManagerRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterConnectionManagerRequest>(create);
|
||||
static RegisterConnectionManagerRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get iD => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set iD($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get uriStartApi => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set uriStartApi($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasUriStartApi() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearUriStartApi() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<ArgElement> get argsUriStart => $_getList(2);
|
||||
}
|
||||
|
||||
class RegisterConnectionManagerResult extends $pb.GeneratedMessage {
|
||||
factory RegisterConnectionManagerResult() => create();
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterConnectionManagerResult create() => RegisterConnectionManagerResult._();
|
||||
RegisterConnectionManagerResult createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterConnectionManagerResult> createRepeated() => $pb.PbList<RegisterConnectionManagerResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterConnectionManagerResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterConnectionManagerResult>(create);
|
||||
static RegisterConnectionManagerResult? _defaultInstance;
|
||||
}
|
||||
|
||||
class ListConnectionManagerRequest extends $pb.GeneratedMessage {
|
||||
factory ListConnectionManagerRequest() => create();
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListConnectionManagerRequest create() => ListConnectionManagerRequest._();
|
||||
ListConnectionManagerRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListConnectionManagerRequest> createRepeated() => $pb.PbList<ListConnectionManagerRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListConnectionManagerRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListConnectionManagerRequest>(create);
|
||||
static ListConnectionManagerRequest? _defaultInstance;
|
||||
}
|
||||
|
||||
class ListConnectionManagerResult extends $pb.GeneratedMessage {
|
||||
factory ListConnectionManagerResult({
|
||||
$core.Iterable<AdminConnection>? results,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (results != null) {
|
||||
$result.results.addAll(results);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListConnectionManagerResult create() => ListConnectionManagerResult._();
|
||||
ListConnectionManagerResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ListConnectionManagerResult> createRepeated() => $pb.PbList<ListConnectionManagerResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListConnectionManagerResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListConnectionManagerResult>(create);
|
||||
static ListConnectionManagerResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<AdminConnection> get results => $_getList(0);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/adminConnection.pbenum.dart
Normal file
11
lib/adminConnection.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adminConnection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
79
lib/adminConnection.pbgrpc.dart
Normal file
79
lib/adminConnection.pbgrpc.dart
Normal file
@@ -0,0 +1,79 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adminConnection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'adminConnection.pb.dart' as $2;
|
||||
|
||||
export 'adminConnection.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.AdminConnectionService')
|
||||
class AdminConnectionServiceClient extends $grpc.Client {
|
||||
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));
|
||||
|
||||
AdminConnectionServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$2.RegisterConnectionManagerResult> registerConnectionManager($2.RegisterConnectionManagerRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$registerConnectionManager, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$2.ListConnectionManagerResult> listConnectionManager($2.ListConnectionManagerRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$listConnectionManager, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.AdminConnectionService')
|
||||
abstract class AdminConnectionServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.AdminConnectionService';
|
||||
|
||||
AdminConnectionServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$2.RegisterConnectionManagerRequest, $2.RegisterConnectionManagerResult>(
|
||||
'RegisterConnectionManager',
|
||||
registerConnectionManager_Pre,
|
||||
false,
|
||||
false,
|
||||
($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) => $2.ListConnectionManagerRequest.fromBuffer(value),
|
||||
($2.ListConnectionManagerResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$2.RegisterConnectionManagerResult> registerConnectionManager_Pre($grpc.ServiceCall call, $async.Future<$2.RegisterConnectionManagerRequest> request) async {
|
||||
return registerConnectionManager(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$2.ListConnectionManagerResult> listConnectionManager_Pre($grpc.ServiceCall call, $async.Future<$2.ListConnectionManagerRequest> request) async {
|
||||
return listConnectionManager(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$2.RegisterConnectionManagerResult> registerConnectionManager($grpc.ServiceCall call, $2.RegisterConnectionManagerRequest request);
|
||||
$async.Future<$2.ListConnectionManagerResult> listConnectionManager($grpc.ServiceCall call, $2.ListConnectionManagerRequest request);
|
||||
}
|
||||
94
lib/adminConnection.pbjson.dart
Normal file
94
lib/adminConnection.pbjson.dart
Normal file
@@ -0,0 +1,94 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: adminConnection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use adminConnectionDescriptor instead')
|
||||
const AdminConnection$json = {
|
||||
'1': 'AdminConnection',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '10': 'ID'},
|
||||
{'1': 'UriStartApi', '3': 2, '4': 1, '5': 9, '10': 'UriStartApi'},
|
||||
{'1': 'ArgsUriStart', '3': 3, '4': 3, '5': 11, '6': '.api.ArgElement', '10': 'ArgsUriStart'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AdminConnection`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adminConnectionDescriptor = $convert.base64Decode(
|
||||
'Cg9BZG1pbkNvbm5lY3Rpb24SDgoCSUQYASABKAlSAklEEiAKC1VyaVN0YXJ0QXBpGAIgASgJUg'
|
||||
'tVcmlTdGFydEFwaRIzCgxBcmdzVXJpU3RhcnQYAyADKAsyDy5hcGkuQXJnRWxlbWVudFIMQXJn'
|
||||
'c1VyaVN0YXJ0');
|
||||
|
||||
@$core.Deprecated('Use argElementDescriptor instead')
|
||||
const ArgElement$json = {
|
||||
'1': 'ArgElement',
|
||||
'2': [
|
||||
{'1': 'Key', '3': 1, '4': 1, '5': 9, '10': 'Key'},
|
||||
{'1': 'Value', '3': 2, '4': 1, '5': 11, '6': '.api.ValueType', '10': 'Value'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ArgElement`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List argElementDescriptor = $convert.base64Decode(
|
||||
'CgpBcmdFbGVtZW50EhAKA0tleRgBIAEoCVIDS2V5EiQKBVZhbHVlGAIgASgLMg4uYXBpLlZhbH'
|
||||
'VlVHlwZVIFVmFsdWU=');
|
||||
|
||||
@$core.Deprecated('Use registerConnectionManagerRequestDescriptor instead')
|
||||
const RegisterConnectionManagerRequest$json = {
|
||||
'1': 'RegisterConnectionManagerRequest',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'UriStartApi', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'UriStartApi'},
|
||||
{'1': 'ArgsUriStart', '3': 3, '4': 3, '5': 11, '6': '.api.ArgElement', '10': 'ArgsUriStart'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterConnectionManagerRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerConnectionManagerRequestDescriptor = $convert.base64Decode(
|
||||
'CiBSZWdpc3RlckNvbm5lY3Rpb25NYW5hZ2VyUmVxdWVzdBIXCgJJRBgBIAEoCUIH+kIEcgIQAV'
|
||||
'ICSUQSKQoLVXJpU3RhcnRBcGkYAiABKAlCB/pCBHICEAFSC1VyaVN0YXJ0QXBpEjMKDEFyZ3NV'
|
||||
'cmlTdGFydBgDIAMoCzIPLmFwaS5BcmdFbGVtZW50UgxBcmdzVXJpU3RhcnQ6GJJBFQoT0gECSU'
|
||||
'TSAQtVcmlTdGFydEFwaQ==');
|
||||
|
||||
@$core.Deprecated('Use registerConnectionManagerResultDescriptor instead')
|
||||
const RegisterConnectionManagerResult$json = {
|
||||
'1': 'RegisterConnectionManagerResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterConnectionManagerResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerConnectionManagerResultDescriptor = $convert.base64Decode(
|
||||
'Ch9SZWdpc3RlckNvbm5lY3Rpb25NYW5hZ2VyUmVzdWx0');
|
||||
|
||||
@$core.Deprecated('Use listConnectionManagerRequestDescriptor instead')
|
||||
const ListConnectionManagerRequest$json = {
|
||||
'1': 'ListConnectionManagerRequest',
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectionManagerRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectionManagerRequestDescriptor = $convert.base64Decode(
|
||||
'ChxMaXN0Q29ubmVjdGlvbk1hbmFnZXJSZXF1ZXN0');
|
||||
|
||||
@$core.Deprecated('Use listConnectionManagerResultDescriptor instead')
|
||||
const ListConnectionManagerResult$json = {
|
||||
'1': 'ListConnectionManagerResult',
|
||||
'2': [
|
||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.api.AdminConnection', '8': {}, '10': 'Results'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectionManagerResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectionManagerResultDescriptor = $convert.base64Decode(
|
||||
'ChtMaXN0Q29ubmVjdGlvbk1hbmFnZXJSZXN1bHQSOAoHUmVzdWx0cxgBIAMoCzIULmFwaS5BZG'
|
||||
'1pbkNvbm5lY3Rpb25CCPpCBZIBAggBUgdSZXN1bHRz');
|
||||
|
||||
35
lib/annotations.pb.dart
Normal file
35
lib/annotations.pb.dart
Normal file
@@ -0,0 +1,35 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: annotations.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $66;
|
||||
|
||||
class Annotations {
|
||||
static final openapiv2Swagger = $pb.Extension<$66.Swagger>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'openapiv2Swagger', 1042, $pb.PbFieldType.OM, defaultOrMaker: $66.Swagger.getDefault, subBuilder: $66.Swagger.create);
|
||||
static final openapiv2Operation = $pb.Extension<$66.Operation>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'openapiv2Operation', 1042, $pb.PbFieldType.OM, defaultOrMaker: $66.Operation.getDefault, subBuilder: $66.Operation.create);
|
||||
static final openapiv2Schema = $pb.Extension<$66.Schema>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'openapiv2Schema', 1042, $pb.PbFieldType.OM, defaultOrMaker: $66.Schema.getDefault, subBuilder: $66.Schema.create);
|
||||
static final openapiv2Tag = $pb.Extension<$66.Tag>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'openapiv2Tag', 1042, $pb.PbFieldType.OM, defaultOrMaker: $66.Tag.getDefault, subBuilder: $66.Tag.create);
|
||||
static final openapiv2Field = $pb.Extension<$66.JSONSchema>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'openapiv2Field', 1042, $pb.PbFieldType.OM, defaultOrMaker: $66.JSONSchema.getDefault, subBuilder: $66.JSONSchema.create);
|
||||
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
||||
registry.add(openapiv2Swagger);
|
||||
registry.add(openapiv2Operation);
|
||||
registry.add(openapiv2Schema);
|
||||
registry.add(openapiv2Tag);
|
||||
registry.add(openapiv2Field);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/annotations.pbenum.dart
Normal file
11
lib/annotations.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: annotations.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
15
lib/annotations.pbjson.dart
Normal file
15
lib/annotations.pbjson.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: annotations.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
811
lib/api.pb.dart
Normal file
811
lib/api.pb.dart
Normal file
@@ -0,0 +1,811 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: api.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 'module.pb.dart' as $7;
|
||||
import 'role.pb.dart' as $17;
|
||||
import 'shared.pb.dart' as $28;
|
||||
import 'shared.pbenum.dart' as $28;
|
||||
|
||||
class GetPermissionsRequest extends $pb.GeneratedMessage {
|
||||
factory GetPermissionsRequest({
|
||||
$28.ResourceType? rscType,
|
||||
$core.String? client,
|
||||
$core.String? service,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (rscType != null) {
|
||||
$result.rscType = rscType;
|
||||
}
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
if (service != null) {
|
||||
$result.service = service;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetPermissionsRequest._() : super();
|
||||
factory GetPermissionsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetPermissionsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPermissionsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$28.ResourceType>(1, _omitFieldNames ? '' : 'RscType', $pb.PbFieldType.OE, protoName: 'RscType', defaultOrMaker: $28.ResourceType.RESOURCE_TYPE_UNKNOWN, valueOf: $28.ResourceType.valueOf, enumValues: $28.ResourceType.values)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..aOS(3, _omitFieldNames ? '' : 'Service', protoName: 'Service')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetPermissionsRequest clone() => GetPermissionsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetPermissionsRequest copyWith(void Function(GetPermissionsRequest) updates) => super.copyWith((message) => updates(message as GetPermissionsRequest)) as GetPermissionsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetPermissionsRequest create() => GetPermissionsRequest._();
|
||||
GetPermissionsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetPermissionsRequest> createRepeated() => $pb.PbList<GetPermissionsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetPermissionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetPermissionsRequest>(create);
|
||||
static GetPermissionsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResourceType get rscType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set rscType($28.ResourceType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRscType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearRscType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get client => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set client($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get service => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set service($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasService() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearService() => clearField(3);
|
||||
}
|
||||
|
||||
class GetPermissionsResult extends $pb.GeneratedMessage {
|
||||
factory GetPermissionsResult({
|
||||
$core.Iterable<$28.Permission>? permissions,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (permissions != null) {
|
||||
$result.permissions.addAll(permissions);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetPermissionsResult._() : super();
|
||||
factory GetPermissionsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetPermissionsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetPermissionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$28.Permission>(5, _omitFieldNames ? '' : 'Permissions', $pb.PbFieldType.PM, protoName: 'Permissions', subBuilder: $28.Permission.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetPermissionsResult clone() => GetPermissionsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetPermissionsResult copyWith(void Function(GetPermissionsResult) updates) => super.copyWith((message) => updates(message as GetPermissionsResult)) as GetPermissionsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetPermissionsResult create() => GetPermissionsResult._();
|
||||
GetPermissionsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<GetPermissionsResult> createRepeated() => $pb.PbList<GetPermissionsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetPermissionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetPermissionsResult>(create);
|
||||
static GetPermissionsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.List<$28.Permission> get permissions => $_getList(0);
|
||||
}
|
||||
|
||||
class GetUIPermissionsRequest extends $pb.GeneratedMessage {
|
||||
factory GetUIPermissionsRequest({
|
||||
$28.ResourceType? rscType,
|
||||
$core.String? client,
|
||||
$core.String? service,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (rscType != null) {
|
||||
$result.rscType = rscType;
|
||||
}
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
if (service != null) {
|
||||
$result.service = service;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetUIPermissionsRequest._() : super();
|
||||
factory GetUIPermissionsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetUIPermissionsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetUIPermissionsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$28.ResourceType>(1, _omitFieldNames ? '' : 'RscType', $pb.PbFieldType.OE, protoName: 'RscType', defaultOrMaker: $28.ResourceType.RESOURCE_TYPE_UNKNOWN, valueOf: $28.ResourceType.valueOf, enumValues: $28.ResourceType.values)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..aOS(3, _omitFieldNames ? '' : 'Service', protoName: 'Service')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetUIPermissionsRequest clone() => GetUIPermissionsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetUIPermissionsRequest copyWith(void Function(GetUIPermissionsRequest) updates) => super.copyWith((message) => updates(message as GetUIPermissionsRequest)) as GetUIPermissionsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetUIPermissionsRequest create() => GetUIPermissionsRequest._();
|
||||
GetUIPermissionsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetUIPermissionsRequest> createRepeated() => $pb.PbList<GetUIPermissionsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetUIPermissionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetUIPermissionsRequest>(create);
|
||||
static GetUIPermissionsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResourceType get rscType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set rscType($28.ResourceType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRscType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearRscType() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get client => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set client($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get service => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set service($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasService() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearService() => clearField(3);
|
||||
}
|
||||
|
||||
class GetUIPermissionsResult extends $pb.GeneratedMessage {
|
||||
factory GetUIPermissionsResult({
|
||||
$core.Iterable<$28.Permission>? permissions,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (permissions != null) {
|
||||
$result.permissions.addAll(permissions);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetUIPermissionsResult._() : super();
|
||||
factory GetUIPermissionsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetUIPermissionsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetUIPermissionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$28.Permission>(1, _omitFieldNames ? '' : 'Permissions', $pb.PbFieldType.PM, protoName: 'Permissions', subBuilder: $28.Permission.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetUIPermissionsResult clone() => GetUIPermissionsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetUIPermissionsResult copyWith(void Function(GetUIPermissionsResult) updates) => super.copyWith((message) => updates(message as GetUIPermissionsResult)) as GetUIPermissionsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetUIPermissionsResult create() => GetUIPermissionsResult._();
|
||||
GetUIPermissionsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<GetUIPermissionsResult> createRepeated() => $pb.PbList<GetUIPermissionsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetUIPermissionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetUIPermissionsResult>(create);
|
||||
static GetUIPermissionsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<$28.Permission> get permissions => $_getList(0);
|
||||
}
|
||||
|
||||
class ListUserUIPermissionsRequest extends $pb.GeneratedMessage {
|
||||
factory ListUserUIPermissionsRequest({
|
||||
$core.String? client,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListUserUIPermissionsRequest._() : super();
|
||||
factory ListUserUIPermissionsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListUserUIPermissionsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListUserUIPermissionsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListUserUIPermissionsRequest clone() => ListUserUIPermissionsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListUserUIPermissionsRequest copyWith(void Function(ListUserUIPermissionsRequest) updates) => super.copyWith((message) => updates(message as ListUserUIPermissionsRequest)) as ListUserUIPermissionsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListUserUIPermissionsRequest create() => ListUserUIPermissionsRequest._();
|
||||
ListUserUIPermissionsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListUserUIPermissionsRequest> createRepeated() => $pb.PbList<ListUserUIPermissionsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListUserUIPermissionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListUserUIPermissionsRequest>(create);
|
||||
static ListUserUIPermissionsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get client => $_getSZ(0);
|
||||
@$pb.TagNumber(2)
|
||||
set client($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(0);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
}
|
||||
|
||||
class ListUserUIPermissionsResult extends $pb.GeneratedMessage {
|
||||
factory ListUserUIPermissionsResult({
|
||||
$core.Iterable<$28.UserUIPermissions>? permissions,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (permissions != null) {
|
||||
$result.permissions.addAll(permissions);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListUserUIPermissionsResult._() : super();
|
||||
factory ListUserUIPermissionsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListUserUIPermissionsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListUserUIPermissionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$28.UserUIPermissions>(2, _omitFieldNames ? '' : 'Permissions', $pb.PbFieldType.PM, protoName: 'Permissions', subBuilder: $28.UserUIPermissions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListUserUIPermissionsResult clone() => ListUserUIPermissionsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListUserUIPermissionsResult copyWith(void Function(ListUserUIPermissionsResult) updates) => super.copyWith((message) => updates(message as ListUserUIPermissionsResult)) as ListUserUIPermissionsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListUserUIPermissionsResult create() => ListUserUIPermissionsResult._();
|
||||
ListUserUIPermissionsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ListUserUIPermissionsResult> createRepeated() => $pb.PbList<ListUserUIPermissionsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListUserUIPermissionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListUserUIPermissionsResult>(create);
|
||||
static ListUserUIPermissionsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.UserUIPermissions> get permissions => $_getList(0);
|
||||
}
|
||||
|
||||
class RegisterPackageRequest extends $pb.GeneratedMessage {
|
||||
factory RegisterPackageRequest({
|
||||
$core.String? packageName,
|
||||
$core.Iterable<$28.ClientAPI>? clients,
|
||||
$core.bool? forceFullScopeCreation,
|
||||
$core.Iterable<$17.Role>? roles,
|
||||
$core.Iterable<$28.ModuleRegistration>? workflows,
|
||||
$core.Iterable<$7.Module>? modules,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (packageName != null) {
|
||||
$result.packageName = packageName;
|
||||
}
|
||||
if (clients != null) {
|
||||
$result.clients.addAll(clients);
|
||||
}
|
||||
if (forceFullScopeCreation != null) {
|
||||
$result.forceFullScopeCreation = forceFullScopeCreation;
|
||||
}
|
||||
if (roles != null) {
|
||||
$result.roles.addAll(roles);
|
||||
}
|
||||
if (workflows != null) {
|
||||
$result.workflows.addAll(workflows);
|
||||
}
|
||||
if (modules != null) {
|
||||
$result.modules.addAll(modules);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
RegisterPackageRequest._() : super();
|
||||
factory RegisterPackageRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RegisterPackageRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterPackageRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'PackageName', protoName: 'PackageName')
|
||||
..pc<$28.ClientAPI>(2, _omitFieldNames ? '' : 'Clients', $pb.PbFieldType.PM, protoName: 'Clients', subBuilder: $28.ClientAPI.create)
|
||||
..aOB(3, _omitFieldNames ? '' : 'ForceFullScopeCreation', protoName: 'ForceFullScopeCreation')
|
||||
..pc<$17.Role>(4, _omitFieldNames ? '' : 'Roles', $pb.PbFieldType.PM, protoName: 'Roles', subBuilder: $17.Role.create)
|
||||
..pc<$28.ModuleRegistration>(5, _omitFieldNames ? '' : 'Workflows', $pb.PbFieldType.PM, protoName: 'Workflows', subBuilder: $28.ModuleRegistration.create)
|
||||
..pc<$7.Module>(6, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $7.Module.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPackageRequest clone() => RegisterPackageRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPackageRequest copyWith(void Function(RegisterPackageRequest) updates) => super.copyWith((message) => updates(message as RegisterPackageRequest)) as RegisterPackageRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPackageRequest create() => RegisterPackageRequest._();
|
||||
RegisterPackageRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterPackageRequest> createRepeated() => $pb.PbList<RegisterPackageRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPackageRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterPackageRequest>(create);
|
||||
static RegisterPackageRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get packageName => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set packageName($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasPackageName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearPackageName() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.ClientAPI> get clients => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool get forceFullScopeCreation => $_getBF(2);
|
||||
@$pb.TagNumber(3)
|
||||
set forceFullScopeCreation($core.bool v) { $_setBool(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasForceFullScopeCreation() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearForceFullScopeCreation() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.List<$17.Role> get roles => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.List<$28.ModuleRegistration> get workflows => $_getList(4);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$7.Module> get modules => $_getList(5);
|
||||
}
|
||||
|
||||
class RegisterPackageResult extends $pb.GeneratedMessage {
|
||||
factory RegisterPackageResult() => create();
|
||||
RegisterPackageResult._() : super();
|
||||
factory RegisterPackageResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RegisterPackageResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterPackageResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPackageResult clone() => RegisterPackageResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPackageResult copyWith(void Function(RegisterPackageResult) updates) => super.copyWith((message) => updates(message as RegisterPackageResult)) as RegisterPackageResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPackageResult create() => RegisterPackageResult._();
|
||||
RegisterPackageResult createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterPackageResult> createRepeated() => $pb.PbList<RegisterPackageResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPackageResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterPackageResult>(create);
|
||||
static RegisterPackageResult? _defaultInstance;
|
||||
}
|
||||
|
||||
class CreateScopeRequest extends $pb.GeneratedMessage {
|
||||
factory CreateScopeRequest({
|
||||
$core.String? moduleName,
|
||||
$core.String? client,
|
||||
$28.Scope? scope,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (moduleName != null) {
|
||||
$result.moduleName = moduleName;
|
||||
}
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
if (scope != null) {
|
||||
$result.scope = scope;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CreateScopeRequest._() : super();
|
||||
factory CreateScopeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateScopeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateScopeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ModuleName', protoName: 'ModuleName')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..aOM<$28.Scope>(3, _omitFieldNames ? '' : 'Scope', protoName: 'Scope', subBuilder: $28.Scope.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateScopeRequest clone() => CreateScopeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateScopeRequest copyWith(void Function(CreateScopeRequest) updates) => super.copyWith((message) => updates(message as CreateScopeRequest)) as CreateScopeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateScopeRequest create() => CreateScopeRequest._();
|
||||
CreateScopeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateScopeRequest> createRepeated() => $pb.PbList<CreateScopeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateScopeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateScopeRequest>(create);
|
||||
static CreateScopeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get moduleName => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set moduleName($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasModuleName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearModuleName() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get client => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set client($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$28.Scope get scope => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set scope($28.Scope v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasScope() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearScope() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$28.Scope ensureScope() => $_ensure(2);
|
||||
}
|
||||
|
||||
class CreateScopeResult extends $pb.GeneratedMessage {
|
||||
factory CreateScopeResult() => create();
|
||||
CreateScopeResult._() : super();
|
||||
factory CreateScopeResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateScopeResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateScopeResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateScopeResult clone() => CreateScopeResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateScopeResult copyWith(void Function(CreateScopeResult) updates) => super.copyWith((message) => updates(message as CreateScopeResult)) as CreateScopeResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateScopeResult create() => CreateScopeResult._();
|
||||
CreateScopeResult createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateScopeResult> createRepeated() => $pb.PbList<CreateScopeResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateScopeResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateScopeResult>(create);
|
||||
static CreateScopeResult? _defaultInstance;
|
||||
}
|
||||
|
||||
class DeleteScopeRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteScopeRequest({
|
||||
$core.String? moduleName,
|
||||
$core.String? client,
|
||||
$28.Scope? scope,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (moduleName != null) {
|
||||
$result.moduleName = moduleName;
|
||||
}
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
if (scope != null) {
|
||||
$result.scope = scope;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteScopeRequest._() : super();
|
||||
factory DeleteScopeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteScopeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteScopeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ModuleName', protoName: 'ModuleName')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..aOM<$28.Scope>(3, _omitFieldNames ? '' : 'Scope', protoName: 'Scope', subBuilder: $28.Scope.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteScopeRequest clone() => DeleteScopeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteScopeRequest copyWith(void Function(DeleteScopeRequest) updates) => super.copyWith((message) => updates(message as DeleteScopeRequest)) as DeleteScopeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteScopeRequest create() => DeleteScopeRequest._();
|
||||
DeleteScopeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteScopeRequest> createRepeated() => $pb.PbList<DeleteScopeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteScopeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteScopeRequest>(create);
|
||||
static DeleteScopeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get moduleName => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set moduleName($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasModuleName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearModuleName() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get client => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set client($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$28.Scope get scope => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set scope($28.Scope v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasScope() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearScope() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$28.Scope ensureScope() => $_ensure(2);
|
||||
}
|
||||
|
||||
class DeleteScopeResult extends $pb.GeneratedMessage {
|
||||
factory DeleteScopeResult() => create();
|
||||
DeleteScopeResult._() : super();
|
||||
factory DeleteScopeResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteScopeResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteScopeResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteScopeResult clone() => DeleteScopeResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteScopeResult copyWith(void Function(DeleteScopeResult) updates) => super.copyWith((message) => updates(message as DeleteScopeResult)) as DeleteScopeResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteScopeResult create() => DeleteScopeResult._();
|
||||
DeleteScopeResult createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteScopeResult> createRepeated() => $pb.PbList<DeleteScopeResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteScopeResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteScopeResult>(create);
|
||||
static DeleteScopeResult? _defaultInstance;
|
||||
}
|
||||
|
||||
class CleanScopeRequest extends $pb.GeneratedMessage {
|
||||
factory CleanScopeRequest({
|
||||
$core.String? client,
|
||||
$28.Scope? scope,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
if (scope != null) {
|
||||
$result.scope = scope;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CleanScopeRequest._() : super();
|
||||
factory CleanScopeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CleanScopeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CleanScopeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'Client', protoName: 'Client')
|
||||
..aOM<$28.Scope>(2, _omitFieldNames ? '' : 'Scope', protoName: 'Scope', subBuilder: $28.Scope.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CleanScopeRequest clone() => CleanScopeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CleanScopeRequest copyWith(void Function(CleanScopeRequest) updates) => super.copyWith((message) => updates(message as CleanScopeRequest)) as CleanScopeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CleanScopeRequest create() => CleanScopeRequest._();
|
||||
CleanScopeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CleanScopeRequest> createRepeated() => $pb.PbList<CleanScopeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CleanScopeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CleanScopeRequest>(create);
|
||||
static CleanScopeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get client => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set client($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClient() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClient() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.Scope get scope => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set scope($28.Scope v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasScope() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearScope() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.Scope ensureScope() => $_ensure(1);
|
||||
}
|
||||
|
||||
class CleanScopeResult extends $pb.GeneratedMessage {
|
||||
factory CleanScopeResult() => create();
|
||||
CleanScopeResult._() : super();
|
||||
factory CleanScopeResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CleanScopeResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CleanScopeResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CleanScopeResult clone() => CleanScopeResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CleanScopeResult copyWith(void Function(CleanScopeResult) updates) => super.copyWith((message) => updates(message as CleanScopeResult)) as CleanScopeResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CleanScopeResult create() => CleanScopeResult._();
|
||||
CleanScopeResult createEmptyInstance() => create();
|
||||
static $pb.PbList<CleanScopeResult> createRepeated() => $pb.PbList<CleanScopeResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CleanScopeResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CleanScopeResult>(create);
|
||||
static CleanScopeResult? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/api.pbenum.dart
Normal file
11
lib/api.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: api.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
179
lib/api.pbgrpc.dart
Normal file
179
lib/api.pbgrpc.dart
Normal file
@@ -0,0 +1,179 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: api.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'api.pb.dart' as $19;
|
||||
|
||||
export 'api.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.APIService')
|
||||
class APIServiceClient extends $grpc.Client {
|
||||
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));
|
||||
|
||||
APIServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$19.GetPermissionsResult> getPermissions($19.GetPermissionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getPermissions, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.GetUIPermissionsResult> getUIPermissions($19.GetUIPermissionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getUIPermissions, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.ListUserUIPermissionsResult> listUserUIPermissions($19.ListUserUIPermissionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$listUserUIPermissions, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.RegisterPackageResult> registerPackage($19.RegisterPackageRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$registerPackage, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.CreateScopeResult> createScope($19.CreateScopeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$createScope, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.DeleteScopeResult> deleteScope($19.DeleteScopeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteScope, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$19.CleanScopeResult> cleanScope($19.CleanScopeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$cleanScope, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.APIService')
|
||||
abstract class APIServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.APIService';
|
||||
|
||||
APIServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$19.GetPermissionsRequest, $19.GetPermissionsResult>(
|
||||
'GetPermissions',
|
||||
getPermissions_Pre,
|
||||
false,
|
||||
false,
|
||||
($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) => $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) => $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) => $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) => $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) => $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) => $19.CleanScopeRequest.fromBuffer(value),
|
||||
($19.CleanScopeResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$19.GetPermissionsResult> getPermissions_Pre($grpc.ServiceCall call, $async.Future<$19.GetPermissionsRequest> request) async {
|
||||
return getPermissions(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.GetUIPermissionsResult> getUIPermissions_Pre($grpc.ServiceCall call, $async.Future<$19.GetUIPermissionsRequest> request) async {
|
||||
return getUIPermissions(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.ListUserUIPermissionsResult> listUserUIPermissions_Pre($grpc.ServiceCall call, $async.Future<$19.ListUserUIPermissionsRequest> request) async {
|
||||
return listUserUIPermissions(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.RegisterPackageResult> registerPackage_Pre($grpc.ServiceCall call, $async.Future<$19.RegisterPackageRequest> request) async {
|
||||
return registerPackage(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.CreateScopeResult> createScope_Pre($grpc.ServiceCall call, $async.Future<$19.CreateScopeRequest> request) async {
|
||||
return createScope(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.DeleteScopeResult> deleteScope_Pre($grpc.ServiceCall call, $async.Future<$19.DeleteScopeRequest> request) async {
|
||||
return deleteScope(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$19.CleanScopeResult> cleanScope_Pre($grpc.ServiceCall call, $async.Future<$19.CleanScopeRequest> request) async {
|
||||
return cleanScope(call, await 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);
|
||||
}
|
||||
203
lib/api.pbjson.dart
Normal file
203
lib/api.pbjson.dart
Normal file
@@ -0,0 +1,203 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: api.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use getPermissionsRequestDescriptor instead')
|
||||
const GetPermissionsRequest$json = {
|
||||
'1': 'GetPermissionsRequest',
|
||||
'2': [
|
||||
{'1': 'RscType', '3': 1, '4': 1, '5': 14, '6': '.api.ResourceType', '10': 'RscType'},
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 9, '10': 'Client'},
|
||||
{'1': 'Service', '3': 3, '4': 1, '5': 9, '10': 'Service'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetPermissionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getPermissionsRequestDescriptor = $convert.base64Decode(
|
||||
'ChVHZXRQZXJtaXNzaW9uc1JlcXVlc3QSKwoHUnNjVHlwZRgBIAEoDjIRLmFwaS5SZXNvdXJjZV'
|
||||
'R5cGVSB1JzY1R5cGUSFgoGQ2xpZW50GAIgASgJUgZDbGllbnQSGAoHU2VydmljZRgDIAEoCVIH'
|
||||
'U2VydmljZQ==');
|
||||
|
||||
@$core.Deprecated('Use getPermissionsResultDescriptor instead')
|
||||
const GetPermissionsResult$json = {
|
||||
'1': 'GetPermissionsResult',
|
||||
'2': [
|
||||
{'1': 'Permissions', '3': 5, '4': 3, '5': 11, '6': '.api.Permission', '10': 'Permissions'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetPermissionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getPermissionsResultDescriptor = $convert.base64Decode(
|
||||
'ChRHZXRQZXJtaXNzaW9uc1Jlc3VsdBIxCgtQZXJtaXNzaW9ucxgFIAMoCzIPLmFwaS5QZXJtaX'
|
||||
'NzaW9uUgtQZXJtaXNzaW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use getUIPermissionsRequestDescriptor instead')
|
||||
const GetUIPermissionsRequest$json = {
|
||||
'1': 'GetUIPermissionsRequest',
|
||||
'2': [
|
||||
{'1': 'RscType', '3': 1, '4': 1, '5': 14, '6': '.api.ResourceType', '10': 'RscType'},
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 9, '10': 'Client'},
|
||||
{'1': 'Service', '3': 3, '4': 1, '5': 9, '10': 'Service'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetUIPermissionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getUIPermissionsRequestDescriptor = $convert.base64Decode(
|
||||
'ChdHZXRVSVBlcm1pc3Npb25zUmVxdWVzdBIrCgdSc2NUeXBlGAEgASgOMhEuYXBpLlJlc291cm'
|
||||
'NlVHlwZVIHUnNjVHlwZRIWCgZDbGllbnQYAiABKAlSBkNsaWVudBIYCgdTZXJ2aWNlGAMgASgJ'
|
||||
'UgdTZXJ2aWNl');
|
||||
|
||||
@$core.Deprecated('Use getUIPermissionsResultDescriptor instead')
|
||||
const GetUIPermissionsResult$json = {
|
||||
'1': 'GetUIPermissionsResult',
|
||||
'2': [
|
||||
{'1': 'Permissions', '3': 1, '4': 3, '5': 11, '6': '.api.Permission', '10': 'Permissions'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetUIPermissionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getUIPermissionsResultDescriptor = $convert.base64Decode(
|
||||
'ChZHZXRVSVBlcm1pc3Npb25zUmVzdWx0EjEKC1Blcm1pc3Npb25zGAEgAygLMg8uYXBpLlBlcm'
|
||||
'1pc3Npb25SC1Blcm1pc3Npb25z');
|
||||
|
||||
@$core.Deprecated('Use listUserUIPermissionsRequestDescriptor instead')
|
||||
const ListUserUIPermissionsRequest$json = {
|
||||
'1': 'ListUserUIPermissionsRequest',
|
||||
'2': [
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Client'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListUserUIPermissionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listUserUIPermissionsRequestDescriptor = $convert.base64Decode(
|
||||
'ChxMaXN0VXNlclVJUGVybWlzc2lvbnNSZXF1ZXN0Eh8KBkNsaWVudBgCIAEoCUIH+kIEcgIQAV'
|
||||
'IGQ2xpZW50');
|
||||
|
||||
@$core.Deprecated('Use listUserUIPermissionsResultDescriptor instead')
|
||||
const ListUserUIPermissionsResult$json = {
|
||||
'1': 'ListUserUIPermissionsResult',
|
||||
'2': [
|
||||
{'1': 'Permissions', '3': 2, '4': 3, '5': 11, '6': '.api.UserUIPermissions', '10': 'Permissions'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListUserUIPermissionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listUserUIPermissionsResultDescriptor = $convert.base64Decode(
|
||||
'ChtMaXN0VXNlclVJUGVybWlzc2lvbnNSZXN1bHQSOAoLUGVybWlzc2lvbnMYAiADKAsyFi5hcG'
|
||||
'kuVXNlclVJUGVybWlzc2lvbnNSC1Blcm1pc3Npb25z');
|
||||
|
||||
@$core.Deprecated('Use registerPackageRequestDescriptor instead')
|
||||
const RegisterPackageRequest$json = {
|
||||
'1': 'RegisterPackageRequest',
|
||||
'2': [
|
||||
{'1': 'PackageName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'PackageName'},
|
||||
{'1': 'Clients', '3': 2, '4': 3, '5': 11, '6': '.api.ClientAPI', '10': 'Clients'},
|
||||
{'1': 'ForceFullScopeCreation', '3': 3, '4': 1, '5': 8, '10': 'ForceFullScopeCreation'},
|
||||
{'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'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterPackageRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerPackageRequestDescriptor = $convert.base64Decode(
|
||||
'ChZSZWdpc3RlclBhY2thZ2VSZXF1ZXN0EikKC1BhY2thZ2VOYW1lGAEgASgJQgf6QgRyAhABUg'
|
||||
'tQYWNrYWdlTmFtZRIoCgdDbGllbnRzGAIgAygLMg4uYXBpLkNsaWVudEFQSVIHQ2xpZW50cxI2'
|
||||
'ChZGb3JjZUZ1bGxTY29wZUNyZWF0aW9uGAMgASgIUhZGb3JjZUZ1bGxTY29wZUNyZWF0aW9uEh'
|
||||
'8KBVJvbGVzGAQgAygLMgkuYXBpLlJvbGVSBVJvbGVzEjUKCVdvcmtmbG93cxgFIAMoCzIXLmFw'
|
||||
'aS5Nb2R1bGVSZWdpc3RyYXRpb25SCVdvcmtmbG93cxIlCgdNb2R1bGVzGAYgAygLMgsuYXBpLk'
|
||||
'1vZHVsZVIHTW9kdWxlcw==');
|
||||
|
||||
@$core.Deprecated('Use registerPackageResultDescriptor instead')
|
||||
const RegisterPackageResult$json = {
|
||||
'1': 'RegisterPackageResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterPackageResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerPackageResultDescriptor = $convert.base64Decode(
|
||||
'ChVSZWdpc3RlclBhY2thZ2VSZXN1bHQ=');
|
||||
|
||||
@$core.Deprecated('Use createScopeRequestDescriptor instead')
|
||||
const CreateScopeRequest$json = {
|
||||
'1': 'CreateScopeRequest',
|
||||
'2': [
|
||||
{'1': 'ModuleName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ModuleName'},
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Client'},
|
||||
{'1': 'Scope', '3': 3, '4': 1, '5': 11, '6': '.api.Scope', '8': {}, '10': 'Scope'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createScopeRequestDescriptor = $convert.base64Decode(
|
||||
'ChJDcmVhdGVTY29wZVJlcXVlc3QSJwoKTW9kdWxlTmFtZRgBIAEoCUIH+kIEcgIQAVIKTW9kdW'
|
||||
'xlTmFtZRIfCgZDbGllbnQYAiABKAlCB/pCBHICEAFSBkNsaWVudBIqCgVTY29wZRgDIAEoCzIK'
|
||||
'LmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
|
||||
|
||||
@$core.Deprecated('Use createScopeResultDescriptor instead')
|
||||
const CreateScopeResult$json = {
|
||||
'1': 'CreateScopeResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateScopeResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createScopeResultDescriptor = $convert.base64Decode(
|
||||
'ChFDcmVhdGVTY29wZVJlc3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use deleteScopeRequestDescriptor instead')
|
||||
const DeleteScopeRequest$json = {
|
||||
'1': 'DeleteScopeRequest',
|
||||
'2': [
|
||||
{'1': 'ModuleName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ModuleName'},
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Client'},
|
||||
{'1': 'Scope', '3': 3, '4': 1, '5': 11, '6': '.api.Scope', '8': {}, '10': 'Scope'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteScopeRequestDescriptor = $convert.base64Decode(
|
||||
'ChJEZWxldGVTY29wZVJlcXVlc3QSJwoKTW9kdWxlTmFtZRgBIAEoCUIH+kIEcgIQAVIKTW9kdW'
|
||||
'xlTmFtZRIfCgZDbGllbnQYAiABKAlCB/pCBHICEAFSBkNsaWVudBIqCgVTY29wZRgDIAEoCzIK'
|
||||
'LmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
|
||||
|
||||
@$core.Deprecated('Use deleteScopeResultDescriptor instead')
|
||||
const DeleteScopeResult$json = {
|
||||
'1': 'DeleteScopeResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteScopeResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteScopeResultDescriptor = $convert.base64Decode(
|
||||
'ChFEZWxldGVTY29wZVJlc3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use cleanScopeRequestDescriptor instead')
|
||||
const CleanScopeRequest$json = {
|
||||
'1': 'CleanScopeRequest',
|
||||
'2': [
|
||||
{'1': 'Client', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Client'},
|
||||
{'1': 'Scope', '3': 2, '4': 1, '5': 11, '6': '.api.Scope', '8': {}, '10': 'Scope'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CleanScopeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cleanScopeRequestDescriptor = $convert.base64Decode(
|
||||
'ChFDbGVhblNjb3BlUmVxdWVzdBIfCgZDbGllbnQYASABKAlCB/pCBHICEAFSBkNsaWVudBIqCg'
|
||||
'VTY29wZRgCIAEoCzIKLmFwaS5TY29wZUII+kIFigECEAFSBVNjb3Bl');
|
||||
|
||||
@$core.Deprecated('Use cleanScopeResultDescriptor instead')
|
||||
const CleanScopeResult$json = {
|
||||
'1': 'CleanScopeResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `CleanScopeResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cleanScopeResultDescriptor = $convert.base64Decode(
|
||||
'ChBDbGVhblNjb3BlUmVzdWx0');
|
||||
|
||||
894
lib/attachmentType.pb.dart
Normal file
894
lib/attachmentType.pb.dart
Normal file
@@ -0,0 +1,894 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentType.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $28;
|
||||
import 'shared.pbenum.dart' as $28;
|
||||
|
||||
/// Create
|
||||
class CreateAttachmentTypeRequest extends $pb.GeneratedMessage {
|
||||
factory CreateAttachmentTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$core.String? code,
|
||||
$28.EntityType? entity,
|
||||
$core.String? label,
|
||||
$28.SharePolicy? sharePolicy,
|
||||
$core.Iterable<$core.String>? managerRoles,
|
||||
$core.Iterable<$core.String>? viewerRoles,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (code != null) {
|
||||
$result.code = code;
|
||||
}
|
||||
if (entity != null) {
|
||||
$result.entity = entity;
|
||||
}
|
||||
if (label != null) {
|
||||
$result.label = label;
|
||||
}
|
||||
if (sharePolicy != null) {
|
||||
$result.sharePolicy = sharePolicy;
|
||||
}
|
||||
if (managerRoles != null) {
|
||||
$result.managerRoles.addAll(managerRoles);
|
||||
}
|
||||
if (viewerRoles != null) {
|
||||
$result.viewerRoles.addAll(viewerRoles);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CreateAttachmentTypeRequest._() : super();
|
||||
factory CreateAttachmentTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateAttachmentTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAttachmentTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Code', protoName: 'Code')
|
||||
..e<$28.EntityType>(3, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $28.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $28.EntityType.valueOf, enumValues: $28.EntityType.values)
|
||||
..aOS(4, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
||||
..e<$28.SharePolicy>(5, _omitFieldNames ? '' : 'SharePolicy', $pb.PbFieldType.OE, protoName: 'SharePolicy', defaultOrMaker: $28.SharePolicy.SHARE_POLICY_UNKNOWN, valueOf: $28.SharePolicy.valueOf, enumValues: $28.SharePolicy.values)
|
||||
..pPS(6, _omitFieldNames ? '' : 'ManagerRoles', protoName: 'ManagerRoles')
|
||||
..pPS(7, _omitFieldNames ? '' : 'ViewerRoles', protoName: 'ViewerRoles')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateAttachmentTypeRequest clone() => CreateAttachmentTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateAttachmentTypeRequest copyWith(void Function(CreateAttachmentTypeRequest) updates) => super.copyWith((message) => updates(message as CreateAttachmentTypeRequest)) as CreateAttachmentTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAttachmentTypeRequest create() => CreateAttachmentTypeRequest._();
|
||||
CreateAttachmentTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateAttachmentTypeRequest> createRepeated() => $pb.PbList<CreateAttachmentTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAttachmentTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAttachmentTypeRequest>(create);
|
||||
static CreateAttachmentTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get code => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set code($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCode() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearCode() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$28.EntityType get entity => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set entity($28.EntityType v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntity() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntity() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get label => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set label($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLabel() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLabel() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$28.SharePolicy get sharePolicy => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set sharePolicy($28.SharePolicy v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasSharePolicy() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearSharePolicy() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$core.String> get managerRoles => $_getList(5);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$core.String> get viewerRoles => $_getList(6);
|
||||
}
|
||||
|
||||
class CreateAttachmentTypeResponse extends $pb.GeneratedMessage {
|
||||
factory CreateAttachmentTypeResponse({
|
||||
$28.AttachmentType? attachmentType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (attachmentType != null) {
|
||||
$result.attachmentType = attachmentType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CreateAttachmentTypeResponse._() : super();
|
||||
factory CreateAttachmentTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateAttachmentTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAttachmentTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.AttachmentType>(1, _omitFieldNames ? '' : 'AttachmentType', protoName: 'AttachmentType', subBuilder: $28.AttachmentType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateAttachmentTypeResponse clone() => CreateAttachmentTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateAttachmentTypeResponse copyWith(void Function(CreateAttachmentTypeResponse) updates) => super.copyWith((message) => updates(message as CreateAttachmentTypeResponse)) as CreateAttachmentTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAttachmentTypeResponse create() => CreateAttachmentTypeResponse._();
|
||||
CreateAttachmentTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateAttachmentTypeResponse> createRepeated() => $pb.PbList<CreateAttachmentTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateAttachmentTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAttachmentTypeResponse>(create);
|
||||
static CreateAttachmentTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType get attachmentType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set attachmentType($28.AttachmentType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAttachmentType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAttachmentType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType ensureAttachmentType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// Get
|
||||
class GetAttachmentTypeRequest extends $pb.GeneratedMessage {
|
||||
factory GetAttachmentTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$core.String? code,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$28.EntityType? entity,
|
||||
$core.String? iD,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (code != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.code = code;
|
||||
}
|
||||
if (entity != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.entity = entity;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetAttachmentTypeRequest._() : super();
|
||||
factory GetAttachmentTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetAttachmentTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAttachmentTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Code', protoName: 'Code')
|
||||
..e<$28.EntityType>(3, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $28.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $28.EntityType.valueOf, enumValues: $28.EntityType.values)
|
||||
..aOS(4, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetAttachmentTypeRequest clone() => GetAttachmentTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetAttachmentTypeRequest copyWith(void Function(GetAttachmentTypeRequest) updates) => super.copyWith((message) => updates(message as GetAttachmentTypeRequest)) as GetAttachmentTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAttachmentTypeRequest create() => GetAttachmentTypeRequest._();
|
||||
GetAttachmentTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetAttachmentTypeRequest> createRepeated() => $pb.PbList<GetAttachmentTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAttachmentTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAttachmentTypeRequest>(create);
|
||||
static GetAttachmentTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get code => $_getSZ(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
set code($core.String v) { $_setString(1, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCode() => $_has(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
void clearCode() => clearField(2);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$28.EntityType get entity => $_getN(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
set entity($28.EntityType v) { setField(3, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntity() => $_has(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntity() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get iD => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set iD($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasID() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearID() => clearField(4);
|
||||
}
|
||||
|
||||
class GetAttachmentTypeResponse extends $pb.GeneratedMessage {
|
||||
factory GetAttachmentTypeResponse({
|
||||
$28.AttachmentType? attachmentType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (attachmentType != null) {
|
||||
$result.attachmentType = attachmentType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetAttachmentTypeResponse._() : super();
|
||||
factory GetAttachmentTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetAttachmentTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAttachmentTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.AttachmentType>(1, _omitFieldNames ? '' : 'AttachmentType', protoName: 'AttachmentType', subBuilder: $28.AttachmentType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetAttachmentTypeResponse clone() => GetAttachmentTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetAttachmentTypeResponse copyWith(void Function(GetAttachmentTypeResponse) updates) => super.copyWith((message) => updates(message as GetAttachmentTypeResponse)) as GetAttachmentTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAttachmentTypeResponse create() => GetAttachmentTypeResponse._();
|
||||
GetAttachmentTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<GetAttachmentTypeResponse> createRepeated() => $pb.PbList<GetAttachmentTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetAttachmentTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetAttachmentTypeResponse>(create);
|
||||
static GetAttachmentTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType get attachmentType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set attachmentType($28.AttachmentType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAttachmentType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAttachmentType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType ensureAttachmentType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// List
|
||||
class ListAttachmentTypeRequest extends $pb.GeneratedMessage {
|
||||
factory ListAttachmentTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$28.EntityType? entity,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (entity != null) {
|
||||
$result.entity = entity;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListAttachmentTypeRequest._() : super();
|
||||
factory ListAttachmentTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListAttachmentTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAttachmentTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..e<$28.EntityType>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $28.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $28.EntityType.valueOf, enumValues: $28.EntityType.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListAttachmentTypeRequest clone() => ListAttachmentTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListAttachmentTypeRequest copyWith(void Function(ListAttachmentTypeRequest) updates) => super.copyWith((message) => updates(message as ListAttachmentTypeRequest)) as ListAttachmentTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAttachmentTypeRequest create() => ListAttachmentTypeRequest._();
|
||||
ListAttachmentTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAttachmentTypeRequest> createRepeated() => $pb.PbList<ListAttachmentTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAttachmentTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAttachmentTypeRequest>(create);
|
||||
static ListAttachmentTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityType get entity => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set entity($28.EntityType v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasEntity() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearEntity() => clearField(2);
|
||||
}
|
||||
|
||||
class ListAttachmentTypeResponse extends $pb.GeneratedMessage {
|
||||
factory ListAttachmentTypeResponse({
|
||||
$core.Iterable<$28.AttachmentType>? attachmentTypes,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (attachmentTypes != null) {
|
||||
$result.attachmentTypes.addAll(attachmentTypes);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListAttachmentTypeResponse._() : super();
|
||||
factory ListAttachmentTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListAttachmentTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAttachmentTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$28.AttachmentType>(1, _omitFieldNames ? '' : 'AttachmentTypes', $pb.PbFieldType.PM, protoName: 'AttachmentTypes', subBuilder: $28.AttachmentType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListAttachmentTypeResponse clone() => ListAttachmentTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListAttachmentTypeResponse copyWith(void Function(ListAttachmentTypeResponse) updates) => super.copyWith((message) => updates(message as ListAttachmentTypeResponse)) as ListAttachmentTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAttachmentTypeResponse create() => ListAttachmentTypeResponse._();
|
||||
ListAttachmentTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ListAttachmentTypeResponse> createRepeated() => $pb.PbList<ListAttachmentTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListAttachmentTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListAttachmentTypeResponse>(create);
|
||||
static ListAttachmentTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<$28.AttachmentType> get attachmentTypes => $_getList(0);
|
||||
}
|
||||
|
||||
/// Update
|
||||
class UpdateAttachmentTypeRequest extends $pb.GeneratedMessage {
|
||||
factory UpdateAttachmentTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$core.String? code,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$28.EntityType? entity,
|
||||
$core.String? label,
|
||||
$28.SharePolicy? sharePolicy,
|
||||
$core.String? iD,
|
||||
$core.Iterable<$core.String>? managerRoles,
|
||||
$core.Iterable<$core.String>? viewerRoles,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (code != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.code = code;
|
||||
}
|
||||
if (entity != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.entity = entity;
|
||||
}
|
||||
if (label != null) {
|
||||
$result.label = label;
|
||||
}
|
||||
if (sharePolicy != null) {
|
||||
$result.sharePolicy = sharePolicy;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
if (managerRoles != null) {
|
||||
$result.managerRoles.addAll(managerRoles);
|
||||
}
|
||||
if (viewerRoles != null) {
|
||||
$result.viewerRoles.addAll(viewerRoles);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
UpdateAttachmentTypeRequest._() : super();
|
||||
factory UpdateAttachmentTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateAttachmentTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAttachmentTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Code', protoName: 'Code')
|
||||
..e<$28.EntityType>(3, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $28.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $28.EntityType.valueOf, enumValues: $28.EntityType.values)
|
||||
..aOS(4, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
||||
..e<$28.SharePolicy>(5, _omitFieldNames ? '' : 'SharePolicy', $pb.PbFieldType.OE, protoName: 'SharePolicy', defaultOrMaker: $28.SharePolicy.SHARE_POLICY_UNKNOWN, valueOf: $28.SharePolicy.valueOf, enumValues: $28.SharePolicy.values)
|
||||
..aOS(6, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..pPS(7, _omitFieldNames ? '' : 'ManagerRoles', protoName: 'ManagerRoles')
|
||||
..pPS(8, _omitFieldNames ? '' : 'ViewerRoles', protoName: 'ViewerRoles')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateAttachmentTypeRequest clone() => UpdateAttachmentTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateAttachmentTypeRequest copyWith(void Function(UpdateAttachmentTypeRequest) updates) => super.copyWith((message) => updates(message as UpdateAttachmentTypeRequest)) as UpdateAttachmentTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAttachmentTypeRequest create() => UpdateAttachmentTypeRequest._();
|
||||
UpdateAttachmentTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateAttachmentTypeRequest> createRepeated() => $pb.PbList<UpdateAttachmentTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAttachmentTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateAttachmentTypeRequest>(create);
|
||||
static UpdateAttachmentTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get code => $_getSZ(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
set code($core.String v) { $_setString(1, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCode() => $_has(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
void clearCode() => clearField(2);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$28.EntityType get entity => $_getN(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
set entity($28.EntityType v) { setField(3, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntity() => $_has(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntity() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get label => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set label($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLabel() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLabel() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$28.SharePolicy get sharePolicy => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set sharePolicy($28.SharePolicy v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasSharePolicy() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearSharePolicy() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get iD => $_getSZ(5);
|
||||
@$pb.TagNumber(6)
|
||||
set iD($core.String v) { $_setString(5, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasID() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearID() => clearField(6);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$core.String> get managerRoles => $_getList(6);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.List<$core.String> get viewerRoles => $_getList(7);
|
||||
}
|
||||
|
||||
class UpdateAttachmentTypeResponse extends $pb.GeneratedMessage {
|
||||
factory UpdateAttachmentTypeResponse({
|
||||
$28.AttachmentType? attachmentType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (attachmentType != null) {
|
||||
$result.attachmentType = attachmentType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
UpdateAttachmentTypeResponse._() : super();
|
||||
factory UpdateAttachmentTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateAttachmentTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateAttachmentTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.AttachmentType>(1, _omitFieldNames ? '' : 'AttachmentType', protoName: 'AttachmentType', subBuilder: $28.AttachmentType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateAttachmentTypeResponse clone() => UpdateAttachmentTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateAttachmentTypeResponse copyWith(void Function(UpdateAttachmentTypeResponse) updates) => super.copyWith((message) => updates(message as UpdateAttachmentTypeResponse)) as UpdateAttachmentTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAttachmentTypeResponse create() => UpdateAttachmentTypeResponse._();
|
||||
UpdateAttachmentTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateAttachmentTypeResponse> createRepeated() => $pb.PbList<UpdateAttachmentTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateAttachmentTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateAttachmentTypeResponse>(create);
|
||||
static UpdateAttachmentTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType get attachmentType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set attachmentType($28.AttachmentType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAttachmentType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAttachmentType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.AttachmentType ensureAttachmentType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// Delete
|
||||
class DeleteAttachmentTypeRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteAttachmentTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$core.String? code,
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
$28.EntityType? entity,
|
||||
$core.String? iD,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (code != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.code = code;
|
||||
}
|
||||
if (entity != null) {
|
||||
// ignore: deprecated_member_use_from_same_package
|
||||
$result.entity = entity;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteAttachmentTypeRequest._() : super();
|
||||
factory DeleteAttachmentTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteAttachmentTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAttachmentTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Code', protoName: 'Code')
|
||||
..e<$28.EntityType>(3, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $28.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $28.EntityType.valueOf, enumValues: $28.EntityType.values)
|
||||
..aOS(4, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAttachmentTypeRequest clone() => DeleteAttachmentTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAttachmentTypeRequest copyWith(void Function(DeleteAttachmentTypeRequest) updates) => super.copyWith((message) => updates(message as DeleteAttachmentTypeRequest)) as DeleteAttachmentTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAttachmentTypeRequest create() => DeleteAttachmentTypeRequest._();
|
||||
DeleteAttachmentTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAttachmentTypeRequest> createRepeated() => $pb.PbList<DeleteAttachmentTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAttachmentTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAttachmentTypeRequest>(create);
|
||||
static DeleteAttachmentTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get code => $_getSZ(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
set code($core.String v) { $_setString(1, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCode() => $_has(1);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(2)
|
||||
void clearCode() => clearField(2);
|
||||
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$28.EntityType get entity => $_getN(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
set entity($28.EntityType v) { setField(3, v); }
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntity() => $_has(2);
|
||||
@$core.Deprecated('This field is deprecated.')
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntity() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get iD => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set iD($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasID() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearID() => clearField(4);
|
||||
}
|
||||
|
||||
class DeleteAttachmentTypeResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteAttachmentTypeResponse() => create();
|
||||
DeleteAttachmentTypeResponse._() : super();
|
||||
factory DeleteAttachmentTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteAttachmentTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAttachmentTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAttachmentTypeResponse clone() => DeleteAttachmentTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAttachmentTypeResponse copyWith(void Function(DeleteAttachmentTypeResponse) updates) => super.copyWith((message) => updates(message as DeleteAttachmentTypeResponse)) as DeleteAttachmentTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAttachmentTypeResponse create() => DeleteAttachmentTypeResponse._();
|
||||
DeleteAttachmentTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAttachmentTypeResponse> createRepeated() => $pb.PbList<DeleteAttachmentTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAttachmentTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAttachmentTypeResponse>(create);
|
||||
static DeleteAttachmentTypeResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
class DeleteAllAttachmentsTypeRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteAllAttachmentsTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteAllAttachmentsTypeRequest._() : super();
|
||||
factory DeleteAllAttachmentsTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteAllAttachmentsTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAttachmentsTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAllAttachmentsTypeRequest clone() => DeleteAllAttachmentsTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAllAttachmentsTypeRequest copyWith(void Function(DeleteAllAttachmentsTypeRequest) updates) => super.copyWith((message) => updates(message as DeleteAllAttachmentsTypeRequest)) as DeleteAllAttachmentsTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAllAttachmentsTypeRequest create() => DeleteAllAttachmentsTypeRequest._();
|
||||
DeleteAllAttachmentsTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAllAttachmentsTypeRequest> createRepeated() => $pb.PbList<DeleteAllAttachmentsTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAllAttachmentsTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAttachmentsTypeRequest>(create);
|
||||
static DeleteAllAttachmentsTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
class DeleteAllAttachmentsTypeResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteAllAttachmentsTypeResponse() => create();
|
||||
DeleteAllAttachmentsTypeResponse._() : super();
|
||||
factory DeleteAllAttachmentsTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteAllAttachmentsTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllAttachmentsTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAllAttachmentsTypeResponse clone() => DeleteAllAttachmentsTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteAllAttachmentsTypeResponse copyWith(void Function(DeleteAllAttachmentsTypeResponse) updates) => super.copyWith((message) => updates(message as DeleteAllAttachmentsTypeResponse)) as DeleteAllAttachmentsTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAllAttachmentsTypeResponse create() => DeleteAllAttachmentsTypeResponse._();
|
||||
DeleteAllAttachmentsTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteAllAttachmentsTypeResponse> createRepeated() => $pb.PbList<DeleteAllAttachmentsTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteAllAttachmentsTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllAttachmentsTypeResponse>(create);
|
||||
static DeleteAllAttachmentsTypeResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/attachmentType.pbenum.dart
Normal file
11
lib/attachmentType.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentType.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
159
lib/attachmentType.pbgrpc.dart
Normal file
159
lib/attachmentType.pbgrpc.dart
Normal file
@@ -0,0 +1,159 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentType.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'attachmentType.pb.dart' as $14;
|
||||
|
||||
export 'attachmentType.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.AttachmentTypeService')
|
||||
class AttachmentTypeServiceClient extends $grpc.Client {
|
||||
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));
|
||||
|
||||
AttachmentTypeServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$14.CreateAttachmentTypeResponse> create($14.CreateAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$14.GetAttachmentTypeResponse> get($14.GetAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$14.ListAttachmentTypeResponse> list($14.ListAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$14.UpdateAttachmentTypeResponse> update($14.UpdateAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$update, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$14.DeleteAttachmentTypeResponse> delete($14.DeleteAttachmentTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$14.DeleteAllAttachmentsTypeResponse> deleteAll($14.DeleteAllAttachmentsTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteAll, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.AttachmentTypeService')
|
||||
abstract class AttachmentTypeServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.AttachmentTypeService';
|
||||
|
||||
AttachmentTypeServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$14.CreateAttachmentTypeRequest, $14.CreateAttachmentTypeResponse>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($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) => $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) => $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) => $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) => $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) => $14.DeleteAllAttachmentsTypeRequest.fromBuffer(value),
|
||||
($14.DeleteAllAttachmentsTypeResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$14.CreateAttachmentTypeResponse> create_Pre($grpc.ServiceCall call, $async.Future<$14.CreateAttachmentTypeRequest> request) async {
|
||||
return create(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$14.GetAttachmentTypeResponse> get_Pre($grpc.ServiceCall call, $async.Future<$14.GetAttachmentTypeRequest> request) async {
|
||||
return get(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$14.ListAttachmentTypeResponse> list_Pre($grpc.ServiceCall call, $async.Future<$14.ListAttachmentTypeRequest> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$14.UpdateAttachmentTypeResponse> update_Pre($grpc.ServiceCall call, $async.Future<$14.UpdateAttachmentTypeRequest> request) async {
|
||||
return update(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$14.DeleteAttachmentTypeResponse> delete_Pre($grpc.ServiceCall call, $async.Future<$14.DeleteAttachmentTypeRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$14.DeleteAllAttachmentsTypeResponse> deleteAll_Pre($grpc.ServiceCall call, $async.Future<$14.DeleteAllAttachmentsTypeRequest> request) async {
|
||||
return deleteAll(call, await 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);
|
||||
}
|
||||
256
lib/attachmentType.pbjson.dart
Normal file
256
lib/attachmentType.pbjson.dart
Normal file
@@ -0,0 +1,256 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentType.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use createAttachmentTypeRequestDescriptor instead')
|
||||
const CreateAttachmentTypeRequest$json = {
|
||||
'1': 'CreateAttachmentTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Code', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Code'},
|
||||
{'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(
|
||||
'ChtDcmVhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkEKBENvZGUYAiABKAlCLZJBEooB'
|
||||
'D15bYS16QS1aMC05LV0rJPpCFXITEAEyD15bYS16QS1aMC05LV0rJFIEQ29kZRIxCgZFbnRpdH'
|
||||
'kYAyABKA4yDy5hcGkuRW50aXR5VHlwZUII+kIFggECEAFSBkVudGl0eRIdCgVMYWJlbBgEIAEo'
|
||||
'CUIH+kIEcgIQAVIFTGFiZWwSPAoLU2hhcmVQb2xpY3kYBSABKA4yEC5hcGkuU2hhcmVQb2xpY3'
|
||||
'lCCPpCBYIBAhABUgtTaGFyZVBvbGljeRIiCgxNYW5hZ2VyUm9sZXMYBiADKAlSDE1hbmFnZXJS'
|
||||
'b2xlcxIgCgtWaWV3ZXJSb2xlcxgHIAMoCVILVmlld2VyUm9sZXM6NJJBMQov0gEGSGVhZGVy0g'
|
||||
'EEQ29kZdIBBkVudGl0edIBBUxhYmVs0gELU2hhcmVQb2xpY3k=');
|
||||
|
||||
@$core.Deprecated('Use createAttachmentTypeResponseDescriptor instead')
|
||||
const CreateAttachmentTypeResponse$json = {
|
||||
'1': 'CreateAttachmentTypeResponse',
|
||||
'2': [
|
||||
{'1': 'AttachmentType', '3': 1, '4': 1, '5': 11, '6': '.api.AttachmentType', '8': {}, '10': 'AttachmentType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createAttachmentTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChxDcmVhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
|
||||
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use getAttachmentTypeRequestDescriptor instead')
|
||||
const GetAttachmentTypeRequest$json = {
|
||||
'1': 'GetAttachmentTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{
|
||||
'1': 'Code',
|
||||
'3': 2,
|
||||
'4': 1,
|
||||
'5': 9,
|
||||
'8': {'3': true},
|
||||
'10': 'Code',
|
||||
},
|
||||
{
|
||||
'1': 'Entity',
|
||||
'3': 3,
|
||||
'4': 1,
|
||||
'5': 14,
|
||||
'6': '.api.EntityType',
|
||||
'8': {'3': true},
|
||||
'10': 'Entity',
|
||||
},
|
||||
{'1': 'ID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAttachmentTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChhHZXRBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkERigEO'
|
||||
'XlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GAMgAS'
|
||||
'gOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRI5CgJJRBgEIAEoCUIpkkER'
|
||||
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSAklEOh6SQRsKGdIBBkhlYW'
|
||||
'RlctIBBENvZGXSAQZFbnRpdHk=');
|
||||
|
||||
@$core.Deprecated('Use getAttachmentTypeResponseDescriptor instead')
|
||||
const GetAttachmentTypeResponse$json = {
|
||||
'1': 'GetAttachmentTypeResponse',
|
||||
'2': [
|
||||
{'1': 'AttachmentType', '3': 1, '4': 1, '5': 11, '6': '.api.AttachmentType', '8': {}, '10': 'AttachmentType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getAttachmentTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChlHZXRBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMhMuYX'
|
||||
'BpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use listAttachmentTypeRequestDescriptor instead')
|
||||
const ListAttachmentTypeRequest$json = {
|
||||
'1': 'ListAttachmentTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Entity', '3': 2, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'Entity'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAttachmentTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChlMaXN0QXR0YWNobWVudFR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
||||
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIxCgZFbnRpdHkYAiABKA4yDy5hcGku'
|
||||
'RW50aXR5VHlwZUII+kIFggECEAFSBkVudGl0eToOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use listAttachmentTypeResponseDescriptor instead')
|
||||
const ListAttachmentTypeResponse$json = {
|
||||
'1': 'ListAttachmentTypeResponse',
|
||||
'2': [
|
||||
{'1': 'AttachmentTypes', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentType', '8': {}, '10': 'AttachmentTypes'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAttachmentTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChpMaXN0QXR0YWNobWVudFR5cGVSZXNwb25zZRJHCg9BdHRhY2htZW50VHlwZXMYASADKAsyEy'
|
||||
'5hcGkuQXR0YWNobWVudFR5cGVCCPpCBZIBAggBUg9BdHRhY2htZW50VHlwZXM=');
|
||||
|
||||
@$core.Deprecated('Use updateAttachmentTypeRequestDescriptor instead')
|
||||
const UpdateAttachmentTypeRequest$json = {
|
||||
'1': 'UpdateAttachmentTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{
|
||||
'1': 'Code',
|
||||
'3': 2,
|
||||
'4': 1,
|
||||
'5': 9,
|
||||
'8': {'3': true},
|
||||
'10': 'Code',
|
||||
},
|
||||
{
|
||||
'1': 'Entity',
|
||||
'3': 3,
|
||||
'4': 1,
|
||||
'5': 14,
|
||||
'6': '.api.EntityType',
|
||||
'8': {'3': true},
|
||||
'10': 'Entity',
|
||||
},
|
||||
{'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(
|
||||
'ChtVcGRhdGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkER'
|
||||
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GA'
|
||||
'MgASgOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRIUCgVMYWJlbBgEIAEo'
|
||||
'CVIFTGFiZWwSPAoLU2hhcmVQb2xpY3kYBSABKA4yEC5hcGkuU2hhcmVQb2xpY3lCCPpCBYIBAh'
|
||||
'ABUgtTaGFyZVBvbGljeRI5CgJJRBgGIAEoCUIpkkERigEOXlthLXpBLVowLTktXSr6QhJyEDIO'
|
||||
'XlthLXpBLVowLTktXSpSAklEEiIKDE1hbmFnZXJSb2xlcxgHIAMoCVIMTWFuYWdlclJvbGVzEi'
|
||||
'AKC1ZpZXdlclJvbGVzGAggAygJUgtWaWV3ZXJSb2xlczoekkEbChnSAQZIZWFkZXLSAQRDb2Rl'
|
||||
'0gEGRW50aXR5');
|
||||
|
||||
@$core.Deprecated('Use updateAttachmentTypeResponseDescriptor instead')
|
||||
const UpdateAttachmentTypeResponse$json = {
|
||||
'1': 'UpdateAttachmentTypeResponse',
|
||||
'2': [
|
||||
{'1': 'AttachmentType', '3': 1, '4': 1, '5': 11, '6': '.api.AttachmentType', '8': {}, '10': 'AttachmentType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateAttachmentTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChxVcGRhdGVBdHRhY2htZW50VHlwZVJlc3BvbnNlEkUKDkF0dGFjaG1lbnRUeXBlGAEgASgLMh'
|
||||
'MuYXBpLkF0dGFjaG1lbnRUeXBlQgj6QgWKAQIQAVIOQXR0YWNobWVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use deleteAttachmentTypeRequestDescriptor instead')
|
||||
const DeleteAttachmentTypeRequest$json = {
|
||||
'1': 'DeleteAttachmentTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{
|
||||
'1': 'Code',
|
||||
'3': 2,
|
||||
'4': 1,
|
||||
'5': 9,
|
||||
'8': {'3': true},
|
||||
'10': 'Code',
|
||||
},
|
||||
{
|
||||
'1': 'Entity',
|
||||
'3': 3,
|
||||
'4': 1,
|
||||
'5': 14,
|
||||
'6': '.api.EntityType',
|
||||
'8': {'3': true},
|
||||
'10': 'Entity',
|
||||
},
|
||||
{'1': 'ID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAttachmentTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAttachmentTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChtEZWxldGVBdHRhY2htZW50VHlwZVJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEj8KBENvZGUYAiABKAlCKxgBkkER'
|
||||
'igEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSBENvZGUSMwoGRW50aXR5GA'
|
||||
'MgASgOMg8uYXBpLkVudGl0eVR5cGVCChgB+kIFggECEAFSBkVudGl0eRI5CgJJRBgEIAEoCUIp'
|
||||
'kkERigEOXlthLXpBLVowLTktXSr6QhJyEDIOXlthLXpBLVowLTktXSpSAklEOh6SQRsKGdIBBk'
|
||||
'hlYWRlctIBBENvZGXSAQZFbnRpdHk=');
|
||||
|
||||
@$core.Deprecated('Use deleteAttachmentTypeResponseDescriptor instead')
|
||||
const DeleteAttachmentTypeResponse$json = {
|
||||
'1': 'DeleteAttachmentTypeResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAttachmentTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAttachmentTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChxEZWxldGVBdHRhY2htZW50VHlwZVJlc3BvbnNl');
|
||||
|
||||
@$core.Deprecated('Use deleteAllAttachmentsTypeRequestDescriptor instead')
|
||||
const DeleteAllAttachmentsTypeRequest$json = {
|
||||
'1': 'DeleteAllAttachmentsTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAllAttachmentsTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAllAttachmentsTypeRequestDescriptor = $convert.base64Decode(
|
||||
'Ch9EZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS'
|
||||
'5SZXF1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlcjoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use deleteAllAttachmentsTypeResponseDescriptor instead')
|
||||
const DeleteAllAttachmentsTypeResponse$json = {
|
||||
'1': 'DeleteAllAttachmentsTypeResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAllAttachmentsTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAllAttachmentsTypeResponseDescriptor = $convert.base64Decode(
|
||||
'CiBEZWxldGVBbGxBdHRhY2htZW50c1R5cGVSZXNwb25zZQ==');
|
||||
|
||||
1304
lib/attachmentV2.pb.dart
Normal file
1304
lib/attachmentV2.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
34
lib/attachmentV2.pbenum.dart
Normal file
34
lib/attachmentV2.pbenum.dart
Normal file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentV2.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class AttachmentKind extends $pb.ProtobufEnum {
|
||||
static const AttachmentKind ATTACHMENT_KIND_UNKNOWN = AttachmentKind._(0, _omitEnumNames ? '' : 'ATTACHMENT_KIND_UNKNOWN');
|
||||
static const AttachmentKind ATTACHMENT_KIND_FILE = AttachmentKind._(1, _omitEnumNames ? '' : 'ATTACHMENT_KIND_FILE');
|
||||
static const AttachmentKind ATTACHMENT_KIND_LINK = AttachmentKind._(2, _omitEnumNames ? '' : 'ATTACHMENT_KIND_LINK');
|
||||
|
||||
static const $core.List<AttachmentKind> values = <AttachmentKind> [
|
||||
ATTACHMENT_KIND_UNKNOWN,
|
||||
ATTACHMENT_KIND_FILE,
|
||||
ATTACHMENT_KIND_LINK,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, AttachmentKind> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static AttachmentKind? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const AttachmentKind._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
179
lib/attachmentV2.pbgrpc.dart
Normal file
179
lib/attachmentV2.pbgrpc.dart
Normal file
@@ -0,0 +1,179 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentV2.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'attachmentV2.pb.dart' as $15;
|
||||
|
||||
export 'attachmentV2.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.AttachmentServiceV2')
|
||||
class AttachmentServiceV2Client extends $grpc.Client {
|
||||
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));
|
||||
|
||||
AttachmentServiceV2Client($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$15.UploadAttachmentV2Response> upload($15.UploadAttachmentV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$upload, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.AddLinkV2Response> addLink($15.AddLinkV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$addLink, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.DownloadAttachmentV2Response> download($15.DownloadAttachmentV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$download, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.DeleteAttachmentV2Response> delete($15.DeleteAttachmentV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.ListAttachmentsV2Response> list($15.ListAttachmentsV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.ShareAttachmentV2Response> share($15.ShareAttachmentV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$share, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$15.DeleteAllAttachmentsV2Response> deleteAll($15.DeleteAllAttachmentsV2Request request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteAll, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.AttachmentServiceV2')
|
||||
abstract class AttachmentServiceV2ServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.AttachmentServiceV2';
|
||||
|
||||
AttachmentServiceV2ServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$15.UploadAttachmentV2Request, $15.UploadAttachmentV2Response>(
|
||||
'Upload',
|
||||
upload_Pre,
|
||||
false,
|
||||
false,
|
||||
($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) => $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) => $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) => $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) => $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) => $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) => $15.DeleteAllAttachmentsV2Request.fromBuffer(value),
|
||||
($15.DeleteAllAttachmentsV2Response value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$15.UploadAttachmentV2Response> upload_Pre($grpc.ServiceCall call, $async.Future<$15.UploadAttachmentV2Request> request) async {
|
||||
return upload(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.AddLinkV2Response> addLink_Pre($grpc.ServiceCall call, $async.Future<$15.AddLinkV2Request> request) async {
|
||||
return addLink(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.DownloadAttachmentV2Response> download_Pre($grpc.ServiceCall call, $async.Future<$15.DownloadAttachmentV2Request> request) async {
|
||||
return download(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.DeleteAttachmentV2Response> delete_Pre($grpc.ServiceCall call, $async.Future<$15.DeleteAttachmentV2Request> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.ListAttachmentsV2Response> list_Pre($grpc.ServiceCall call, $async.Future<$15.ListAttachmentsV2Request> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.ShareAttachmentV2Response> share_Pre($grpc.ServiceCall call, $async.Future<$15.ShareAttachmentV2Request> request) async {
|
||||
return share(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$15.DeleteAllAttachmentsV2Response> deleteAll_Pre($grpc.ServiceCall call, $async.Future<$15.DeleteAllAttachmentsV2Request> request) async {
|
||||
return deleteAll(call, await 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);
|
||||
}
|
||||
335
lib/attachmentV2.pbjson.dart
Normal file
335
lib/attachmentV2.pbjson.dart
Normal file
@@ -0,0 +1,335 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: attachmentV2.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use attachmentKindDescriptor instead')
|
||||
const AttachmentKind$json = {
|
||||
'1': 'AttachmentKind',
|
||||
'2': [
|
||||
{'1': 'ATTACHMENT_KIND_UNKNOWN', '2': 0},
|
||||
{'1': 'ATTACHMENT_KIND_FILE', '2': 1},
|
||||
{'1': 'ATTACHMENT_KIND_LINK', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AttachmentKind`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List attachmentKindDescriptor = $convert.base64Decode(
|
||||
'Cg5BdHRhY2htZW50S2luZBIbChdBVFRBQ0hNRU5UX0tJTkRfVU5LTk9XThAAEhgKFEFUVEFDSE'
|
||||
'1FTlRfS0lORF9GSUxFEAESGAoUQVRUQUNITUVOVF9LSU5EX0xJTksQAg==');
|
||||
|
||||
@$core.Deprecated('Use attachmentDescriptor instead')
|
||||
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'},
|
||||
{'1': 'URI', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'URI'},
|
||||
{'1': 'MIMEType', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'MIMEType'},
|
||||
{'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'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Attachment`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List attachmentDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'DownloadAttachmentV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestAttachmentTypeHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DownloadAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List downloadAttachmentV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChtEb3dubG9hZEF0dGFjaG1lbnRWMlJlcXVlc3QSQgoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcX'
|
||||
'Vlc3RBdHRhY2htZW50VHlwZUhlYWRlckII+kIFigECEAFSBkhlYWRlchJCCgROYW1lGAIgASgJ'
|
||||
'Qi6SQSQyIk5hbWUgb2YgdGhlIGF0dGFjaG1lbnQgdG8gZG93bmxvYWT6QgRyAhABUgROYW1lEm'
|
||||
'YKC0VudGl0eVJlZklEGAMgASgJQkSSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVy'
|
||||
'ZSB0aGUgYXR0YWNobWVudCBpcyBsb2NhdGVk+kIEcgIQAVILRW50aXR5UmVmSUQ6I5JBIAoe0g'
|
||||
'EGSGVhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE');
|
||||
|
||||
@$core.Deprecated('Use downloadAttachmentV2ResponseDescriptor instead')
|
||||
const DownloadAttachmentV2Response$json = {
|
||||
'1': 'DownloadAttachmentV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.AttachmentTypeResponseHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'File', '3': 1, '4': 1, '5': 11, '6': '.api.FileDataResponse', '8': {}, '10': 'File'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DownloadAttachmentV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List downloadAttachmentV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChxEb3dubG9hZEF0dGFjaG1lbnRWMlJlc3BvbnNlElYKBkhlYWRlchgCIAEoCzIhLmFwaS5BdH'
|
||||
'RhY2htZW50VHlwZVJlc3BvbnNlSGVhZGVyQhuSQRgyFkhlYWRlciBvZiB0aGUgcmVzcG9uc2VS'
|
||||
'BkhlYWRlchIzCgRGaWxlGAEgASgLMhUuYXBpLkZpbGVEYXRhUmVzcG9uc2VCCPpCBYoBAhABUg'
|
||||
'RGaWxl');
|
||||
|
||||
@$core.Deprecated('Use uploadAttachmentV2RequestDescriptor instead')
|
||||
const UploadAttachmentV2Request$json = {
|
||||
'1': 'UploadAttachmentV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestAttachmentTypeHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
{'1': 'Attachment', '3': 4, '4': 1, '5': 11, '6': '.api.FileDataRequest', '8': {}, '10': 'Attachment'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `UploadAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List uploadAttachmentV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChlVcGxvYWRBdHRhY2htZW50VjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
|
||||
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISZgoLRW50aXR5UmVmSUQY'
|
||||
'AyABKAlCRJJBOjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2htZW'
|
||||
'50IGlzIGxvY2F0ZWT6QgRyAhABUgtFbnRpdHlSZWZJRBI+CgpBdHRhY2htZW50GAQgASgLMhQu'
|
||||
'YXBpLkZpbGVEYXRhUmVxdWVzdEII+kIFigECEAFSCkF0dGFjaG1lbnQ6PJJBOQo30gEGSGVhZG'
|
||||
'Vy0gEQQXR0YWNobWVudFR5cGVJRNIBC0VudGl0eVJlZklE0gEKQXR0YWNobWVudA==');
|
||||
|
||||
@$core.Deprecated('Use uploadAttachmentV2ResponseDescriptor instead')
|
||||
const UploadAttachmentV2Response$json = {
|
||||
'1': 'UploadAttachmentV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.AttachmentTypeResponseHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Attachment', '3': 1, '4': 1, '5': 11, '6': '.api.Attachment', '8': {}, '10': 'Attachment'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UploadAttachmentV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List uploadAttachmentV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChpVcGxvYWRBdHRhY2htZW50VjJSZXNwb25zZRJWCgZIZWFkZXIYAiABKAsyIS5hcGkuQXR0YW'
|
||||
'NobWVudFR5cGVSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZI'
|
||||
'ZWFkZXISOQoKQXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgj6QgWKAQIQAVIKQX'
|
||||
'R0YWNobWVudA==');
|
||||
|
||||
@$core.Deprecated('Use addLinkV2RequestDescriptor instead')
|
||||
const AddLinkV2Request$json = {
|
||||
'1': 'AddLinkV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestAttachmentTypeHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
{'1': 'Name', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'URI', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'URI'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AddLinkV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addLinkV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChBBZGRMaW5rVjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZXN0QXR0YWNobW'
|
||||
'VudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISZgoLRW50aXR5UmVmSUQYAyABKAlCRJJB'
|
||||
'OjI4SWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2htZW50IGlzIGxvY2'
|
||||
'F0ZWT6QgRyAhABUgtFbnRpdHlSZWZJRBJFCgROYW1lGAQgASgJQjGSQScyJU5hbWUgb2YgdGhl'
|
||||
'IGxpbmsgdG8gYWRkIHRvIHRoZSBlbnRpdHn6QgRyAhABUgROYW1lEjYKA1VSSRgFIAEoCUIkkk'
|
||||
'EaMhhVUkkgdG8gYWRkIHRvIHRoZSBlbnRpdHn6QgRyAhABUgNVUkk6PJJBOQo30gEGSGVhZGVy'
|
||||
'0gEQQXR0YWNobWVudFR5cGVJRNIBC0VudGl0eVJlZklE0gEETmFtZdIBA1VSSQ==');
|
||||
|
||||
@$core.Deprecated('Use addLinkV2ResponseDescriptor instead')
|
||||
const AddLinkV2Response$json = {
|
||||
'1': 'AddLinkV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.AttachmentTypeResponseHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Attachment', '3': 1, '4': 1, '5': 11, '6': '.api.Attachment', '8': {}, '10': 'Attachment'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AddLinkV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List addLinkV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChFBZGRMaW5rVjJSZXNwb25zZRJWCgZIZWFkZXIYAiABKAsyIS5hcGkuQXR0YWNobWVudFR5cG'
|
||||
'VSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISOQoK'
|
||||
'QXR0YWNobWVudBgBIAEoCzIPLmFwaS5BdHRhY2htZW50Qgj6QgWKAQIQAVIKQXR0YWNobWVudA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use deleteAttachmentV2RequestDescriptor instead')
|
||||
const DeleteAttachmentV2Request$json = {
|
||||
'1': 'DeleteAttachmentV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestAttachmentTypeHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAttachmentV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChlEZWxldGVBdHRhY2htZW50VjJSZXF1ZXN0EkIKBkhlYWRlchgBIAEoCzIgLmFwaS5SZXF1ZX'
|
||||
'N0QXR0YWNobWVudFR5cGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISQgoETmFtZRgCIAEoCUIu'
|
||||
'kkEkMiJOYW1lIG9mIHRoZSBhdHRhY2htZW50IHRvIGRvd25sb2Fk+kIEcgIQAVIETmFtZRJmCg'
|
||||
'tFbnRpdHlSZWZJRBgDIAEoCUJEkkE6MjhJZGVudGlmaWVyIG9mIHRoZSBlbnRpdHkgd2hlcmUg'
|
||||
'dGhlIGF0dGFjaG1lbnQgaXMgbG9jYXRlZPpCBHICEAFSC0VudGl0eVJlZklEOjaSQTMKMdIBBk'
|
||||
'hlYWRlctIBBE5hbWXSAQtFbnRpdHlSZWZJRNIBEEF0dGFjaG1lbnRUeXBlSUQ=');
|
||||
|
||||
@$core.Deprecated('Use deleteAttachmentV2ResponseDescriptor instead')
|
||||
const DeleteAttachmentV2Response$json = {
|
||||
'1': 'DeleteAttachmentV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.AttachmentTypeResponseHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAttachmentV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAttachmentV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChpEZWxldGVBdHRhY2htZW50VjJSZXNwb25zZRJWCgZIZWFkZXIYASABKAsyIS5hcGkuQXR0YW'
|
||||
'NobWVudFR5cGVSZXNwb25zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZI'
|
||||
'ZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use listAttachmentsV2RequestDescriptor instead')
|
||||
const ListAttachmentsV2Request$json = {
|
||||
'1': 'ListAttachmentsV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
{'1': 'EntityType', '3': 4, '4': 1, '5': 14, '6': '.api.EntityType', '8': {}, '10': 'EntityType'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAttachmentsV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAttachmentsV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChhMaXN0QXR0YWNobWVudHNWMlJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEmoKC0VudGl0eVJlZklEGAMgASgJQkiS'
|
||||
'QUUyQ09wdGlvbmFsIDogSWRlbnRpZmllciBvZiB0aGUgZW50aXR5IHdoZXJlIHRoZSBhdHRhY2'
|
||||
'htZW50IGlzIGxvY2F0ZWRSC0VudGl0eVJlZklEEnMKCkVudGl0eVR5cGUYBCABKA4yDy5hcGku'
|
||||
'RW50aXR5VHlwZUJCkkE/Mj1PcHRpb25hbCA6IFR5cGUgb2YgdGhlIGVudGl0eSB3aGVyZSB0aG'
|
||||
'UgYXR0YWNobWVudCBpcyBsb2NhdGVkUgpFbnRpdHlUeXBlOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use listAttachmentsV2ResponseDescriptor instead')
|
||||
const ListAttachmentsV2Response$json = {
|
||||
'1': 'ListAttachmentsV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.ResponseHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.Attachment', '8': {}, '10': 'Attachments'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAttachmentsV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAttachmentsV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChlMaXN0QXR0YWNobWVudHNWMlJlc3BvbnNlEkgKBkhlYWRlchgCIAEoCzITLmFwaS5SZXNwb2'
|
||||
'5zZUhlYWRlckIbkkEYMhZIZWFkZXIgb2YgdGhlIHJlc3BvbnNlUgZIZWFkZXISawoLQXR0YWNo'
|
||||
'bWVudHMYASADKAsyDy5hcGkuQXR0YWNobWVudEI4kkEtMitMaXN0IG9mIGF0dGFjaG1lbnRzIG'
|
||||
'1hdGNoaW5nIHRvIHRoZSByZXF1ZXN0+kIFkgECCAFSC0F0dGFjaG1lbnRz');
|
||||
|
||||
@$core.Deprecated('Use shareAttachmentV2RequestDescriptor instead')
|
||||
const ShareAttachmentV2Request$json = {
|
||||
'1': 'ShareAttachmentV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestAttachmentTypeHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'EntityRefID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'EntityRefID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ShareAttachmentV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List shareAttachmentV2RequestDescriptor = $convert.base64Decode(
|
||||
'ChhTaGFyZUF0dGFjaG1lbnRWMlJlcXVlc3QSQgoGSGVhZGVyGAEgASgLMiAuYXBpLlJlcXVlc3'
|
||||
'RBdHRhY2htZW50VHlwZUhlYWRlckII+kIFigECEAFSBkhlYWRlchJCCgROYW1lGAIgASgJQi6S'
|
||||
'QSQyIk5hbWUgb2YgdGhlIGF0dGFjaG1lbnQgdG8gZG93bmxvYWT6QgRyAhABUgROYW1lEmYKC0'
|
||||
'VudGl0eVJlZklEGAMgASgJQkSSQToyOElkZW50aWZpZXIgb2YgdGhlIGVudGl0eSB3aGVyZSB0'
|
||||
'aGUgYXR0YWNobWVudCBpcyBsb2NhdGVk+kIEcgIQAVILRW50aXR5UmVmSUQ6NpJBMwox0gEGSG'
|
||||
'VhZGVy0gEETmFtZdIBC0VudGl0eVJlZklE0gEQQXR0YWNobWVudFR5cGVJRA==');
|
||||
|
||||
@$core.Deprecated('Use shareAttachmentV2ResponseDescriptor instead')
|
||||
const ShareAttachmentV2Response$json = {
|
||||
'1': 'ShareAttachmentV2Response',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.AttachmentTypeResponseHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ShareLink', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ShareLink'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ShareAttachmentV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List shareAttachmentV2ResponseDescriptor = $convert.base64Decode(
|
||||
'ChlTaGFyZUF0dGFjaG1lbnRWMlJlc3BvbnNlElYKBkhlYWRlchgCIAEoCzIhLmFwaS5BdHRhY2'
|
||||
'htZW50VHlwZVJlc3BvbnNlSGVhZGVyQhuSQRgyFkhlYWRlciBvZiB0aGUgcmVzcG9uc2VSBkhl'
|
||||
'YWRlchJpCglTaGFyZUxpbmsYASABKAlCS5JBQTI/TGluayB0byBhY2Nlc3MgdG8gdGhlIGF0dG'
|
||||
'NobWVudCBpZiB0aGUgc2hhcmluZyBwb2xpY3kgYWxsb3dzIHRv+kIEcgIQAVIJU2hhcmVMaW5r');
|
||||
|
||||
@$core.Deprecated('Use deleteAllAttachmentsV2RequestDescriptor instead')
|
||||
const DeleteAllAttachmentsV2Request$json = {
|
||||
'1': 'DeleteAllAttachmentsV2Request',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAllAttachmentsV2Request`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAllAttachmentsV2RequestDescriptor = $convert.base64Decode(
|
||||
'Ch1EZWxldGVBbGxBdHRhY2htZW50c1YyUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use deleteAllAttachmentsV2ResponseDescriptor instead')
|
||||
const DeleteAllAttachmentsV2Response$json = {
|
||||
'1': 'DeleteAllAttachmentsV2Response',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteAllAttachmentsV2Response`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteAllAttachmentsV2ResponseDescriptor = $convert.base64Decode(
|
||||
'Ch5EZWxldGVBbGxBdHRhY2htZW50c1YyUmVzcG9uc2U=');
|
||||
|
||||
355
lib/base.pb.dart
Normal file
355
lib/base.pb.dart
Normal file
@@ -0,0 +1,355 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: base.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class AdminAddress extends $pb.GeneratedMessage {
|
||||
factory AdminAddress({
|
||||
$core.String? city,
|
||||
$core.String? countryCode,
|
||||
AdminGeographicalCoordinates? geographicalCoordinates,
|
||||
$core.String? name,
|
||||
$core.String? pOBoxNumber,
|
||||
$core.String? postalCode,
|
||||
$core.String? provinceCode,
|
||||
$core.String? state,
|
||||
$core.String? streetAddressOne,
|
||||
$core.String? streetAddressTwo,
|
||||
$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;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'CountryCode', protoName: 'CountryCode')
|
||||
..aOM<AdminGeographicalCoordinates>(3, _omitFieldNames ? '' : 'GeographicalCoordinates', protoName: 'GeographicalCoordinates', subBuilder: AdminGeographicalCoordinates.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
||||
..aOS(5, _omitFieldNames ? '' : 'POBoxNumber', protoName: 'POBoxNumber')
|
||||
..aOS(6, _omitFieldNames ? '' : 'PostalCode', protoName: 'PostalCode')
|
||||
..aOS(7, _omitFieldNames ? '' : 'ProvinceCode', protoName: 'ProvinceCode')
|
||||
..aOS(8, _omitFieldNames ? '' : 'State', protoName: 'State')
|
||||
..aOS(9, _omitFieldNames ? '' : 'StreetAddressOne', protoName: 'StreetAddressOne')
|
||||
..aOS(10, _omitFieldNames ? '' : 'StreetAddressTwo', protoName: 'StreetAddressTwo')
|
||||
..aOS(11, _omitFieldNames ? '' : 'StreetAddressThree', protoName: 'StreetAddressThree')
|
||||
..aOS(12, _omitFieldNames ? '' : 'PlusCode', protoName: 'PlusCode')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminAddress create() => AdminAddress._();
|
||||
AdminAddress createEmptyInstance() => create();
|
||||
static $pb.PbList<AdminAddress> createRepeated() => $pb.PbList<AdminAddress>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminAddress getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdminAddress>(create);
|
||||
static AdminAddress? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get city => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set city($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCity() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCity() => clearField(1);
|
||||
|
||||
/// Country Code in <a href='https://en.wikipedia.org/wiki/ISO_3166-1'>ISO_3166-1</a> format
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get countryCode => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set countryCode($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasCountryCode() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearCountryCode() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
AdminGeographicalCoordinates get geographicalCoordinates => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set geographicalCoordinates(AdminGeographicalCoordinates v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasGeographicalCoordinates() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearGeographicalCoordinates() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
AdminGeographicalCoordinates ensureGeographicalCoordinates() => $_ensure(2);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get name => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set name($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasName() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearName() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get pOBoxNumber => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set pOBoxNumber($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasPOBoxNumber() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearPOBoxNumber() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get postalCode => $_getSZ(5);
|
||||
@$pb.TagNumber(6)
|
||||
set postalCode($core.String v) { $_setString(5, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasPostalCode() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearPostalCode() => clearField(6);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.String get provinceCode => $_getSZ(6);
|
||||
@$pb.TagNumber(7)
|
||||
set provinceCode($core.String v) { $_setString(6, v); }
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasProvinceCode() => $_has(6);
|
||||
@$pb.TagNumber(7)
|
||||
void clearProvinceCode() => clearField(7);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.String get state => $_getSZ(7);
|
||||
@$pb.TagNumber(8)
|
||||
set state($core.String v) { $_setString(7, v); }
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasState() => $_has(7);
|
||||
@$pb.TagNumber(8)
|
||||
void clearState() => clearField(8);
|
||||
|
||||
@$pb.TagNumber(9)
|
||||
$core.String get streetAddressOne => $_getSZ(8);
|
||||
@$pb.TagNumber(9)
|
||||
set streetAddressOne($core.String v) { $_setString(8, v); }
|
||||
@$pb.TagNumber(9)
|
||||
$core.bool hasStreetAddressOne() => $_has(8);
|
||||
@$pb.TagNumber(9)
|
||||
void clearStreetAddressOne() => clearField(9);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$core.String get streetAddressTwo => $_getSZ(9);
|
||||
@$pb.TagNumber(10)
|
||||
set streetAddressTwo($core.String v) { $_setString(9, v); }
|
||||
@$pb.TagNumber(10)
|
||||
$core.bool hasStreetAddressTwo() => $_has(9);
|
||||
@$pb.TagNumber(10)
|
||||
void clearStreetAddressTwo() => clearField(10);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.String get streetAddressThree => $_getSZ(10);
|
||||
@$pb.TagNumber(11)
|
||||
set streetAddressThree($core.String v) { $_setString(10, v); }
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasStreetAddressThree() => $_has(10);
|
||||
@$pb.TagNumber(11)
|
||||
void clearStreetAddressThree() => clearField(11);
|
||||
|
||||
@$pb.TagNumber(12)
|
||||
$core.String get plusCode => $_getSZ(11);
|
||||
@$pb.TagNumber(12)
|
||||
set plusCode($core.String v) { $_setString(11, v); }
|
||||
@$pb.TagNumber(12)
|
||||
$core.bool hasPlusCode() => $_has(11);
|
||||
@$pb.TagNumber(12)
|
||||
void clearPlusCode() => clearField(12);
|
||||
}
|
||||
|
||||
///
|
||||
/// Geographical coordinates information
|
||||
class AdminGeographicalCoordinates extends $pb.GeneratedMessage {
|
||||
factory AdminGeographicalCoordinates({
|
||||
$core.String? latitude,
|
||||
$core.String? longitude,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (latitude != null) {
|
||||
$result.latitude = latitude;
|
||||
}
|
||||
if (longitude != null) {
|
||||
$result.longitude = longitude;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Longitude', protoName: 'Longitude')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminGeographicalCoordinates create() => AdminGeographicalCoordinates._();
|
||||
AdminGeographicalCoordinates createEmptyInstance() => create();
|
||||
static $pb.PbList<AdminGeographicalCoordinates> createRepeated() => $pb.PbList<AdminGeographicalCoordinates>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AdminGeographicalCoordinates getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AdminGeographicalCoordinates>(create);
|
||||
static AdminGeographicalCoordinates? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get latitude => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set latitude($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasLatitude() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearLatitude() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get longitude => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set longitude($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasLongitude() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearLongitude() => clearField(2);
|
||||
}
|
||||
|
||||
class Paging extends $pb.GeneratedMessage {
|
||||
factory Paging({
|
||||
$core.int? limit,
|
||||
$core.int? offset,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (limit != null) {
|
||||
$result.limit = limit;
|
||||
}
|
||||
if (offset != null) {
|
||||
$result.offset = offset;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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')
|
||||
..a<$core.int>(2, _omitFieldNames ? '' : 'Offset', $pb.PbFieldType.O3, protoName: 'Offset')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Paging create() => Paging._();
|
||||
Paging createEmptyInstance() => create();
|
||||
static $pb.PbList<Paging> createRepeated() => $pb.PbList<Paging>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Paging getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Paging>(create);
|
||||
static Paging? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.int get limit => $_getIZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set limit($core.int v) { $_setSignedInt32(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasLimit() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearLimit() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.int get offset => $_getIZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set offset($core.int v) { $_setSignedInt32(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasOffset() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearOffset() => clearField(2);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/base.pbenum.dart
Normal file
11
lib/base.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: base.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
75
lib/base.pbjson.dart
Normal file
75
lib/base.pbjson.dart
Normal file
@@ -0,0 +1,75 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: base.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use adminAddressDescriptor instead')
|
||||
const AdminAddress$json = {
|
||||
'1': 'AdminAddress',
|
||||
'2': [
|
||||
{'1': 'City', '3': 1, '4': 1, '5': 9, '10': 'City'},
|
||||
{'1': 'CountryCode', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'CountryCode'},
|
||||
{'1': 'GeographicalCoordinates', '3': 3, '4': 1, '5': 11, '6': '.api.AdminGeographicalCoordinates', '10': 'GeographicalCoordinates'},
|
||||
{'1': 'Name', '3': 4, '4': 1, '5': 9, '10': 'Name'},
|
||||
{'1': 'POBoxNumber', '3': 5, '4': 1, '5': 9, '10': 'POBoxNumber'},
|
||||
{'1': 'PostalCode', '3': 6, '4': 1, '5': 9, '10': 'PostalCode'},
|
||||
{'1': 'ProvinceCode', '3': 7, '4': 1, '5': 9, '10': 'ProvinceCode'},
|
||||
{'1': 'State', '3': 8, '4': 1, '5': 9, '10': 'State'},
|
||||
{'1': 'StreetAddressOne', '3': 9, '4': 1, '5': 9, '10': 'StreetAddressOne'},
|
||||
{'1': 'StreetAddressTwo', '3': 10, '4': 1, '5': 9, '10': 'StreetAddressTwo'},
|
||||
{'1': 'StreetAddressThree', '3': 11, '4': 1, '5': 9, '10': 'StreetAddressThree'},
|
||||
{'1': 'PlusCode', '3': 12, '4': 1, '5': 9, '10': 'PlusCode'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AdminAddress`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adminAddressDescriptor = $convert.base64Decode(
|
||||
'CgxBZG1pbkFkZHJlc3MSEgoEQ2l0eRgBIAEoCVIEQ2l0eRKdAQoLQ291bnRyeUNvZGUYAiABKA'
|
||||
'lCe5JBcDJYQ291bnRyeSBDb2RlIGluIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9y'
|
||||
'Zy93aWtpL0lTT18zMTY2LTEnPklTT18zMTY2LTE8L2E+IGZvcm1hdEoUWyJGUiIsICJGUkEiLC'
|
||||
'AiMjUwIl36QgVyA/gBAVILQ291bnRyeUNvZGUSWwoXR2VvZ3JhcGhpY2FsQ29vcmRpbmF0ZXMY'
|
||||
'AyABKAsyIS5hcGkuQWRtaW5HZW9ncmFwaGljYWxDb29yZGluYXRlc1IXR2VvZ3JhcGhpY2FsQ2'
|
||||
'9vcmRpbmF0ZXMSEgoETmFtZRgEIAEoCVIETmFtZRIgCgtQT0JveE51bWJlchgFIAEoCVILUE9C'
|
||||
'b3hOdW1iZXISHgoKUG9zdGFsQ29kZRgGIAEoCVIKUG9zdGFsQ29kZRIiCgxQcm92aW5jZUNvZG'
|
||||
'UYByABKAlSDFByb3ZpbmNlQ29kZRIUCgVTdGF0ZRgIIAEoCVIFU3RhdGUSKgoQU3RyZWV0QWRk'
|
||||
'cmVzc09uZRgJIAEoCVIQU3RyZWV0QWRkcmVzc09uZRIqChBTdHJlZXRBZGRyZXNzVHdvGAogAS'
|
||||
'gJUhBTdHJlZXRBZGRyZXNzVHdvEi4KElN0cmVldEFkZHJlc3NUaHJlZRgLIAEoCVISU3RyZWV0'
|
||||
'QWRkcmVzc1RocmVlEhoKCFBsdXNDb2RlGAwgASgJUghQbHVzQ29kZQ==');
|
||||
|
||||
@$core.Deprecated('Use adminGeographicalCoordinatesDescriptor instead')
|
||||
const AdminGeographicalCoordinates$json = {
|
||||
'1': 'AdminGeographicalCoordinates',
|
||||
'2': [
|
||||
{'1': 'Latitude', '3': 1, '4': 1, '5': 9, '10': 'Latitude'},
|
||||
{'1': 'Longitude', '3': 2, '4': 1, '5': 9, '10': 'Longitude'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `AdminGeographicalCoordinates`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List adminGeographicalCoordinatesDescriptor = $convert.base64Decode(
|
||||
'ChxBZG1pbkdlb2dyYXBoaWNhbENvb3JkaW5hdGVzEhoKCExhdGl0dWRlGAEgASgJUghMYXRpdH'
|
||||
'VkZRIcCglMb25naXR1ZGUYAiABKAlSCUxvbmdpdHVkZQ==');
|
||||
|
||||
@$core.Deprecated('Use pagingDescriptor instead')
|
||||
const Paging$json = {
|
||||
'1': 'Paging',
|
||||
'2': [
|
||||
{'1': 'Limit', '3': 1, '4': 1, '5': 5, '10': 'Limit'},
|
||||
{'1': 'Offset', '3': 2, '4': 1, '5': 5, '10': 'Offset'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Paging`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List pagingDescriptor = $convert.base64Decode(
|
||||
'CgZQYWdpbmcSFAoFTGltaXQYASABKAVSBUxpbWl0EhYKBk9mZnNldBgCIAEoBVIGT2Zmc2V0');
|
||||
|
||||
180
lib/billing.pb.dart
Normal file
180
lib/billing.pb.dart
Normal file
@@ -0,0 +1,180 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: billing.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 'billing.pbenum.dart';
|
||||
|
||||
export 'billing.pbenum.dart';
|
||||
|
||||
class GenerateRequest extends $pb.GeneratedMessage {
|
||||
factory GenerateRequest({
|
||||
$core.String? organisationID,
|
||||
$core.String? comment,
|
||||
$core.String? fromDate,
|
||||
$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;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Comment', protoName: 'Comment')
|
||||
..aOS(3, _omitFieldNames ? '' : 'FromDate', protoName: 'FromDate')
|
||||
..aOS(4, _omitFieldNames ? '' : 'ToDate', protoName: 'ToDate')
|
||||
..e<GenerateBillingFormat>(5, _omitFieldNames ? '' : 'OutputFormat', $pb.PbFieldType.OE, protoName: 'OutputFormat', defaultOrMaker: GenerateBillingFormat.BILLING_FORMAT_PDF, valueOf: GenerateBillingFormat.valueOf, enumValues: GenerateBillingFormat.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GenerateRequest create() => GenerateRequest._();
|
||||
GenerateRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GenerateRequest> createRepeated() => $pb.PbList<GenerateRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GenerateRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GenerateRequest>(create);
|
||||
static GenerateRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get organisationID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set organisationID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasOrganisationID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearOrganisationID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get comment => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set comment($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasComment() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearComment() => clearField(2);
|
||||
|
||||
/// UTC date/time in <a href='https://en.wikipedia.org/wiki/ISO_8601'>ISO 8601</a> format
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get fromDate => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set fromDate($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasFromDate() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearFromDate() => clearField(3);
|
||||
|
||||
/// UTC date/time in <a href='https://en.wikipedia.org/wiki/ISO_8601'>ISO 8601</a> format
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get toDate => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set toDate($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasToDate() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearToDate() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
GenerateBillingFormat get outputFormat => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set outputFormat(GenerateBillingFormat v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasOutputFormat() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearOutputFormat() => clearField(5);
|
||||
}
|
||||
|
||||
class GenerateResult extends $pb.GeneratedMessage {
|
||||
factory GenerateResult({
|
||||
$core.String? output,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (output != null) {
|
||||
$result.output = output;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GenerateResult create() => GenerateResult._();
|
||||
GenerateResult createEmptyInstance() => create();
|
||||
static $pb.PbList<GenerateResult> createRepeated() => $pb.PbList<GenerateResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GenerateResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GenerateResult>(create);
|
||||
static GenerateResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get output => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set output($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasOutput() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearOutput() => clearField(1);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
34
lib/billing.pbenum.dart
Normal file
34
lib/billing.pbenum.dart
Normal file
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: billing.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class GenerateBillingFormat extends $pb.ProtobufEnum {
|
||||
static const GenerateBillingFormat BILLING_FORMAT_PDF = GenerateBillingFormat._(0, _omitEnumNames ? '' : 'BILLING_FORMAT_PDF');
|
||||
static const GenerateBillingFormat BILLING_FORMAT_CSV = GenerateBillingFormat._(1, _omitEnumNames ? '' : 'BILLING_FORMAT_CSV');
|
||||
static const GenerateBillingFormat BILLING_FORMAT_JSON = GenerateBillingFormat._(2, _omitEnumNames ? '' : 'BILLING_FORMAT_JSON');
|
||||
|
||||
static const $core.List<GenerateBillingFormat> values = <GenerateBillingFormat> [
|
||||
BILLING_FORMAT_PDF,
|
||||
BILLING_FORMAT_CSV,
|
||||
BILLING_FORMAT_JSON,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, GenerateBillingFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static GenerateBillingFormat? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const GenerateBillingFormat._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
59
lib/billing.pbgrpc.dart
Normal file
59
lib/billing.pbgrpc.dart
Normal file
@@ -0,0 +1,59 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: billing.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'billing.pb.dart' as $53;
|
||||
|
||||
export 'billing.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.BillingService')
|
||||
class BillingServiceClient extends $grpc.Client {
|
||||
static final _$generate = $grpc.ClientMethod<$53.GenerateRequest, $53.GenerateResult>(
|
||||
'/api.BillingService/Generate',
|
||||
($53.GenerateRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $53.GenerateResult.fromBuffer(value));
|
||||
|
||||
BillingServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$53.GenerateResult> generate($53.GenerateRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$generate, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.BillingService')
|
||||
abstract class BillingServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.BillingService';
|
||||
|
||||
BillingServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$53.GenerateRequest, $53.GenerateResult>(
|
||||
'Generate',
|
||||
generate_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $53.GenerateRequest.fromBuffer(value),
|
||||
($53.GenerateResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$53.GenerateResult> generate_Pre($grpc.ServiceCall call, $async.Future<$53.GenerateRequest> request) async {
|
||||
return generate(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$53.GenerateResult> generate($grpc.ServiceCall call, $53.GenerateRequest request);
|
||||
}
|
||||
67
lib/billing.pbjson.dart
Normal file
67
lib/billing.pbjson.dart
Normal file
@@ -0,0 +1,67 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: billing.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use generateBillingFormatDescriptor instead')
|
||||
const GenerateBillingFormat$json = {
|
||||
'1': 'GenerateBillingFormat',
|
||||
'2': [
|
||||
{'1': 'BILLING_FORMAT_PDF', '2': 0},
|
||||
{'1': 'BILLING_FORMAT_CSV', '2': 1},
|
||||
{'1': 'BILLING_FORMAT_JSON', '2': 2},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GenerateBillingFormat`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List generateBillingFormatDescriptor = $convert.base64Decode(
|
||||
'ChVHZW5lcmF0ZUJpbGxpbmdGb3JtYXQSFgoSQklMTElOR19GT1JNQVRfUERGEAASFgoSQklMTE'
|
||||
'lOR19GT1JNQVRfQ1NWEAESFwoTQklMTElOR19GT1JNQVRfSlNPThAC');
|
||||
|
||||
@$core.Deprecated('Use generateRequestDescriptor instead')
|
||||
const GenerateRequest$json = {
|
||||
'1': 'GenerateRequest',
|
||||
'2': [
|
||||
{'1': 'OrganisationID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
||||
{'1': 'Comment', '3': 2, '4': 1, '5': 9, '10': 'Comment'},
|
||||
{'1': 'FromDate', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'FromDate'},
|
||||
{'1': 'ToDate', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ToDate'},
|
||||
{'1': 'OutputFormat', '3': 5, '4': 1, '5': 14, '6': '.api.GenerateBillingFormat', '8': {}, '10': 'OutputFormat'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GenerateRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List generateRequestDescriptor = $convert.base64Decode(
|
||||
'Cg9HZW5lcmF0ZVJlcXVlc3QSLwoOT3JnYW5pc2F0aW9uSUQYASABKAlCB/pCBHICEAFSDk9yZ2'
|
||||
'FuaXNhdGlvbklEEhgKB0NvbW1lbnQYAiABKAlSB0NvbW1lbnQSfgoIRnJvbURhdGUYAyABKAlC'
|
||||
'YpJBVzJVVVRDIGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcm'
|
||||
'cvd2lraS9JU09fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID0AEBUghGcm9tRGF0ZRJ6'
|
||||
'CgZUb0RhdGUYBCABKAlCYpJBVzJVVVRDIGRhdGUvdGltZSBpbiA8YSBocmVmPSdodHRwczovL2'
|
||||
'VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID'
|
||||
'0AEBUgZUb0RhdGUSSAoMT3V0cHV0Rm9ybWF0GAUgASgOMhouYXBpLkdlbmVyYXRlQmlsbGluZ0'
|
||||
'Zvcm1hdEII+kIFggECEAFSDE91dHB1dEZvcm1hdDoqkkEnCiXSAQ5PcmdhbmlzYXRpb25JRNIB'
|
||||
'CEZyb21EYXRl0gEGVG9EYXRl');
|
||||
|
||||
@$core.Deprecated('Use generateResultDescriptor instead')
|
||||
const GenerateResult$json = {
|
||||
'1': 'GenerateResult',
|
||||
'2': [
|
||||
{'1': 'Output', '3': 1, '4': 1, '5': 9, '10': 'Output'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GenerateResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List generateResultDescriptor = $convert.base64Decode(
|
||||
'Cg5HZW5lcmF0ZVJlc3VsdBIWCgZPdXRwdXQYASABKAlSBk91dHB1dA==');
|
||||
|
||||
897
lib/claim-type.pb.dart
Normal file
897
lib/claim-type.pb.dart
Normal file
@@ -0,0 +1,897 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim-type.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $28;
|
||||
import 'shared.pbenum.dart' as $28;
|
||||
|
||||
/// Create
|
||||
class CreateClaimTypeRequest extends $pb.GeneratedMessage {
|
||||
factory CreateClaimTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$core.String? reason,
|
||||
$core.String? reasonCode,
|
||||
$28.ClaimEntityType? entityType,
|
||||
$28.ClaimCriticality? defaultCriticality,
|
||||
$core.Iterable<$28.ClaimTransition>? transitions,
|
||||
$core.Iterable<$28.ClaimTypeClosure>? possibleClosures,
|
||||
$core.Iterable<$core.String>? criticalityAllowedRoles,
|
||||
$core.Iterable<$core.String>? readAllowedRoles,
|
||||
$core.Iterable<$core.String>? writeAllowedRoles,
|
||||
$core.Iterable<$core.String>? assignAllowedRoles,
|
||||
$core.Iterable<$28.ClaimStatus>? allowedStatuses,
|
||||
$28.ClaimStatus? defaultStatus,
|
||||
$28.ClaimSector? sector,
|
||||
$core.Iterable<$core.String>? defaultAssignees,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (reason != null) {
|
||||
$result.reason = reason;
|
||||
}
|
||||
if (reasonCode != null) {
|
||||
$result.reasonCode = reasonCode;
|
||||
}
|
||||
if (entityType != null) {
|
||||
$result.entityType = entityType;
|
||||
}
|
||||
if (defaultCriticality != null) {
|
||||
$result.defaultCriticality = defaultCriticality;
|
||||
}
|
||||
if (transitions != null) {
|
||||
$result.transitions.addAll(transitions);
|
||||
}
|
||||
if (possibleClosures != null) {
|
||||
$result.possibleClosures.addAll(possibleClosures);
|
||||
}
|
||||
if (criticalityAllowedRoles != null) {
|
||||
$result.criticalityAllowedRoles.addAll(criticalityAllowedRoles);
|
||||
}
|
||||
if (readAllowedRoles != null) {
|
||||
$result.readAllowedRoles.addAll(readAllowedRoles);
|
||||
}
|
||||
if (writeAllowedRoles != null) {
|
||||
$result.writeAllowedRoles.addAll(writeAllowedRoles);
|
||||
}
|
||||
if (assignAllowedRoles != null) {
|
||||
$result.assignAllowedRoles.addAll(assignAllowedRoles);
|
||||
}
|
||||
if (allowedStatuses != null) {
|
||||
$result.allowedStatuses.addAll(allowedStatuses);
|
||||
}
|
||||
if (defaultStatus != null) {
|
||||
$result.defaultStatus = defaultStatus;
|
||||
}
|
||||
if (sector != null) {
|
||||
$result.sector = sector;
|
||||
}
|
||||
if (defaultAssignees != null) {
|
||||
$result.defaultAssignees.addAll(defaultAssignees);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CreateClaimTypeRequest._() : super();
|
||||
factory CreateClaimTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateClaimTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateClaimTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||
..aOS(3, _omitFieldNames ? '' : 'ReasonCode', protoName: 'ReasonCode')
|
||||
..e<$28.ClaimEntityType>(4, _omitFieldNames ? '' : 'EntityType', $pb.PbFieldType.OE, protoName: 'EntityType', defaultOrMaker: $28.ClaimEntityType.CLAIM_ENTITY_TYPE_UNKNOWN, valueOf: $28.ClaimEntityType.valueOf, enumValues: $28.ClaimEntityType.values)
|
||||
..e<$28.ClaimCriticality>(5, _omitFieldNames ? '' : 'DefaultCriticality', $pb.PbFieldType.OE, protoName: 'DefaultCriticality', defaultOrMaker: $28.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $28.ClaimCriticality.valueOf, enumValues: $28.ClaimCriticality.values)
|
||||
..pc<$28.ClaimTransition>(6, _omitFieldNames ? '' : 'Transitions', $pb.PbFieldType.PM, protoName: 'Transitions', subBuilder: $28.ClaimTransition.create)
|
||||
..pc<$28.ClaimTypeClosure>(7, _omitFieldNames ? '' : 'PossibleClosures', $pb.PbFieldType.PM, protoName: 'PossibleClosures', subBuilder: $28.ClaimTypeClosure.create)
|
||||
..pPS(8, _omitFieldNames ? '' : 'CriticalityAllowedRoles', protoName: 'CriticalityAllowedRoles')
|
||||
..pPS(9, _omitFieldNames ? '' : 'ReadAllowedRoles', protoName: 'ReadAllowedRoles')
|
||||
..pPS(10, _omitFieldNames ? '' : 'WriteAllowedRoles', protoName: 'WriteAllowedRoles')
|
||||
..pPS(11, _omitFieldNames ? '' : 'AssignAllowedRoles', protoName: 'AssignAllowedRoles')
|
||||
..pc<$28.ClaimStatus>(12, _omitFieldNames ? '' : 'AllowedStatuses', $pb.PbFieldType.KE, protoName: 'AllowedStatuses', valueOf: $28.ClaimStatus.valueOf, enumValues: $28.ClaimStatus.values, defaultEnumValue: $28.ClaimStatus.CLAIM_STATUS_UNKNOWN)
|
||||
..e<$28.ClaimStatus>(13, _omitFieldNames ? '' : 'DefaultStatus', $pb.PbFieldType.OE, protoName: 'DefaultStatus', defaultOrMaker: $28.ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: $28.ClaimStatus.valueOf, enumValues: $28.ClaimStatus.values)
|
||||
..e<$28.ClaimSector>(14, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $28.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $28.ClaimSector.valueOf, enumValues: $28.ClaimSector.values)
|
||||
..pPS(15, _omitFieldNames ? '' : 'DefaultAssignees', protoName: 'DefaultAssignees')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateClaimTypeRequest clone() => CreateClaimTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateClaimTypeRequest copyWith(void Function(CreateClaimTypeRequest) updates) => super.copyWith((message) => updates(message as CreateClaimTypeRequest)) as CreateClaimTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateClaimTypeRequest create() => CreateClaimTypeRequest._();
|
||||
CreateClaimTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateClaimTypeRequest> createRepeated() => $pb.PbList<CreateClaimTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateClaimTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateClaimTypeRequest>(create);
|
||||
static CreateClaimTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get reason => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set reason($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasReason() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearReason() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get reasonCode => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set reasonCode($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasReasonCode() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearReasonCode() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$28.ClaimEntityType get entityType => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set entityType($28.ClaimEntityType v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasEntityType() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearEntityType() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$28.ClaimCriticality get defaultCriticality => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set defaultCriticality($28.ClaimCriticality v) { setField(5, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasDefaultCriticality() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearDefaultCriticality() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$28.ClaimTransition> get transitions => $_getList(5);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$28.ClaimTypeClosure> get possibleClosures => $_getList(6);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.List<$core.String> get criticalityAllowedRoles => $_getList(7);
|
||||
|
||||
@$pb.TagNumber(9)
|
||||
$core.List<$core.String> get readAllowedRoles => $_getList(8);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$core.List<$core.String> get writeAllowedRoles => $_getList(9);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.List<$core.String> get assignAllowedRoles => $_getList(10);
|
||||
|
||||
@$pb.TagNumber(12)
|
||||
$core.List<$28.ClaimStatus> get allowedStatuses => $_getList(11);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$28.ClaimStatus get defaultStatus => $_getN(12);
|
||||
@$pb.TagNumber(13)
|
||||
set defaultStatus($28.ClaimStatus v) { setField(13, v); }
|
||||
@$pb.TagNumber(13)
|
||||
$core.bool hasDefaultStatus() => $_has(12);
|
||||
@$pb.TagNumber(13)
|
||||
void clearDefaultStatus() => clearField(13);
|
||||
|
||||
@$pb.TagNumber(14)
|
||||
$28.ClaimSector get sector => $_getN(13);
|
||||
@$pb.TagNumber(14)
|
||||
set sector($28.ClaimSector v) { setField(14, v); }
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool hasSector() => $_has(13);
|
||||
@$pb.TagNumber(14)
|
||||
void clearSector() => clearField(14);
|
||||
|
||||
@$pb.TagNumber(15)
|
||||
$core.List<$core.String> get defaultAssignees => $_getList(14);
|
||||
}
|
||||
|
||||
class CreateClaimTypeResponse extends $pb.GeneratedMessage {
|
||||
factory CreateClaimTypeResponse({
|
||||
$28.ClaimType? claimType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (claimType != null) {
|
||||
$result.claimType = claimType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CreateClaimTypeResponse._() : super();
|
||||
factory CreateClaimTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CreateClaimTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateClaimTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.ClaimType>(1, _omitFieldNames ? '' : 'ClaimType', protoName: 'ClaimType', subBuilder: $28.ClaimType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateClaimTypeResponse clone() => CreateClaimTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CreateClaimTypeResponse copyWith(void Function(CreateClaimTypeResponse) updates) => super.copyWith((message) => updates(message as CreateClaimTypeResponse)) as CreateClaimTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateClaimTypeResponse create() => CreateClaimTypeResponse._();
|
||||
CreateClaimTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<CreateClaimTypeResponse> createRepeated() => $pb.PbList<CreateClaimTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CreateClaimTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateClaimTypeResponse>(create);
|
||||
static CreateClaimTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType get claimType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set claimType($28.ClaimType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClaimType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClaimType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType ensureClaimType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// Get
|
||||
class GetClaimTypeRequest extends $pb.GeneratedMessage {
|
||||
factory GetClaimTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$core.String? iD,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetClaimTypeRequest._() : super();
|
||||
factory GetClaimTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetClaimTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetClaimTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetClaimTypeRequest clone() => GetClaimTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetClaimTypeRequest copyWith(void Function(GetClaimTypeRequest) updates) => super.copyWith((message) => updates(message as GetClaimTypeRequest)) as GetClaimTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetClaimTypeRequest create() => GetClaimTypeRequest._();
|
||||
GetClaimTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetClaimTypeRequest> createRepeated() => $pb.PbList<GetClaimTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetClaimTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetClaimTypeRequest>(create);
|
||||
static GetClaimTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get iD => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
}
|
||||
|
||||
class GetClaimTypeResponse extends $pb.GeneratedMessage {
|
||||
factory GetClaimTypeResponse({
|
||||
$28.ClaimType? claimType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (claimType != null) {
|
||||
$result.claimType = claimType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetClaimTypeResponse._() : super();
|
||||
factory GetClaimTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetClaimTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetClaimTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.ClaimType>(1, _omitFieldNames ? '' : 'ClaimType', protoName: 'ClaimType', subBuilder: $28.ClaimType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetClaimTypeResponse clone() => GetClaimTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetClaimTypeResponse copyWith(void Function(GetClaimTypeResponse) updates) => super.copyWith((message) => updates(message as GetClaimTypeResponse)) as GetClaimTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetClaimTypeResponse create() => GetClaimTypeResponse._();
|
||||
GetClaimTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<GetClaimTypeResponse> createRepeated() => $pb.PbList<GetClaimTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetClaimTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetClaimTypeResponse>(create);
|
||||
static GetClaimTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType get claimType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set claimType($28.ClaimType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClaimType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClaimType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType ensureClaimType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// List
|
||||
class ListClaimTypeRequest extends $pb.GeneratedMessage {
|
||||
factory ListClaimTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListClaimTypeRequest._() : super();
|
||||
factory ListClaimTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListClaimTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListClaimTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListClaimTypeRequest clone() => ListClaimTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListClaimTypeRequest copyWith(void Function(ListClaimTypeRequest) updates) => super.copyWith((message) => updates(message as ListClaimTypeRequest)) as ListClaimTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListClaimTypeRequest create() => ListClaimTypeRequest._();
|
||||
ListClaimTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<ListClaimTypeRequest> createRepeated() => $pb.PbList<ListClaimTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListClaimTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListClaimTypeRequest>(create);
|
||||
static ListClaimTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
class ListClaimTypeResponse extends $pb.GeneratedMessage {
|
||||
factory ListClaimTypeResponse({
|
||||
$core.Iterable<$28.ClaimType>? claimTypes,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (claimTypes != null) {
|
||||
$result.claimTypes.addAll(claimTypes);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListClaimTypeResponse._() : super();
|
||||
factory ListClaimTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListClaimTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListClaimTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<$28.ClaimType>(1, _omitFieldNames ? '' : 'ClaimTypes', $pb.PbFieldType.PM, protoName: 'ClaimTypes', subBuilder: $28.ClaimType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListClaimTypeResponse clone() => ListClaimTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListClaimTypeResponse copyWith(void Function(ListClaimTypeResponse) updates) => super.copyWith((message) => updates(message as ListClaimTypeResponse)) as ListClaimTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListClaimTypeResponse create() => ListClaimTypeResponse._();
|
||||
ListClaimTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<ListClaimTypeResponse> createRepeated() => $pb.PbList<ListClaimTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListClaimTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListClaimTypeResponse>(create);
|
||||
static ListClaimTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<$28.ClaimType> get claimTypes => $_getList(0);
|
||||
}
|
||||
|
||||
/// Update
|
||||
class UpdateClaimTypeRequest extends $pb.GeneratedMessage {
|
||||
factory UpdateClaimTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$core.String? iD,
|
||||
$28.ClaimCriticality? defaultCriticality,
|
||||
$core.Iterable<$28.ClaimTransition>? transitions,
|
||||
$core.Iterable<$28.ClaimTypeClosure>? possibleClosures,
|
||||
$core.Iterable<$core.String>? criticalityAllowedRoles,
|
||||
$core.Iterable<$core.String>? readAllowedRoles,
|
||||
$core.Iterable<$core.String>? writeAllowedRoles,
|
||||
$core.Iterable<$core.String>? assignAllowedRoles,
|
||||
$core.Iterable<$28.ClaimStatus>? allowedStatuses,
|
||||
$28.ClaimStatus? defaultStatus,
|
||||
$28.ClaimSector? sector,
|
||||
$core.Iterable<$core.String>? defaultAssignees,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
if (defaultCriticality != null) {
|
||||
$result.defaultCriticality = defaultCriticality;
|
||||
}
|
||||
if (transitions != null) {
|
||||
$result.transitions.addAll(transitions);
|
||||
}
|
||||
if (possibleClosures != null) {
|
||||
$result.possibleClosures.addAll(possibleClosures);
|
||||
}
|
||||
if (criticalityAllowedRoles != null) {
|
||||
$result.criticalityAllowedRoles.addAll(criticalityAllowedRoles);
|
||||
}
|
||||
if (readAllowedRoles != null) {
|
||||
$result.readAllowedRoles.addAll(readAllowedRoles);
|
||||
}
|
||||
if (writeAllowedRoles != null) {
|
||||
$result.writeAllowedRoles.addAll(writeAllowedRoles);
|
||||
}
|
||||
if (assignAllowedRoles != null) {
|
||||
$result.assignAllowedRoles.addAll(assignAllowedRoles);
|
||||
}
|
||||
if (allowedStatuses != null) {
|
||||
$result.allowedStatuses.addAll(allowedStatuses);
|
||||
}
|
||||
if (defaultStatus != null) {
|
||||
$result.defaultStatus = defaultStatus;
|
||||
}
|
||||
if (sector != null) {
|
||||
$result.sector = sector;
|
||||
}
|
||||
if (defaultAssignees != null) {
|
||||
$result.defaultAssignees.addAll(defaultAssignees);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
UpdateClaimTypeRequest._() : super();
|
||||
factory UpdateClaimTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateClaimTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateClaimTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..e<$28.ClaimCriticality>(3, _omitFieldNames ? '' : 'DefaultCriticality', $pb.PbFieldType.OE, protoName: 'DefaultCriticality', defaultOrMaker: $28.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $28.ClaimCriticality.valueOf, enumValues: $28.ClaimCriticality.values)
|
||||
..pc<$28.ClaimTransition>(4, _omitFieldNames ? '' : 'Transitions', $pb.PbFieldType.PM, protoName: 'Transitions', subBuilder: $28.ClaimTransition.create)
|
||||
..pc<$28.ClaimTypeClosure>(5, _omitFieldNames ? '' : 'PossibleClosures', $pb.PbFieldType.PM, protoName: 'PossibleClosures', subBuilder: $28.ClaimTypeClosure.create)
|
||||
..pPS(6, _omitFieldNames ? '' : 'CriticalityAllowedRoles', protoName: 'CriticalityAllowedRoles')
|
||||
..pPS(7, _omitFieldNames ? '' : 'ReadAllowedRoles', protoName: 'ReadAllowedRoles')
|
||||
..pPS(8, _omitFieldNames ? '' : 'WriteAllowedRoles', protoName: 'WriteAllowedRoles')
|
||||
..pPS(9, _omitFieldNames ? '' : 'AssignAllowedRoles', protoName: 'AssignAllowedRoles')
|
||||
..pc<$28.ClaimStatus>(10, _omitFieldNames ? '' : 'AllowedStatuses', $pb.PbFieldType.KE, protoName: 'AllowedStatuses', valueOf: $28.ClaimStatus.valueOf, enumValues: $28.ClaimStatus.values, defaultEnumValue: $28.ClaimStatus.CLAIM_STATUS_UNKNOWN)
|
||||
..e<$28.ClaimStatus>(11, _omitFieldNames ? '' : 'DefaultStatus', $pb.PbFieldType.OE, protoName: 'DefaultStatus', defaultOrMaker: $28.ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: $28.ClaimStatus.valueOf, enumValues: $28.ClaimStatus.values)
|
||||
..e<$28.ClaimSector>(12, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $28.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $28.ClaimSector.valueOf, enumValues: $28.ClaimSector.values)
|
||||
..pPS(13, _omitFieldNames ? '' : 'DefaultAssignees', protoName: 'DefaultAssignees')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateClaimTypeRequest clone() => UpdateClaimTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateClaimTypeRequest copyWith(void Function(UpdateClaimTypeRequest) updates) => super.copyWith((message) => updates(message as UpdateClaimTypeRequest)) as UpdateClaimTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateClaimTypeRequest create() => UpdateClaimTypeRequest._();
|
||||
UpdateClaimTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateClaimTypeRequest> createRepeated() => $pb.PbList<UpdateClaimTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateClaimTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateClaimTypeRequest>(create);
|
||||
static UpdateClaimTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get iD => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$28.ClaimCriticality get defaultCriticality => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set defaultCriticality($28.ClaimCriticality v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasDefaultCriticality() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearDefaultCriticality() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.List<$28.ClaimTransition> get transitions => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.List<$28.ClaimTypeClosure> get possibleClosures => $_getList(4);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$core.String> get criticalityAllowedRoles => $_getList(5);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$core.String> get readAllowedRoles => $_getList(6);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.List<$core.String> get writeAllowedRoles => $_getList(7);
|
||||
|
||||
@$pb.TagNumber(9)
|
||||
$core.List<$core.String> get assignAllowedRoles => $_getList(8);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$core.List<$28.ClaimStatus> get allowedStatuses => $_getList(9);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$28.ClaimStatus get defaultStatus => $_getN(10);
|
||||
@$pb.TagNumber(11)
|
||||
set defaultStatus($28.ClaimStatus v) { setField(11, v); }
|
||||
@$pb.TagNumber(11)
|
||||
$core.bool hasDefaultStatus() => $_has(10);
|
||||
@$pb.TagNumber(11)
|
||||
void clearDefaultStatus() => clearField(11);
|
||||
|
||||
@$pb.TagNumber(12)
|
||||
$28.ClaimSector get sector => $_getN(11);
|
||||
@$pb.TagNumber(12)
|
||||
set sector($28.ClaimSector v) { setField(12, v); }
|
||||
@$pb.TagNumber(12)
|
||||
$core.bool hasSector() => $_has(11);
|
||||
@$pb.TagNumber(12)
|
||||
void clearSector() => clearField(12);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.List<$core.String> get defaultAssignees => $_getList(12);
|
||||
}
|
||||
|
||||
class UpdateClaimTypeResponse extends $pb.GeneratedMessage {
|
||||
factory UpdateClaimTypeResponse({
|
||||
$28.ClaimType? claimType,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (claimType != null) {
|
||||
$result.claimType = claimType;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
UpdateClaimTypeResponse._() : super();
|
||||
factory UpdateClaimTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UpdateClaimTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateClaimTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.ClaimType>(1, _omitFieldNames ? '' : 'ClaimType', protoName: 'ClaimType', subBuilder: $28.ClaimType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateClaimTypeResponse clone() => UpdateClaimTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
UpdateClaimTypeResponse copyWith(void Function(UpdateClaimTypeResponse) updates) => super.copyWith((message) => updates(message as UpdateClaimTypeResponse)) as UpdateClaimTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateClaimTypeResponse create() => UpdateClaimTypeResponse._();
|
||||
UpdateClaimTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<UpdateClaimTypeResponse> createRepeated() => $pb.PbList<UpdateClaimTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UpdateClaimTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateClaimTypeResponse>(create);
|
||||
static UpdateClaimTypeResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType get claimType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set claimType($28.ClaimType v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClaimType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClaimType() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimType ensureClaimType() => $_ensure(0);
|
||||
}
|
||||
|
||||
/// Delete
|
||||
class DeleteClaimTypeRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteClaimTypeRequest({
|
||||
$28.RequestProjectHeader? header,
|
||||
$core.String? iD,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteClaimTypeRequest._() : super();
|
||||
factory DeleteClaimTypeRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteClaimTypeRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteClaimTypeRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypeRequest clone() => DeleteClaimTypeRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypeRequest copyWith(void Function(DeleteClaimTypeRequest) updates) => super.copyWith((message) => updates(message as DeleteClaimTypeRequest)) as DeleteClaimTypeRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypeRequest create() => DeleteClaimTypeRequest._();
|
||||
DeleteClaimTypeRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteClaimTypeRequest> createRepeated() => $pb.PbList<DeleteClaimTypeRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypeRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteClaimTypeRequest>(create);
|
||||
static DeleteClaimTypeRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get iD => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
}
|
||||
|
||||
class DeleteClaimTypeResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteClaimTypeResponse() => create();
|
||||
DeleteClaimTypeResponse._() : super();
|
||||
factory DeleteClaimTypeResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteClaimTypeResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteClaimTypeResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypeResponse clone() => DeleteClaimTypeResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypeResponse copyWith(void Function(DeleteClaimTypeResponse) updates) => super.copyWith((message) => updates(message as DeleteClaimTypeResponse)) as DeleteClaimTypeResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypeResponse create() => DeleteClaimTypeResponse._();
|
||||
DeleteClaimTypeResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteClaimTypeResponse> createRepeated() => $pb.PbList<DeleteClaimTypeResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypeResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteClaimTypeResponse>(create);
|
||||
static DeleteClaimTypeResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
/// Delete
|
||||
class DeleteClaimTypesForProjectRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteClaimTypesForProjectRequest({
|
||||
$core.String? projectID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (projectID != null) {
|
||||
$result.projectID = projectID;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteClaimTypesForProjectRequest._() : super();
|
||||
factory DeleteClaimTypesForProjectRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteClaimTypesForProjectRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteClaimTypesForProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypesForProjectRequest clone() => DeleteClaimTypesForProjectRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypesForProjectRequest copyWith(void Function(DeleteClaimTypesForProjectRequest) updates) => super.copyWith((message) => updates(message as DeleteClaimTypesForProjectRequest)) as DeleteClaimTypesForProjectRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypesForProjectRequest create() => DeleteClaimTypesForProjectRequest._();
|
||||
DeleteClaimTypesForProjectRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteClaimTypesForProjectRequest> createRepeated() => $pb.PbList<DeleteClaimTypesForProjectRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypesForProjectRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteClaimTypesForProjectRequest>(create);
|
||||
static DeleteClaimTypesForProjectRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get projectID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set projectID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasProjectID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearProjectID() => clearField(1);
|
||||
}
|
||||
|
||||
class DeleteClaimTypesForProjectResponse extends $pb.GeneratedMessage {
|
||||
factory DeleteClaimTypesForProjectResponse() => create();
|
||||
DeleteClaimTypesForProjectResponse._() : super();
|
||||
factory DeleteClaimTypesForProjectResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteClaimTypesForProjectResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteClaimTypesForProjectResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypesForProjectResponse clone() => DeleteClaimTypesForProjectResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteClaimTypesForProjectResponse copyWith(void Function(DeleteClaimTypesForProjectResponse) updates) => super.copyWith((message) => updates(message as DeleteClaimTypesForProjectResponse)) as DeleteClaimTypesForProjectResponse;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypesForProjectResponse create() => DeleteClaimTypesForProjectResponse._();
|
||||
DeleteClaimTypesForProjectResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteClaimTypesForProjectResponse> createRepeated() => $pb.PbList<DeleteClaimTypesForProjectResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteClaimTypesForProjectResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteClaimTypesForProjectResponse>(create);
|
||||
static DeleteClaimTypesForProjectResponse? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/claim-type.pbenum.dart
Normal file
11
lib/claim-type.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim-type.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
159
lib/claim-type.pbgrpc.dart
Normal file
159
lib/claim-type.pbgrpc.dart
Normal file
@@ -0,0 +1,159 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim-type.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'claim-type.pb.dart' as $43;
|
||||
|
||||
export 'claim-type.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimTypeService')
|
||||
class ClaimTypeServiceClient extends $grpc.Client {
|
||||
static final _$create = $grpc.ClientMethod<$43.CreateClaimTypeRequest, $43.CreateClaimTypeResponse>(
|
||||
'/api.ClaimTypeService/Create',
|
||||
($43.CreateClaimTypeRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.CreateClaimTypeResponse.fromBuffer(value));
|
||||
static final _$get = $grpc.ClientMethod<$43.GetClaimTypeRequest, $43.GetClaimTypeResponse>(
|
||||
'/api.ClaimTypeService/Get',
|
||||
($43.GetClaimTypeRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.GetClaimTypeResponse.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$43.ListClaimTypeRequest, $43.ListClaimTypeResponse>(
|
||||
'/api.ClaimTypeService/List',
|
||||
($43.ListClaimTypeRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.ListClaimTypeResponse.fromBuffer(value));
|
||||
static final _$update = $grpc.ClientMethod<$43.UpdateClaimTypeRequest, $43.UpdateClaimTypeResponse>(
|
||||
'/api.ClaimTypeService/Update',
|
||||
($43.UpdateClaimTypeRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.UpdateClaimTypeResponse.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$43.DeleteClaimTypeRequest, $43.DeleteClaimTypeResponse>(
|
||||
'/api.ClaimTypeService/Delete',
|
||||
($43.DeleteClaimTypeRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.DeleteClaimTypeResponse.fromBuffer(value));
|
||||
static final _$deleteClaimTypesForProject = $grpc.ClientMethod<$43.DeleteClaimTypesForProjectRequest, $43.DeleteClaimTypesForProjectResponse>(
|
||||
'/api.ClaimTypeService/DeleteClaimTypesForProject',
|
||||
($43.DeleteClaimTypesForProjectRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $43.DeleteClaimTypesForProjectResponse.fromBuffer(value));
|
||||
|
||||
ClaimTypeServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$43.CreateClaimTypeResponse> create($43.CreateClaimTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$43.GetClaimTypeResponse> get($43.GetClaimTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$43.ListClaimTypeResponse> list($43.ListClaimTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$43.UpdateClaimTypeResponse> update($43.UpdateClaimTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$update, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$43.DeleteClaimTypeResponse> delete($43.DeleteClaimTypeRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$43.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($43.DeleteClaimTypesForProjectRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteClaimTypesForProject, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimTypeService')
|
||||
abstract class ClaimTypeServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ClaimTypeService';
|
||||
|
||||
ClaimTypeServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$43.CreateClaimTypeRequest, $43.CreateClaimTypeResponse>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.CreateClaimTypeRequest.fromBuffer(value),
|
||||
($43.CreateClaimTypeResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$43.GetClaimTypeRequest, $43.GetClaimTypeResponse>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.GetClaimTypeRequest.fromBuffer(value),
|
||||
($43.GetClaimTypeResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$43.ListClaimTypeRequest, $43.ListClaimTypeResponse>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.ListClaimTypeRequest.fromBuffer(value),
|
||||
($43.ListClaimTypeResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$43.UpdateClaimTypeRequest, $43.UpdateClaimTypeResponse>(
|
||||
'Update',
|
||||
update_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.UpdateClaimTypeRequest.fromBuffer(value),
|
||||
($43.UpdateClaimTypeResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$43.DeleteClaimTypeRequest, $43.DeleteClaimTypeResponse>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.DeleteClaimTypeRequest.fromBuffer(value),
|
||||
($43.DeleteClaimTypeResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$43.DeleteClaimTypesForProjectRequest, $43.DeleteClaimTypesForProjectResponse>(
|
||||
'DeleteClaimTypesForProject',
|
||||
deleteClaimTypesForProject_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $43.DeleteClaimTypesForProjectRequest.fromBuffer(value),
|
||||
($43.DeleteClaimTypesForProjectResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$43.CreateClaimTypeResponse> create_Pre($grpc.ServiceCall call, $async.Future<$43.CreateClaimTypeRequest> request) async {
|
||||
return create(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.GetClaimTypeResponse> get_Pre($grpc.ServiceCall call, $async.Future<$43.GetClaimTypeRequest> request) async {
|
||||
return get(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.ListClaimTypeResponse> list_Pre($grpc.ServiceCall call, $async.Future<$43.ListClaimTypeRequest> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.UpdateClaimTypeResponse> update_Pre($grpc.ServiceCall call, $async.Future<$43.UpdateClaimTypeRequest> request) async {
|
||||
return update(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.DeleteClaimTypeResponse> delete_Pre($grpc.ServiceCall call, $async.Future<$43.DeleteClaimTypeRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject_Pre($grpc.ServiceCall call, $async.Future<$43.DeleteClaimTypesForProjectRequest> request) async {
|
||||
return deleteClaimTypesForProject(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$43.CreateClaimTypeResponse> create($grpc.ServiceCall call, $43.CreateClaimTypeRequest request);
|
||||
$async.Future<$43.GetClaimTypeResponse> get($grpc.ServiceCall call, $43.GetClaimTypeRequest request);
|
||||
$async.Future<$43.ListClaimTypeResponse> list($grpc.ServiceCall call, $43.ListClaimTypeRequest request);
|
||||
$async.Future<$43.UpdateClaimTypeResponse> update($grpc.ServiceCall call, $43.UpdateClaimTypeRequest request);
|
||||
$async.Future<$43.DeleteClaimTypeResponse> delete($grpc.ServiceCall call, $43.DeleteClaimTypeRequest request);
|
||||
$async.Future<$43.DeleteClaimTypesForProjectResponse> deleteClaimTypesForProject($grpc.ServiceCall call, $43.DeleteClaimTypesForProjectRequest request);
|
||||
}
|
||||
227
lib/claim-type.pbjson.dart
Normal file
227
lib/claim-type.pbjson.dart
Normal file
@@ -0,0 +1,227 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim-type.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use createClaimTypeRequestDescriptor instead')
|
||||
const CreateClaimTypeRequest$json = {
|
||||
'1': 'CreateClaimTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Reason', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Reason'},
|
||||
{'1': 'ReasonCode', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'ReasonCode'},
|
||||
{'1': 'EntityType', '3': 4, '4': 1, '5': 14, '6': '.api.ClaimEntityType', '8': {}, '10': 'EntityType'},
|
||||
{'1': 'DefaultCriticality', '3': 5, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'DefaultCriticality'},
|
||||
{'1': 'Transitions', '3': 6, '4': 3, '5': 11, '6': '.api.ClaimTransition', '10': 'Transitions'},
|
||||
{'1': 'PossibleClosures', '3': 7, '4': 3, '5': 11, '6': '.api.ClaimTypeClosure', '10': 'PossibleClosures'},
|
||||
{'1': 'CriticalityAllowedRoles', '3': 8, '4': 3, '5': 9, '10': 'CriticalityAllowedRoles'},
|
||||
{'1': 'ReadAllowedRoles', '3': 9, '4': 3, '5': 9, '10': 'ReadAllowedRoles'},
|
||||
{'1': 'WriteAllowedRoles', '3': 10, '4': 3, '5': 9, '10': 'WriteAllowedRoles'},
|
||||
{'1': 'AssignAllowedRoles', '3': 11, '4': 3, '5': 9, '10': 'AssignAllowedRoles'},
|
||||
{'1': 'AllowedStatuses', '3': 12, '4': 3, '5': 14, '6': '.api.ClaimStatus', '10': 'AllowedStatuses'},
|
||||
{'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createClaimTypeRequestDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'CreateClaimTypeResponse',
|
||||
'2': [
|
||||
{'1': 'ClaimType', '3': 1, '4': 1, '5': 11, '6': '.api.ClaimType', '8': {}, '10': 'ClaimType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createClaimTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChdDcmVhdGVDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
|
||||
'1UeXBlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
|
||||
|
||||
@$core.Deprecated('Use getClaimTypeRequestDescriptor instead')
|
||||
const GetClaimTypeRequest$json = {
|
||||
'1': 'GetClaimTypeRequest',
|
||||
'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 `GetClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getClaimTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChNHZXRDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQ6E5JB'
|
||||
'EAoO0gEGSGVhZGVy0gECSUQ=');
|
||||
|
||||
@$core.Deprecated('Use getClaimTypeResponseDescriptor instead')
|
||||
const GetClaimTypeResponse$json = {
|
||||
'1': 'GetClaimTypeResponse',
|
||||
'2': [
|
||||
{'1': 'ClaimType', '3': 1, '4': 1, '5': 11, '6': '.api.ClaimType', '8': {}, '10': 'ClaimType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getClaimTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChRHZXRDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW1UeX'
|
||||
'BlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
|
||||
|
||||
@$core.Deprecated('Use listClaimTypeRequestDescriptor instead')
|
||||
const ListClaimTypeRequest$json = {
|
||||
'1': 'ListClaimTypeRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listClaimTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChRMaXN0Q2xhaW1UeXBlUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||
'plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use listClaimTypeResponseDescriptor instead')
|
||||
const ListClaimTypeResponse$json = {
|
||||
'1': 'ListClaimTypeResponse',
|
||||
'2': [
|
||||
{'1': 'ClaimTypes', '3': 1, '4': 3, '5': 11, '6': '.api.ClaimType', '10': 'ClaimTypes'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listClaimTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChVMaXN0Q2xhaW1UeXBlUmVzcG9uc2USLgoKQ2xhaW1UeXBlcxgBIAMoCzIOLmFwaS5DbGFpbV'
|
||||
'R5cGVSCkNsYWltVHlwZXM=');
|
||||
|
||||
@$core.Deprecated('Use updateClaimTypeRequestDescriptor instead')
|
||||
const UpdateClaimTypeRequest$json = {
|
||||
'1': 'UpdateClaimTypeRequest',
|
||||
'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': 'DefaultCriticality', '3': 3, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'DefaultCriticality'},
|
||||
{'1': 'Transitions', '3': 4, '4': 3, '5': 11, '6': '.api.ClaimTransition', '10': 'Transitions'},
|
||||
{'1': 'PossibleClosures', '3': 5, '4': 3, '5': 11, '6': '.api.ClaimTypeClosure', '10': 'PossibleClosures'},
|
||||
{'1': 'CriticalityAllowedRoles', '3': 6, '4': 3, '5': 9, '10': 'CriticalityAllowedRoles'},
|
||||
{'1': 'ReadAllowedRoles', '3': 7, '4': 3, '5': 9, '10': 'ReadAllowedRoles'},
|
||||
{'1': 'WriteAllowedRoles', '3': 8, '4': 3, '5': 9, '10': 'WriteAllowedRoles'},
|
||||
{'1': 'AssignAllowedRoles', '3': 9, '4': 3, '5': 9, '10': 'AssignAllowedRoles'},
|
||||
{'1': 'AllowedStatuses', '3': 10, '4': 3, '5': 14, '6': '.api.ClaimStatus', '10': 'AllowedStatuses'},
|
||||
{'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateClaimTypeRequestDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'UpdateClaimTypeResponse',
|
||||
'2': [
|
||||
{'1': 'ClaimType', '3': 1, '4': 1, '5': 11, '6': '.api.ClaimType', '8': {}, '10': 'ClaimType'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateClaimTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChdVcGRhdGVDbGFpbVR5cGVSZXNwb25zZRI2CglDbGFpbVR5cGUYASABKAsyDi5hcGkuQ2xhaW'
|
||||
'1UeXBlQgj6QgWKAQIQAVIJQ2xhaW1UeXBl');
|
||||
|
||||
@$core.Deprecated('Use deleteClaimTypeRequestDescriptor instead')
|
||||
const DeleteClaimTypeRequest$json = {
|
||||
'1': 'DeleteClaimTypeRequest',
|
||||
'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 `DeleteClaimTypeRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteClaimTypeRequestDescriptor = $convert.base64Decode(
|
||||
'ChZEZWxldGVDbGFpbVR5cGVSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIXCgJJRBgCIAEoCUIH+kIEcgIQAVICSUQ6'
|
||||
'E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
|
||||
|
||||
@$core.Deprecated('Use deleteClaimTypeResponseDescriptor instead')
|
||||
const DeleteClaimTypeResponse$json = {
|
||||
'1': 'DeleteClaimTypeResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteClaimTypeResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteClaimTypeResponseDescriptor = $convert.base64Decode(
|
||||
'ChdEZWxldGVDbGFpbVR5cGVSZXNwb25zZQ==');
|
||||
|
||||
@$core.Deprecated('Use deleteClaimTypesForProjectRequestDescriptor instead')
|
||||
const DeleteClaimTypesForProjectRequest$json = {
|
||||
'1': 'DeleteClaimTypesForProjectRequest',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteClaimTypesForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteClaimTypesForProjectRequestDescriptor = $convert.base64Decode(
|
||||
'CiFEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlcXVlc3QSJQoJUHJvamVjdElEGAEgASgJQg'
|
||||
'f6QgRyAhABUglQcm9qZWN0SUQ6EZJBDgoM0gEJUHJvamVjdElE');
|
||||
|
||||
@$core.Deprecated('Use deleteClaimTypesForProjectResponseDescriptor instead')
|
||||
const DeleteClaimTypesForProjectResponse$json = {
|
||||
'1': 'DeleteClaimTypesForProjectResponse',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteClaimTypesForProjectResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteClaimTypesForProjectResponseDescriptor = $convert.base64Decode(
|
||||
'CiJEZWxldGVDbGFpbVR5cGVzRm9yUHJvamVjdFJlc3BvbnNl');
|
||||
|
||||
497
lib/claim.pb.dart
Normal file
497
lib/claim.pb.dart
Normal file
@@ -0,0 +1,497 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $86;
|
||||
import 'shared.pb.dart' as $28;
|
||||
import 'shared.pbenum.dart' as $28;
|
||||
|
||||
///
|
||||
/// Aggregation object message
|
||||
class Claim extends $pb.GeneratedMessage {
|
||||
factory Claim({
|
||||
$28.EventHeader? lastEventHeader,
|
||||
$28.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;
|
||||
}
|
||||
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<$28.EventHeader>(1, _omitFieldNames ? '' : 'LastEventHeader', protoName: 'LastEventHeader', subBuilder: $28.EventHeader.create)
|
||||
..aOM<$28.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $28.EntityID.create)
|
||||
..aOM<ClaimPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: ClaimPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Claim create() => Claim._();
|
||||
Claim createEmptyInstance() => create();
|
||||
static $pb.PbList<Claim> createRepeated() => $pb.PbList<Claim>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Claim getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Claim>(create);
|
||||
static Claim? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.EventHeader get lastEventHeader => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set lastEventHeader($28.EventHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasLastEventHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearLastEventHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.EventHeader ensureLastEventHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($28.EntityID v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ClaimPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(ClaimPayload v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ClaimPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ClaimPayload extends $pb.GeneratedMessage {
|
||||
factory ClaimPayload({
|
||||
$core.String? claimTypeID,
|
||||
$core.String? entityID,
|
||||
$28.ClaimCriticality? criticality,
|
||||
$86.ClaimStatusStruct? status,
|
||||
$core.String? creationDate,
|
||||
$core.Iterable<$core.String>? assignees,
|
||||
$core.String? endComment,
|
||||
$28.ClaimClosure? closure,
|
||||
$core.Iterable<$28.AttachmentSummary>? attachments,
|
||||
$core.int? attachmentNumber,
|
||||
$28.Amount? amount,
|
||||
$core.String? reason,
|
||||
$28.ClaimSector? sector,
|
||||
$28.ClaimEntityType? entityType,
|
||||
$core.Iterable<$core.String>? removedAssignees,
|
||||
$core.Iterable<$core.String>? addedAssignees,
|
||||
$core.String? reasonCode,
|
||||
$core.Iterable<$28.MetadataElement>? metaData,
|
||||
$core.String? title,
|
||||
$core.String? displayID,
|
||||
}) {
|
||||
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._() : 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<$28.ClaimCriticality>(3, _omitFieldNames ? '' : 'Criticality', $pb.PbFieldType.OE, protoName: 'Criticality', defaultOrMaker: $28.ClaimCriticality.CLAIM_CRITICALITY_UNKNOWN, valueOf: $28.ClaimCriticality.valueOf, enumValues: $28.ClaimCriticality.values)
|
||||
..aOM<$86.ClaimStatusStruct>(4, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $86.ClaimStatusStruct.create)
|
||||
..aOS(6, _omitFieldNames ? '' : 'CreationDate', protoName: 'CreationDate')
|
||||
..pPS(7, _omitFieldNames ? '' : 'Assignees', protoName: 'Assignees')
|
||||
..aOS(8, _omitFieldNames ? '' : 'EndComment', protoName: 'EndComment')
|
||||
..aOM<$28.ClaimClosure>(9, _omitFieldNames ? '' : 'Closure', protoName: 'Closure', subBuilder: $28.ClaimClosure.create)
|
||||
..pc<$28.AttachmentSummary>(10, _omitFieldNames ? '' : 'Attachments', $pb.PbFieldType.PM, protoName: 'Attachments', subBuilder: $28.AttachmentSummary.create)
|
||||
..a<$core.int>(11, _omitFieldNames ? '' : 'AttachmentNumber', $pb.PbFieldType.O3, protoName: 'AttachmentNumber')
|
||||
..aOM<$28.Amount>(12, _omitFieldNames ? '' : 'Amount', protoName: 'Amount', subBuilder: $28.Amount.create)
|
||||
..aOS(13, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
|
||||
..e<$28.ClaimSector>(14, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $28.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $28.ClaimSector.valueOf, enumValues: $28.ClaimSector.values)
|
||||
..e<$28.ClaimEntityType>(15, _omitFieldNames ? '' : 'EntityType', $pb.PbFieldType.OE, protoName: 'EntityType', defaultOrMaker: $28.ClaimEntityType.CLAIM_ENTITY_TYPE_UNKNOWN, valueOf: $28.ClaimEntityType.valueOf, enumValues: $28.ClaimEntityType.values)
|
||||
..pPS(16, _omitFieldNames ? '' : 'RemovedAssignees', protoName: 'RemovedAssignees')
|
||||
..pPS(17, _omitFieldNames ? '' : 'AddedAssignees', protoName: 'AddedAssignees')
|
||||
..aOS(18, _omitFieldNames ? '' : 'ReasonCode', protoName: 'ReasonCode')
|
||||
..pc<$28.MetadataElement>(19, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $28.MetadataElement.create)
|
||||
..aOS(20, _omitFieldNames ? '' : 'Title', protoName: 'Title')
|
||||
..aOS(21, _omitFieldNames ? '' : 'DisplayID', protoName: 'DisplayID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimPayload create() => ClaimPayload._();
|
||||
ClaimPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimPayload> createRepeated() => $pb.PbList<ClaimPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimPayload>(create);
|
||||
static ClaimPayload? _defaultInstance;
|
||||
|
||||
/// Identifier of the claim type
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get claimTypeID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set claimTypeID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClaimTypeID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClaimTypeID() => clearField(1);
|
||||
|
||||
/// Identifier of the targetted entity
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get entityID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set entityID($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasEntityID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearEntityID() => clearField(2);
|
||||
|
||||
/// Criticality of the claim
|
||||
@$pb.TagNumber(3)
|
||||
$28.ClaimCriticality get criticality => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set criticality($28.ClaimCriticality v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasCriticality() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearCriticality() => clearField(3);
|
||||
|
||||
/// Status of the claim
|
||||
@$pb.TagNumber(4)
|
||||
$86.ClaimStatusStruct get status => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set status($86.ClaimStatusStruct v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasStatus() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearStatus() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$86.ClaimStatusStruct ensureStatus() => $_ensure(3);
|
||||
|
||||
/// Creation date of the claim
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get creationDate => $_getSZ(4);
|
||||
@$pb.TagNumber(6)
|
||||
set creationDate($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasCreationDate() => $_has(4);
|
||||
@$pb.TagNumber(6)
|
||||
void clearCreationDate() => clearField(6);
|
||||
|
||||
/// Contacts assigned on the claim
|
||||
@$pb.TagNumber(7)
|
||||
$core.List<$core.String> get assignees => $_getList(5);
|
||||
|
||||
/// End comment of the claim
|
||||
@$pb.TagNumber(8)
|
||||
$core.String get endComment => $_getSZ(6);
|
||||
@$pb.TagNumber(8)
|
||||
set endComment($core.String v) { $_setString(6, v); }
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasEndComment() => $_has(6);
|
||||
@$pb.TagNumber(8)
|
||||
void clearEndComment() => clearField(8);
|
||||
|
||||
/// Closure responsible and causes of the claim
|
||||
@$pb.TagNumber(9)
|
||||
$28.ClaimClosure get closure => $_getN(7);
|
||||
@$pb.TagNumber(9)
|
||||
set closure($28.ClaimClosure v) { setField(9, v); }
|
||||
@$pb.TagNumber(9)
|
||||
$core.bool hasClosure() => $_has(7);
|
||||
@$pb.TagNumber(9)
|
||||
void clearClosure() => clearField(9);
|
||||
@$pb.TagNumber(9)
|
||||
$28.ClaimClosure ensureClosure() => $_ensure(7);
|
||||
|
||||
@$pb.TagNumber(10)
|
||||
$core.List<$28.AttachmentSummary> get attachments => $_getList(8);
|
||||
|
||||
@$pb.TagNumber(11)
|
||||
$core.int get attachmentNumber => $_getIZ(9);
|
||||
@$pb.TagNumber(11)
|
||||
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)
|
||||
$28.Amount get amount => $_getN(10);
|
||||
@$pb.TagNumber(12)
|
||||
set amount($28.Amount v) { setField(12, v); }
|
||||
@$pb.TagNumber(12)
|
||||
$core.bool hasAmount() => $_has(10);
|
||||
@$pb.TagNumber(12)
|
||||
void clearAmount() => clearField(12);
|
||||
@$pb.TagNumber(12)
|
||||
$28.Amount ensureAmount() => $_ensure(10);
|
||||
|
||||
@$pb.TagNumber(13)
|
||||
$core.String get reason => $_getSZ(11);
|
||||
@$pb.TagNumber(13)
|
||||
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)
|
||||
$28.ClaimSector get sector => $_getN(12);
|
||||
@$pb.TagNumber(14)
|
||||
set sector($28.ClaimSector v) { setField(14, v); }
|
||||
@$pb.TagNumber(14)
|
||||
$core.bool hasSector() => $_has(12);
|
||||
@$pb.TagNumber(14)
|
||||
void clearSector() => clearField(14);
|
||||
|
||||
@$pb.TagNumber(15)
|
||||
$28.ClaimEntityType get entityType => $_getN(13);
|
||||
@$pb.TagNumber(15)
|
||||
set entityType($28.ClaimEntityType v) { setField(15, v); }
|
||||
@$pb.TagNumber(15)
|
||||
$core.bool hasEntityType() => $_has(13);
|
||||
@$pb.TagNumber(15)
|
||||
void clearEntityType() => clearField(15);
|
||||
|
||||
/// Contacts assigned removed from the claim
|
||||
@$pb.TagNumber(16)
|
||||
$core.List<$core.String> get removedAssignees => $_getList(14);
|
||||
|
||||
/// Contacts assigned added from the claim
|
||||
@$pb.TagNumber(17)
|
||||
$core.List<$core.String> get addedAssignees => $_getList(15);
|
||||
|
||||
@$pb.TagNumber(18)
|
||||
$core.String get reasonCode => $_getSZ(16);
|
||||
@$pb.TagNumber(18)
|
||||
set reasonCode($core.String v) { $_setString(16, v); }
|
||||
@$pb.TagNumber(18)
|
||||
$core.bool hasReasonCode() => $_has(16);
|
||||
@$pb.TagNumber(18)
|
||||
void clearReasonCode() => clearField(18);
|
||||
|
||||
/// Metadata are characteristics specific to the project. They can be of several data form (string, integer, float, boolean or timestamp)
|
||||
@$pb.TagNumber(19)
|
||||
$core.List<$28.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 v) { $_setString(18, v); }
|
||||
@$pb.TagNumber(20)
|
||||
$core.bool hasTitle() => $_has(18);
|
||||
@$pb.TagNumber(20)
|
||||
void clearTitle() => clearField(20);
|
||||
|
||||
/// Identifier to display, because it may differ from the EntityID
|
||||
@$pb.TagNumber(21)
|
||||
$core.String get displayID => $_getSZ(19);
|
||||
@$pb.TagNumber(21)
|
||||
set displayID($core.String v) { $_setString(19, v); }
|
||||
@$pb.TagNumber(21)
|
||||
$core.bool hasDisplayID() => $_has(19);
|
||||
@$pb.TagNumber(21)
|
||||
void clearDisplayID() => clearField(21);
|
||||
}
|
||||
|
||||
class ClaimTriplet extends $pb.GeneratedMessage {
|
||||
factory ClaimTriplet({
|
||||
Claim? current,
|
||||
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;
|
||||
}
|
||||
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)
|
||||
..aOM<Claim>(2, _omitFieldNames ? '' : 'Previous', protoName: 'Previous', subBuilder: Claim.create)
|
||||
..aOM<Claim>(3, _omitFieldNames ? '' : 'LastEvent', protoName: 'LastEvent', subBuilder: Claim.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimTriplet create() => ClaimTriplet._();
|
||||
ClaimTriplet createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimTriplet> createRepeated() => $pb.PbList<ClaimTriplet>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimTriplet getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimTriplet>(create);
|
||||
static ClaimTriplet? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
Claim get current => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set current(Claim v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCurrent() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCurrent() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
Claim ensureCurrent() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
Claim get previous => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set previous(Claim v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasPrevious() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearPrevious() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
Claim ensurePrevious() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
Claim get lastEvent => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set lastEvent(Claim v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasLastEvent() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearLastEvent() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
Claim ensureLastEvent() => $_ensure(2);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/claim.pbenum.dart
Normal file
11
lib/claim.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
119
lib/claim.pbjson.dart
Normal file
119
lib/claim.pbjson.dart
Normal file
@@ -0,0 +1,119 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claim.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use claimDescriptor instead')
|
||||
const Claim$json = {
|
||||
'1': 'Claim',
|
||||
'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.ClaimPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `Claim`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimDescriptor = $convert.base64Decode(
|
||||
'CgVDbGFpbRI6Cg9MYXN0RXZlbnRIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSD0xhc3'
|
||||
'RFdmVudEhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSKwoHUGF5bG9hZBgD'
|
||||
'IAEoCzIRLmFwaS5DbGFpbVBheWxvYWRSB1BheWxvYWQ6IZJBHgocMhpBZ2dyZWdhdGlvbiBvYm'
|
||||
'plY3QgbWVzc2FnZQ==');
|
||||
|
||||
@$core.Deprecated('Use claimPayloadDescriptor instead')
|
||||
const ClaimPayload$json = {
|
||||
'1': 'ClaimPayload',
|
||||
'2': [
|
||||
{'1': 'ClaimTypeID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ClaimTypeID'},
|
||||
{'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': {}, '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'},
|
||||
{'1': 'EndComment', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'EndComment'},
|
||||
{'1': 'Closure', '3': 9, '4': 1, '5': 11, '6': '.api.ClaimClosure', '8': {}, '10': 'Closure'},
|
||||
{'1': 'Attachments', '3': 10, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
{'1': 'AttachmentNumber', '3': 11, '4': 1, '5': 5, '8': {}, '10': 'AttachmentNumber'},
|
||||
{'1': 'Amount', '3': 12, '4': 1, '5': 11, '6': '.api.Amount', '8': {}, '10': 'Amount'},
|
||||
{'1': 'Reason', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'Reason'},
|
||||
{'1': 'ReasonCode', '3': 18, '4': 1, '5': 9, '8': {}, '10': 'ReasonCode'},
|
||||
{'1': 'Sector', '3': 14, '4': 1, '5': 14, '6': '.api.ClaimSector', '8': {}, '10': 'Sector'},
|
||||
{'1': 'EntityType', '3': 15, '4': 1, '5': 14, '6': '.api.ClaimEntityType', '8': {}, '10': 'EntityType'},
|
||||
{'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPayloadDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'ClaimTriplet',
|
||||
'2': [
|
||||
{'1': 'Current', '3': 1, '4': 1, '5': 11, '6': '.api.Claim', '10': 'Current'},
|
||||
{'1': 'Previous', '3': 2, '4': 1, '5': 11, '6': '.api.Claim', '10': 'Previous'},
|
||||
{'1': 'LastEvent', '3': 3, '4': 1, '5': 11, '6': '.api.Claim', '10': 'LastEvent'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimTriplet`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimTripletDescriptor = $convert.base64Decode(
|
||||
'CgxDbGFpbVRyaXBsZXQSJAoHQ3VycmVudBgBIAEoCzIKLmFwaS5DbGFpbVIHQ3VycmVudBImCg'
|
||||
'hQcmV2aW91cxgCIAEoCzIKLmFwaS5DbGFpbVIIUHJldmlvdXMSKAoJTGFzdEV2ZW50GAMgASgL'
|
||||
'MgouYXBpLkNsYWltUglMYXN0RXZlbnQ=');
|
||||
|
||||
1414
lib/claimAction.pb.dart
Normal file
1414
lib/claimAction.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
11
lib/claimAction.pbenum.dart
Normal file
11
lib/claimAction.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimAction.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
285
lib/claimAction.pbjson.dart
Normal file
285
lib/claimAction.pbjson.dart
Normal file
@@ -0,0 +1,285 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimAction.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use claimNotifyPayloadDescriptor instead')
|
||||
const ClaimNotifyPayload$json = {
|
||||
'1': 'ClaimNotifyPayload',
|
||||
'2': [
|
||||
{'1': 'Assignees', '3': 1, '4': 3, '5': 9, '10': 'Assignees'},
|
||||
{'1': 'Status', '3': 2, '4': 1, '5': 11, '6': '.api.ClaimStatusStruct', '10': 'Status'},
|
||||
{'1': 'RemovedAssignees', '3': 3, '4': 3, '5': 9, '10': 'RemovedAssignees'},
|
||||
{'1': 'Amount', '3': 4, '4': 1, '5': 11, '6': '.api.Amount', '10': 'Amount'},
|
||||
{'1': 'Criticality', '3': 5, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '10': 'Criticality'},
|
||||
{'1': 'EndComment', '3': 6, '4': 1, '5': 9, '10': 'EndComment'},
|
||||
{'1': 'Closure', '3': 7, '4': 1, '5': 11, '6': '.api.ClaimClosure', '10': 'Closure'},
|
||||
{'1': 'AddedAssignees', '3': 8, '4': 3, '5': 9, '10': 'AddedAssignees'},
|
||||
{'1': 'Reason', '3': 9, '4': 1, '5': 9, '10': 'Reason'},
|
||||
{'1': 'EntityType', '3': 10, '4': 1, '5': 14, '6': '.api.ClaimEntityType', '10': 'EntityType'},
|
||||
{'1': 'EntityID', '3': 11, '4': 1, '5': 9, '10': 'EntityID'},
|
||||
{'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimNotifyPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimNotifyPayloadDescriptor = $convert.base64Decode(
|
||||
'ChJDbGFpbU5vdGlmeVBheWxvYWQSHAoJQXNzaWduZWVzGAEgAygJUglBc3NpZ25lZXMSLgoGU3'
|
||||
'RhdHVzGAIgASgLMhYuYXBpLkNsYWltU3RhdHVzU3RydWN0UgZTdGF0dXMSKgoQUmVtb3ZlZEFz'
|
||||
'c2lnbmVlcxgDIAMoCVIQUmVtb3ZlZEFzc2lnbmVlcxIjCgZBbW91bnQYBCABKAsyCy5hcGkuQW'
|
||||
'1vdW50UgZBbW91bnQSNwoLQ3JpdGljYWxpdHkYBSABKA4yFS5hcGkuQ2xhaW1Dcml0aWNhbGl0'
|
||||
'eVILQ3JpdGljYWxpdHkSHgoKRW5kQ29tbWVudBgGIAEoCVIKRW5kQ29tbWVudBIrCgdDbG9zdX'
|
||||
'JlGAcgASgLMhEuYXBpLkNsYWltQ2xvc3VyZVIHQ2xvc3VyZRImCg5BZGRlZEFzc2lnbmVlcxgI'
|
||||
'IAMoCVIOQWRkZWRBc3NpZ25lZXMSFgoGUmVhc29uGAkgASgJUgZSZWFzb24SNAoKRW50aXR5VH'
|
||||
'lwZRgKIAEoDjIULmFwaS5DbGFpbUVudGl0eVR5cGVSCkVudGl0eVR5cGUSGgoIRW50aXR5SUQY'
|
||||
'CyABKAlSCEVudGl0eUlEEhQKBVRpdGxlGAwgASgJUgVUaXRsZRIwCghNZXRhRGF0YRgNIAMoCz'
|
||||
'IULmFwaS5NZXRhZGF0YUVsZW1lbnRSCE1ldGFEYXRhEhwKCURpc3BsYXlJRBgOIAEoCVIJRGlz'
|
||||
'cGxheUlEOhmiuxgHQ29tbWFuZKi7GAGyuxgGTm90aWZ5');
|
||||
|
||||
@$core.Deprecated('Use claimNotifyDescriptor instead')
|
||||
const ClaimNotify$json = {
|
||||
'1': 'ClaimNotify',
|
||||
'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.ClaimNotifyPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimNotifyPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimNotifyPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimNotify`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimNotifyDescriptor = $convert.base64Decode(
|
||||
'CgtDbGFpbU5vdGlmeRIqCgZIZWFkZXIYASABKAsyEi5hcGkuQ29tbWFuZEhlYWRlclIGSGVhZG'
|
||||
'VyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBIxCgdQYXlsb2FkGAMgASgLMhcuYXBp'
|
||||
'LkNsYWltTm90aWZ5UGF5bG9hZFIHUGF5bG9hZBI7CgxFdmVudFBheWxvYWQYBCABKAsyFy5hcG'
|
||||
'kuQ2xhaW1Ob3RpZnlQYXlsb2FkUgxFdmVudFBheWxvYWQSQQoPUHJldmlvdXNQYXlsb2FkGAUg'
|
||||
'ASgLMhcuYXBpLkNsYWltTm90aWZ5UGF5bG9hZFIPUHJldmlvdXNQYXlsb2FkOi2iuxgHQ29tbW'
|
||||
'FuZLK7GAZOb3RpZnnCuxgUY29sbGFiLm5vdGlmLkNyZWF0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateActorPayloadDescriptor instead')
|
||||
const ClaimPropagateActorPayload$json = {
|
||||
'1': 'ClaimPropagateActorPayload',
|
||||
'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 `ClaimPropagateActorPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateActorPayloadDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbVByb3BhZ2F0ZUFjdG9yUGF5bG9hZBIaCghFbnRpdHlJRBgBIAEoCVIIRW50aXR5SU'
|
||||
'QSIAoLQ2xhaW1UeXBlSUQYAiABKAlSC0NsYWltVHlwZUlEEhYKBlJlYXNvbhgDIAEoCVIGUmVh'
|
||||
'c29uEjQKCkVudGl0eVR5cGUYBCABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlUgpFbnRpdHlUeX'
|
||||
'BlOiGiuxgHQ29tbWFuZKi7GAGyuxgOUHJvcGFnYXRlQWN0b3I=');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateActorDescriptor instead')
|
||||
const ClaimPropagateActor$json = {
|
||||
'1': 'ClaimPropagateActor',
|
||||
'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.ClaimPropagateActorPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateActorPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateActorPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPropagateActor`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateActorDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbVByb3BhZ2F0ZUFjdG9yEioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW5kSGVhZG'
|
||||
'VyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjkKB1BheWxvYWQYAyAB'
|
||||
'KAsyHy5hcGkuQ2xhaW1Qcm9wYWdhdGVBY3RvclBheWxvYWRSB1BheWxvYWQSQwoMRXZlbnRQYX'
|
||||
'lsb2FkGAQgASgLMh8uYXBpLkNsYWltUHJvcGFnYXRlQWN0b3JQYXlsb2FkUgxFdmVudFBheWxv'
|
||||
'YWQSSQoPUHJldmlvdXNQYXlsb2FkGAUgASgLMh8uYXBpLkNsYWltUHJvcGFnYXRlQWN0b3JQYX'
|
||||
'lsb2FkUg9QcmV2aW91c1BheWxvYWQ6QqK7GAdDb21tYW5ksrsYDlByb3BhZ2F0ZUFjdG9ywrsY'
|
||||
'FnRyYWRlLmFjdG9yLkNsYWltQWRkZWTquxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateHandlingunitPayloadDescriptor instead')
|
||||
const ClaimPropagateHandlingunitPayload$json = {
|
||||
'1': 'ClaimPropagateHandlingunitPayload',
|
||||
'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 `ClaimPropagateHandlingunitPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateHandlingunitPayloadDescriptor = $convert.base64Decode(
|
||||
'CiFDbGFpbVByb3BhZ2F0ZUhhbmRsaW5ndW5pdFBheWxvYWQSGgoIRW50aXR5SUQYASABKAlSCE'
|
||||
'VudGl0eUlEEiAKC0NsYWltVHlwZUlEGAIgASgJUgtDbGFpbVR5cGVJRBIWCgZSZWFzb24YAyAB'
|
||||
'KAlSBlJlYXNvbhI0CgpFbnRpdHlUeXBlGAQgASgOMhQuYXBpLkNsYWltRW50aXR5VHlwZVIKRW'
|
||||
'50aXR5VHlwZTooorsYB0NvbW1hbmSouxgBsrsYFVByb3BhZ2F0ZUhhbmRsaW5ndW5pdA==');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateHandlingunitDescriptor instead')
|
||||
const ClaimPropagateHandlingunit$json = {
|
||||
'1': 'ClaimPropagateHandlingunit',
|
||||
'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.ClaimPropagateHandlingunitPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateHandlingunitPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateHandlingunitPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPropagateHandlingunit`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateHandlingunitDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbVByb3BhZ2F0ZUhhbmRsaW5ndW5pdBIqCgZIZWFkZXIYASABKAsyEi5hcGkuQ29tbW'
|
||||
'FuZEhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBJACgdQYXls'
|
||||
'b2FkGAMgASgLMiYuYXBpLkNsYWltUHJvcGFnYXRlSGFuZGxpbmd1bml0UGF5bG9hZFIHUGF5bG'
|
||||
'9hZBJKCgxFdmVudFBheWxvYWQYBCABKAsyJi5hcGkuQ2xhaW1Qcm9wYWdhdGVIYW5kbGluZ3Vu'
|
||||
'aXRQYXlsb2FkUgxFdmVudFBheWxvYWQSUAoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiYuYXBpLk'
|
||||
'NsYWltUHJvcGFnYXRlSGFuZGxpbmd1bml0UGF5bG9hZFIPUHJldmlvdXNQYXlsb2FkOlCiuxgH'
|
||||
'Q29tbWFuZLK7GBVQcm9wYWdhdGVIYW5kbGluZ3VuaXTCuxgddHJhZGUuaGFuZGxpbmd1bml0Lk'
|
||||
'NsYWltQWRkZWTquxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateOrderPayloadDescriptor instead')
|
||||
const ClaimPropagateOrderPayload$json = {
|
||||
'1': 'ClaimPropagateOrderPayload',
|
||||
'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 `ClaimPropagateOrderPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateOrderPayloadDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbVByb3BhZ2F0ZU9yZGVyUGF5bG9hZBIaCghFbnRpdHlJRBgBIAEoCVIIRW50aXR5SU'
|
||||
'QSIAoLQ2xhaW1UeXBlSUQYAiABKAlSC0NsYWltVHlwZUlEEhYKBlJlYXNvbhgDIAEoCVIGUmVh'
|
||||
'c29uEjQKCkVudGl0eVR5cGUYBCABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlUgpFbnRpdHlUeX'
|
||||
'BlOiGiuxgHQ29tbWFuZKi7GAGyuxgOUHJvcGFnYXRlT3JkZXI=');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateOrderDescriptor instead')
|
||||
const ClaimPropagateOrder$json = {
|
||||
'1': 'ClaimPropagateOrder',
|
||||
'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.ClaimPropagateOrderPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateOrderPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateOrderPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPropagateOrder`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateOrderDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbVByb3BhZ2F0ZU9yZGVyEioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW5kSGVhZG'
|
||||
'VyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjkKB1BheWxvYWQYAyAB'
|
||||
'KAsyHy5hcGkuQ2xhaW1Qcm9wYWdhdGVPcmRlclBheWxvYWRSB1BheWxvYWQSQwoMRXZlbnRQYX'
|
||||
'lsb2FkGAQgASgLMh8uYXBpLkNsYWltUHJvcGFnYXRlT3JkZXJQYXlsb2FkUgxFdmVudFBheWxv'
|
||||
'YWQSSQoPUHJldmlvdXNQYXlsb2FkGAUgASgLMh8uYXBpLkNsYWltUHJvcGFnYXRlT3JkZXJQYX'
|
||||
'lsb2FkUg9QcmV2aW91c1BheWxvYWQ6QqK7GAdDb21tYW5ksrsYDlByb3BhZ2F0ZU9yZGVywrsY'
|
||||
'FnRyYWRlLm9yZGVyLkNsYWltQWRkZWTquxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateExecutionflowPayloadDescriptor instead')
|
||||
const ClaimPropagateExecutionflowPayload$json = {
|
||||
'1': 'ClaimPropagateExecutionflowPayload',
|
||||
'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 `ClaimPropagateExecutionflowPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateExecutionflowPayloadDescriptor = $convert.base64Decode(
|
||||
'CiJDbGFpbVByb3BhZ2F0ZUV4ZWN1dGlvbmZsb3dQYXlsb2FkEhoKCEVudGl0eUlEGAEgASgJUg'
|
||||
'hFbnRpdHlJRBIgCgtDbGFpbVR5cGVJRBgCIAEoCVILQ2xhaW1UeXBlSUQSFgoGUmVhc29uGAMg'
|
||||
'ASgJUgZSZWFzb24SNAoKRW50aXR5VHlwZRgEIAEoDjIULmFwaS5DbGFpbUVudGl0eVR5cGVSCk'
|
||||
'VudGl0eVR5cGU6KaK7GAdDb21tYW5kqLsYAbK7GBZQcm9wYWdhdGVFeGVjdXRpb25mbG93');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateExecutionflowDescriptor instead')
|
||||
const ClaimPropagateExecutionflow$json = {
|
||||
'1': 'ClaimPropagateExecutionflow',
|
||||
'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.ClaimPropagateExecutionflowPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateExecutionflowPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateExecutionflowPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPropagateExecutionflow`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateExecutionflowDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbVByb3BhZ2F0ZUV4ZWN1dGlvbmZsb3cSKgoGSGVhZGVyGAEgASgLMhIuYXBpLkNvbW'
|
||||
'1hbmRIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSQQoHUGF5'
|
||||
'bG9hZBgDIAEoCzInLmFwaS5DbGFpbVByb3BhZ2F0ZUV4ZWN1dGlvbmZsb3dQYXlsb2FkUgdQYX'
|
||||
'lsb2FkEksKDEV2ZW50UGF5bG9hZBgEIAEoCzInLmFwaS5DbGFpbVByb3BhZ2F0ZUV4ZWN1dGlv'
|
||||
'bmZsb3dQYXlsb2FkUgxFdmVudFBheWxvYWQSUQoPUHJldmlvdXNQYXlsb2FkGAUgASgLMicuYX'
|
||||
'BpLkNsYWltUHJvcGFnYXRlRXhlY3V0aW9uZmxvd1BheWxvYWRSD1ByZXZpb3VzUGF5bG9hZDpS'
|
||||
'orsYB0NvbW1hbmSyuxgWUHJvcGFnYXRlRXhlY3V0aW9uZmxvd8K7GB50cmFkZS5leGVjdXRpb2'
|
||||
'5mbG93LkNsYWltQWRkZWTquxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateMovementPayloadDescriptor instead')
|
||||
const ClaimPropagateMovementPayload$json = {
|
||||
'1': 'ClaimPropagateMovementPayload',
|
||||
'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 `ClaimPropagateMovementPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateMovementPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch1DbGFpbVByb3BhZ2F0ZU1vdmVtZW50UGF5bG9hZBIaCghFbnRpdHlJRBgBIAEoCVIIRW50aX'
|
||||
'R5SUQSIAoLQ2xhaW1UeXBlSUQYAiABKAlSC0NsYWltVHlwZUlEEhYKBlJlYXNvbhgDIAEoCVIG'
|
||||
'UmVhc29uEjQKCkVudGl0eVR5cGUYBCABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlUgpFbnRpdH'
|
||||
'lUeXBlOiSiuxgHQ29tbWFuZKi7GAGyuxgRUHJvcGFnYXRlTW92ZW1lbnQ=');
|
||||
|
||||
@$core.Deprecated('Use claimPropagateMovementDescriptor instead')
|
||||
const ClaimPropagateMovement$json = {
|
||||
'1': 'ClaimPropagateMovement',
|
||||
'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.ClaimPropagateMovementPayload', '10': 'Payload'},
|
||||
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.ClaimPropagateMovementPayload', '10': 'EventPayload'},
|
||||
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.ClaimPropagateMovementPayload', '10': 'PreviousPayload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimPropagateMovement`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimPropagateMovementDescriptor = $convert.base64Decode(
|
||||
'ChZDbGFpbVByb3BhZ2F0ZU1vdmVtZW50EioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW5kSG'
|
||||
'VhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjwKB1BheWxvYWQY'
|
||||
'AyABKAsyIi5hcGkuQ2xhaW1Qcm9wYWdhdGVNb3ZlbWVudFBheWxvYWRSB1BheWxvYWQSRgoMRX'
|
||||
'ZlbnRQYXlsb2FkGAQgASgLMiIuYXBpLkNsYWltUHJvcGFnYXRlTW92ZW1lbnRQYXlsb2FkUgxF'
|
||||
'dmVudFBheWxvYWQSTAoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiIuYXBpLkNsYWltUHJvcGFnYX'
|
||||
'RlTW92ZW1lbnRQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6SKK7GAdDb21tYW5ksrsYEVByb3Bh'
|
||||
'Z2F0ZU1vdmVtZW50wrsYGXRyYWRlLm1vdmVtZW50LkNsYWltQWRkZWTquxgHQ3JlYXRlZA==');
|
||||
|
||||
3874
lib/claimInput.pb.dart
Normal file
3874
lib/claimInput.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
11
lib/claimInput.pbenum.dart
Normal file
11
lib/claimInput.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
299
lib/claimInput.pbgrpc.dart
Normal file
299
lib/claimInput.pbgrpc.dart
Normal file
@@ -0,0 +1,299 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'claimInput.pb.dart' as $44;
|
||||
|
||||
export 'claimInput.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimInputAPI')
|
||||
class ClaimInputAPIClient extends $grpc.Client {
|
||||
static final _$created = $grpc.ClientMethod<$44.ClaimCreatedRequest, $44.ClaimCreatedResponse>(
|
||||
'/api.ClaimInputAPI/Created',
|
||||
($44.ClaimCreatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimCreatedResponse.fromBuffer(value));
|
||||
static final _$completed = $grpc.ClientMethod<$44.ClaimCompletedRequest, $44.ClaimCompletedResponse>(
|
||||
'/api.ClaimInputAPI/Completed',
|
||||
($44.ClaimCompletedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimCompletedResponse.fromBuffer(value));
|
||||
static final _$criticalityUpdated = $grpc.ClientMethod<$44.ClaimCriticalityUpdatedRequest, $44.ClaimCriticalityUpdatedResponse>(
|
||||
'/api.ClaimInputAPI/CriticalityUpdated',
|
||||
($44.ClaimCriticalityUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimCriticalityUpdatedResponse.fromBuffer(value));
|
||||
static final _$statusUpdated = $grpc.ClientMethod<$44.ClaimStatusUpdatedRequest, $44.ClaimStatusUpdatedResponse>(
|
||||
'/api.ClaimInputAPI/StatusUpdated',
|
||||
($44.ClaimStatusUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimStatusUpdatedResponse.fromBuffer(value));
|
||||
static final _$assigneesAdded = $grpc.ClientMethod<$44.ClaimAssigneesAddedRequest, $44.ClaimAssigneesAddedResponse>(
|
||||
'/api.ClaimInputAPI/AssigneesAdded',
|
||||
($44.ClaimAssigneesAddedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimAssigneesAddedResponse.fromBuffer(value));
|
||||
static final _$assigneesRemoved = $grpc.ClientMethod<$44.ClaimAssigneesRemovedRequest, $44.ClaimAssigneesRemovedResponse>(
|
||||
'/api.ClaimInputAPI/AssigneesRemoved',
|
||||
($44.ClaimAssigneesRemovedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimAssigneesRemovedResponse.fromBuffer(value));
|
||||
static final _$amountUpdated = $grpc.ClientMethod<$44.ClaimAmountUpdatedRequest, $44.ClaimAmountUpdatedResponse>(
|
||||
'/api.ClaimInputAPI/AmountUpdated',
|
||||
($44.ClaimAmountUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimAmountUpdatedResponse.fromBuffer(value));
|
||||
static final _$attachmentAdded = $grpc.ClientMethod<$44.ClaimAttachmentAddedRequest, $44.ClaimAttachmentAddedResponse>(
|
||||
'/api.ClaimInputAPI/AttachmentAdded',
|
||||
($44.ClaimAttachmentAddedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimAttachmentAddedResponse.fromBuffer(value));
|
||||
static final _$attachmentRemoved = $grpc.ClientMethod<$44.ClaimAttachmentRemovedRequest, $44.ClaimAttachmentRemovedResponse>(
|
||||
'/api.ClaimInputAPI/AttachmentRemoved',
|
||||
($44.ClaimAttachmentRemovedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimAttachmentRemovedResponse.fromBuffer(value));
|
||||
static final _$metaDataUpdated = $grpc.ClientMethod<$44.ClaimMetaDataUpdatedRequest, $44.ClaimMetaDataUpdatedResponse>(
|
||||
'/api.ClaimInputAPI/MetaDataUpdated',
|
||||
($44.ClaimMetaDataUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimMetaDataUpdatedResponse.fromBuffer(value));
|
||||
static final _$titleUpdated = $grpc.ClientMethod<$44.ClaimTitleUpdatedRequest, $44.ClaimTitleUpdatedResponse>(
|
||||
'/api.ClaimInputAPI/TitleUpdated',
|
||||
($44.ClaimTitleUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimTitleUpdatedResponse.fromBuffer(value));
|
||||
static final _$messageSent = $grpc.ClientMethod<$44.ClaimMessageSentRequest, $44.ClaimMessageSentResponse>(
|
||||
'/api.ClaimInputAPI/MessageSent',
|
||||
($44.ClaimMessageSentRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimMessageSentResponse.fromBuffer(value));
|
||||
static final _$deleted = $grpc.ClientMethod<$44.ClaimDeletedRequest, $44.ClaimDeletedResponse>(
|
||||
'/api.ClaimInputAPI/Deleted',
|
||||
($44.ClaimDeletedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $44.ClaimDeletedResponse.fromBuffer(value));
|
||||
|
||||
ClaimInputAPIClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimCreatedResponse> created($44.ClaimCreatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$created, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimCompletedResponse> completed($44.ClaimCompletedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$completed, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimCriticalityUpdatedResponse> criticalityUpdated($44.ClaimCriticalityUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$criticalityUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimStatusUpdatedResponse> statusUpdated($44.ClaimStatusUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$statusUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimAssigneesAddedResponse> assigneesAdded($44.ClaimAssigneesAddedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$assigneesAdded, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimAssigneesRemovedResponse> assigneesRemoved($44.ClaimAssigneesRemovedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$assigneesRemoved, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimAmountUpdatedResponse> amountUpdated($44.ClaimAmountUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$amountUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimAttachmentAddedResponse> attachmentAdded($44.ClaimAttachmentAddedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$attachmentAdded, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimAttachmentRemovedResponse> attachmentRemoved($44.ClaimAttachmentRemovedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$attachmentRemoved, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimMetaDataUpdatedResponse> metaDataUpdated($44.ClaimMetaDataUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$metaDataUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimTitleUpdatedResponse> titleUpdated($44.ClaimTitleUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$titleUpdated, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimMessageSentResponse> messageSent($44.ClaimMessageSentRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$messageSent, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$44.ClaimDeletedResponse> deleted($44.ClaimDeletedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleted, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimInputAPI')
|
||||
abstract class ClaimInputAPIServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ClaimInputAPI';
|
||||
|
||||
ClaimInputAPIServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimCreatedRequest, $44.ClaimCreatedResponse>(
|
||||
'Created',
|
||||
created_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimCreatedRequest.fromBuffer(value),
|
||||
($44.ClaimCreatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimCompletedRequest, $44.ClaimCompletedResponse>(
|
||||
'Completed',
|
||||
completed_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimCompletedRequest.fromBuffer(value),
|
||||
($44.ClaimCompletedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimCriticalityUpdatedRequest, $44.ClaimCriticalityUpdatedResponse>(
|
||||
'CriticalityUpdated',
|
||||
criticalityUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimCriticalityUpdatedRequest.fromBuffer(value),
|
||||
($44.ClaimCriticalityUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimStatusUpdatedRequest, $44.ClaimStatusUpdatedResponse>(
|
||||
'StatusUpdated',
|
||||
statusUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimStatusUpdatedRequest.fromBuffer(value),
|
||||
($44.ClaimStatusUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimAssigneesAddedRequest, $44.ClaimAssigneesAddedResponse>(
|
||||
'AssigneesAdded',
|
||||
assigneesAdded_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimAssigneesAddedRequest.fromBuffer(value),
|
||||
($44.ClaimAssigneesAddedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimAssigneesRemovedRequest, $44.ClaimAssigneesRemovedResponse>(
|
||||
'AssigneesRemoved',
|
||||
assigneesRemoved_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimAssigneesRemovedRequest.fromBuffer(value),
|
||||
($44.ClaimAssigneesRemovedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimAmountUpdatedRequest, $44.ClaimAmountUpdatedResponse>(
|
||||
'AmountUpdated',
|
||||
amountUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimAmountUpdatedRequest.fromBuffer(value),
|
||||
($44.ClaimAmountUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimAttachmentAddedRequest, $44.ClaimAttachmentAddedResponse>(
|
||||
'AttachmentAdded',
|
||||
attachmentAdded_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimAttachmentAddedRequest.fromBuffer(value),
|
||||
($44.ClaimAttachmentAddedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimAttachmentRemovedRequest, $44.ClaimAttachmentRemovedResponse>(
|
||||
'AttachmentRemoved',
|
||||
attachmentRemoved_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimAttachmentRemovedRequest.fromBuffer(value),
|
||||
($44.ClaimAttachmentRemovedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimMetaDataUpdatedRequest, $44.ClaimMetaDataUpdatedResponse>(
|
||||
'MetaDataUpdated',
|
||||
metaDataUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimMetaDataUpdatedRequest.fromBuffer(value),
|
||||
($44.ClaimMetaDataUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimTitleUpdatedRequest, $44.ClaimTitleUpdatedResponse>(
|
||||
'TitleUpdated',
|
||||
titleUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimTitleUpdatedRequest.fromBuffer(value),
|
||||
($44.ClaimTitleUpdatedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimMessageSentRequest, $44.ClaimMessageSentResponse>(
|
||||
'MessageSent',
|
||||
messageSent_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimMessageSentRequest.fromBuffer(value),
|
||||
($44.ClaimMessageSentResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$44.ClaimDeletedRequest, $44.ClaimDeletedResponse>(
|
||||
'Deleted',
|
||||
deleted_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $44.ClaimDeletedRequest.fromBuffer(value),
|
||||
($44.ClaimDeletedResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimCreatedResponse> created_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimCreatedRequest> request) async {
|
||||
return created(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimCompletedResponse> completed_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimCompletedRequest> request) async {
|
||||
return completed(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimCriticalityUpdatedResponse> criticalityUpdated_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimCriticalityUpdatedRequest> request) async {
|
||||
return criticalityUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimStatusUpdatedResponse> statusUpdated_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimStatusUpdatedRequest> request) async {
|
||||
return statusUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimAssigneesAddedResponse> assigneesAdded_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimAssigneesAddedRequest> request) async {
|
||||
return assigneesAdded(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimAssigneesRemovedResponse> assigneesRemoved_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimAssigneesRemovedRequest> request) async {
|
||||
return assigneesRemoved(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimAmountUpdatedResponse> amountUpdated_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimAmountUpdatedRequest> request) async {
|
||||
return amountUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimAttachmentAddedResponse> attachmentAdded_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimAttachmentAddedRequest> request) async {
|
||||
return attachmentAdded(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimAttachmentRemovedResponse> attachmentRemoved_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimAttachmentRemovedRequest> request) async {
|
||||
return attachmentRemoved(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimMetaDataUpdatedResponse> metaDataUpdated_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimMetaDataUpdatedRequest> request) async {
|
||||
return metaDataUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimTitleUpdatedResponse> titleUpdated_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimTitleUpdatedRequest> request) async {
|
||||
return titleUpdated(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimMessageSentResponse> messageSent_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimMessageSentRequest> request) async {
|
||||
return messageSent(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimDeletedResponse> deleted_Pre($grpc.ServiceCall call, $async.Future<$44.ClaimDeletedRequest> request) async {
|
||||
return deleted(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$44.ClaimCreatedResponse> created($grpc.ServiceCall call, $44.ClaimCreatedRequest request);
|
||||
$async.Future<$44.ClaimCompletedResponse> completed($grpc.ServiceCall call, $44.ClaimCompletedRequest request);
|
||||
$async.Future<$44.ClaimCriticalityUpdatedResponse> criticalityUpdated($grpc.ServiceCall call, $44.ClaimCriticalityUpdatedRequest request);
|
||||
$async.Future<$44.ClaimStatusUpdatedResponse> statusUpdated($grpc.ServiceCall call, $44.ClaimStatusUpdatedRequest request);
|
||||
$async.Future<$44.ClaimAssigneesAddedResponse> assigneesAdded($grpc.ServiceCall call, $44.ClaimAssigneesAddedRequest request);
|
||||
$async.Future<$44.ClaimAssigneesRemovedResponse> assigneesRemoved($grpc.ServiceCall call, $44.ClaimAssigneesRemovedRequest request);
|
||||
$async.Future<$44.ClaimAmountUpdatedResponse> amountUpdated($grpc.ServiceCall call, $44.ClaimAmountUpdatedRequest request);
|
||||
$async.Future<$44.ClaimAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $44.ClaimAttachmentAddedRequest request);
|
||||
$async.Future<$44.ClaimAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $44.ClaimAttachmentRemovedRequest request);
|
||||
$async.Future<$44.ClaimMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $44.ClaimMetaDataUpdatedRequest request);
|
||||
$async.Future<$44.ClaimTitleUpdatedResponse> titleUpdated($grpc.ServiceCall call, $44.ClaimTitleUpdatedRequest request);
|
||||
$async.Future<$44.ClaimMessageSentResponse> messageSent($grpc.ServiceCall call, $44.ClaimMessageSentRequest request);
|
||||
$async.Future<$44.ClaimDeletedResponse> deleted($grpc.ServiceCall call, $44.ClaimDeletedRequest request);
|
||||
}
|
||||
938
lib/claimInput.pbjson.dart
Normal file
938
lib/claimInput.pbjson.dart
Normal file
@@ -0,0 +1,938 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimInput.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use claimCreatedPayloadDescriptor instead')
|
||||
const ClaimCreatedPayload$json = {
|
||||
'1': 'ClaimCreatedPayload',
|
||||
'2': [
|
||||
{'1': 'ClaimTypeID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ClaimTypeID'},
|
||||
{'1': 'EntityID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'EntityID'},
|
||||
{'1': 'Assignees', '3': 5, '4': 3, '5': 9, '8': {}, '10': 'Assignees'},
|
||||
{'1': 'Amount', '3': 6, '4': 1, '5': 11, '6': '.api.Amount', '8': {}, '10': 'Amount'},
|
||||
{'1': 'MetaData', '3': 7, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||
{'1': 'Title', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'Title'},
|
||||
{'1': 'Criticality', '3': 9, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'Criticality'},
|
||||
{'1': 'DisplayID', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'DisplayID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCreatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCreatedPayloadDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'ClaimCreatedEvent',
|
||||
'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.ClaimCreatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCreatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCreatedEventDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbUNyZWF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJCCP'
|
||||
'pCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoBAhABUgJJ'
|
||||
'RBI8CgdQYXlsb2FkGAMgASgLMhguYXBpLkNsYWltQ3JlYXRlZFBheWxvYWRCCPpCBYoBAhABUg'
|
||||
'dQYXlsb2FkOjGSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVFdmVudLq7GAdDcmVh'
|
||||
'dGVk');
|
||||
|
||||
@$core.Deprecated('Use claimCreatedRequestDescriptor instead')
|
||||
const ClaimCreatedRequest$json = {
|
||||
'1': 'ClaimCreatedRequest',
|
||||
'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.ClaimCreatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCreatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCreatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbUNyZWF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
|
||||
'+kIFigECEAFSAklEEjwKB1BheWxvYWQYAyABKAsyGC5hcGkuQ2xhaW1DcmVhdGVkUGF5bG9hZE'
|
||||
'II+kIFigECEAFSB1BheWxvYWQ6M5JBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsYB1Jl'
|
||||
'cXVlc3S6uxgHQ3JlYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimCreatedResponseDescriptor instead')
|
||||
const ClaimCreatedResponse$json = {
|
||||
'1': 'ClaimCreatedResponse',
|
||||
'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 `ClaimCreatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCreatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChRDbGFpbUNyZWF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG9uc2VIZW'
|
||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
||||
'Zbq7GAdDcmVhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimCompletedPayloadDescriptor instead')
|
||||
const ClaimCompletedPayload$json = {
|
||||
'1': 'ClaimCompletedPayload',
|
||||
'2': [
|
||||
{'1': 'EndComment', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'EndComment'},
|
||||
{'1': 'Closure', '3': 2, '4': 1, '5': 11, '6': '.api.ClaimClosure', '8': {}, '10': 'Closure'},
|
||||
{'1': 'StatusCode', '3': 3, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'StatusCode'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCompletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCompletedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChVDbGFpbUNvbXBsZXRlZFBheWxvYWQSRAoKRW5kQ29tbWVudBgBIAEoCUIkkkEaMhhFbmQgY2'
|
||||
'9tbWVudCBvZiB0aGUgY2xhaW36QgRyAhABUgpFbmRDb21tZW50EmUKB0Nsb3N1cmUYAiABKAsy'
|
||||
'ES5hcGkuQ2xhaW1DbG9zdXJlQjiSQS0yK0Nsb3N1cmUgcmVzcG9uc2libGUgYW5kIGNhdXNlcy'
|
||||
'BvZiB0aGUgY2xhaW36QgWKAQIQAVIHQ2xvc3VyZRJvCgpTdGF0dXNDb2RlGAMgASgOMhAuYXBp'
|
||||
'LkNsYWltU3RhdHVzQj2SQRUyE1N0YXR1cyBvZiB0aGUgY2xhaW36QgWCAQIQAcrBGBlTdGF0dX'
|
||||
'MuQ3VycmVudC5TdGF0dXNDb2RlUgpTdGF0dXNDb2RlOlKSQTUKMzINRXZlbnQgUGF5bG9hZNIB'
|
||||
'CkVuZENvbW1lbnTSAQdDbG9zdXJl0gEKU3RhdHVzQ29kZaK7GAVFdmVudKi7GAG6uxgJQ29tcG'
|
||||
'xldGVk');
|
||||
|
||||
@$core.Deprecated('Use claimCompletedEventDescriptor instead')
|
||||
const ClaimCompletedEvent$json = {
|
||||
'1': 'ClaimCompletedEvent',
|
||||
'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.ClaimCompletedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCompletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCompletedEventDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbUNvbXBsZXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYWRlck'
|
||||
'II+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIFigECEAFS'
|
||||
'AklEEj4KB1BheWxvYWQYAyABKAsyGi5hcGkuQ2xhaW1Db21wbGV0ZWRQYXlsb2FkQgj6QgWKAQ'
|
||||
'IQAVIHUGF5bG9hZDozkkEaChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgFRXZlbnS6uxgJ'
|
||||
'Q29tcGxldGVk');
|
||||
|
||||
@$core.Deprecated('Use claimCompletedRequestDescriptor instead')
|
||||
const ClaimCompletedRequest$json = {
|
||||
'1': 'ClaimCompletedRequest',
|
||||
'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.ClaimCompletedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCompletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCompletedRequestDescriptor = $convert.base64Decode(
|
||||
'ChVDbGFpbUNvbXBsZXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
||||
'9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlE'
|
||||
'Qgj6QgWKAQIQAVICSUQSPgoHUGF5bG9hZBgDIAEoCzIaLmFwaS5DbGFpbUNvbXBsZXRlZFBheW'
|
||||
'xvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjWSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7'
|
||||
'GAdSZXF1ZXN0ursYCUNvbXBsZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimCompletedResponseDescriptor instead')
|
||||
const ClaimCompletedResponse$json = {
|
||||
'1': 'ClaimCompletedResponse',
|
||||
'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 `ClaimCompletedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCompletedResponseDescriptor = $convert.base64Decode(
|
||||
'ChZDbGFpbUNvbXBsZXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZXNwb25zZU'
|
||||
'hlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoZorsYCFJlc3Bv'
|
||||
'bnNlursYCUNvbXBsZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimCriticalityUpdatedPayloadDescriptor instead')
|
||||
const ClaimCriticalityUpdatedPayload$json = {
|
||||
'1': 'ClaimCriticalityUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'Criticality', '3': 3, '4': 1, '5': 14, '6': '.api.ClaimCriticality', '8': {}, '10': 'Criticality'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCriticalityUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCriticalityUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFBheWxvYWQSXgoLQ3JpdGljYWxpdHkYAyABKA4yFS'
|
||||
'5hcGkuQ2xhaW1Dcml0aWNhbGl0eUIlkkEaMhhDcml0aWNhbGl0eSBvZiB0aGUgY2xhaW36QgWC'
|
||||
'AQIQAVILQ3JpdGljYWxpdHk6RZJBHwodMg1FdmVudCBQYXlsb2Fk0gELQ3JpdGljYWxpdHmiux'
|
||||
'gFRXZlbnSouxgBursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimCriticalityUpdatedEventDescriptor instead')
|
||||
const ClaimCriticalityUpdatedEvent$json = {
|
||||
'1': 'ClaimCriticalityUpdatedEvent',
|
||||
'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.ClaimCriticalityUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCriticalityUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCriticalityUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChxDbGFpbUNyaXRpY2FsaXR5VXBkYXRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5Fdm'
|
||||
'VudEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII'
|
||||
'+kIFigECEAFSAklEEkcKB1BheWxvYWQYAyABKAsyIy5hcGkuQ2xhaW1Dcml0aWNhbGl0eVVwZG'
|
||||
'F0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo8kkEaChjSAQZIZWFkZXLSAQJJRNIBB1Bh'
|
||||
'eWxvYWSiuxgFRXZlbnS6uxgSQ3JpdGljYWxpdHlVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimCriticalityUpdatedRequestDescriptor instead')
|
||||
const ClaimCriticalityUpdatedRequest$json = {
|
||||
'1': 'ClaimCriticalityUpdatedRequest',
|
||||
'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.ClaimCriticalityUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimCriticalityUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCriticalityUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'Ch5DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBp'
|
||||
'LkVudGl0eUlEQgj6QgWKAQIQAVICSUQSRwoHUGF5bG9hZBgDIAEoCzIjLmFwaS5DbGFpbUNyaX'
|
||||
'RpY2FsaXR5VXBkYXRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOj6SQRoKGNIBBkhlYWRl'
|
||||
'ctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimCriticalityUpdatedResponseDescriptor instead')
|
||||
const ClaimCriticalityUpdatedResponse$json = {
|
||||
'1': 'ClaimCriticalityUpdatedResponse',
|
||||
'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 `ClaimCriticalityUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimCriticalityUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch9DbGFpbUNyaXRpY2FsaXR5VXBkYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS'
|
||||
'5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoi'
|
||||
'orsYCFJlc3BvbnNlursYEkNyaXRpY2FsaXR5VXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimStatusUpdatedPayloadDescriptor instead')
|
||||
const ClaimStatusUpdatedPayload$json = {
|
||||
'1': 'ClaimStatusUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'StatusCode', '3': 4, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'StatusCode'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimStatusUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRQYXlsb2FkEm8KClN0YXR1c0NvZGUYBCABKA4yEC5hcGkuQ2'
|
||||
'xhaW1TdGF0dXNCPZJBFTITU3RhdHVzIG9mIHRoZSBjbGFpbfpCBYIBAhABysEYGVN0YXR1cy5D'
|
||||
'dXJyZW50LlN0YXR1c0NvZGVSClN0YXR1c0NvZGU6P5JBHgocMg1FdmVudCBQYXlsb2Fk0gEKU3'
|
||||
'RhdHVzQ29kZaK7GAVFdmVudKi7GAG6uxgNU3RhdHVzVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimStatusUpdatedEventDescriptor instead')
|
||||
const ClaimStatusUpdatedEvent$json = {
|
||||
'1': 'ClaimStatusUpdatedEvent',
|
||||
'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.ClaimStatusUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimStatusUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChdDbGFpbVN0YXR1c1VwZGF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
|
||||
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoB'
|
||||
'AhABUgJJRBJCCgdQYXlsb2FkGAMgASgLMh4uYXBpLkNsYWltU3RhdHVzVXBkYXRlZFBheWxvYW'
|
||||
'RCCPpCBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVF'
|
||||
'dmVudLq7GA1TdGF0dXNVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimStatusUpdatedRequestDescriptor instead')
|
||||
const ClaimStatusUpdatedRequest$json = {
|
||||
'1': 'ClaimStatusUpdatedRequest',
|
||||
'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.ClaimStatusUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimStatusUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbVN0YXR1c1VwZGF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
||||
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRp'
|
||||
'dHlJREII+kIFigECEAFSAklEEkIKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1TdGF0dXNVcG'
|
||||
'RhdGVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTSAQdQ'
|
||||
'YXlsb2FkorsYB1JlcXVlc3S6uxgNU3RhdHVzVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimStatusUpdatedResponseDescriptor instead')
|
||||
const ClaimStatusUpdatedResponse$json = {
|
||||
'1': 'ClaimStatusUpdatedResponse',
|
||||
'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 `ClaimStatusUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbVN0YXR1c1VwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG'
|
||||
'9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6HaK7GAhS'
|
||||
'ZXNwb25zZbq7GA1TdGF0dXNVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimAmountUpdatedPayloadDescriptor instead')
|
||||
const ClaimAmountUpdatedPayload$json = {
|
||||
'1': 'ClaimAmountUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'Amount', '3': 1, '4': 1, '5': 11, '6': '.api.Amount', '8': {}, '10': 'Amount'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAmountUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAmountUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbUFtb3VudFVwZGF0ZWRQYXlsb2FkEkUKBkFtb3VudBgBIAEoCzILLmFwaS5BbW91bn'
|
||||
'RCIJJBFTITQW1vdW50IG9mIHRoZSBjbGFpbfpCBYoBAhABUgZBbW91bnQ6O5JBGgoYMg1FdmVu'
|
||||
'dCBQYXlsb2Fk0gEGQW1vdW50orsYBUV2ZW50qLsYAbq7GA1BbW91bnRVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimAmountUpdatedEventDescriptor instead')
|
||||
const ClaimAmountUpdatedEvent$json = {
|
||||
'1': 'ClaimAmountUpdatedEvent',
|
||||
'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.ClaimAmountUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAmountUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAmountUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChdDbGFpbUFtb3VudFVwZGF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZW'
|
||||
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpCBYoB'
|
||||
'AhABUgJJRBJCCgdQYXlsb2FkGAMgASgLMh4uYXBpLkNsYWltQW1vdW50VXBkYXRlZFBheWxvYW'
|
||||
'RCCPpCBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAVF'
|
||||
'dmVudLq7GA1BbW91bnRVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimAmountUpdatedRequestDescriptor instead')
|
||||
const ClaimAmountUpdatedRequest$json = {
|
||||
'1': 'ClaimAmountUpdatedRequest',
|
||||
'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.ClaimAmountUpdatedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAmountUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAmountUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbUFtb3VudFVwZGF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
||||
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRp'
|
||||
'dHlJREII+kIFigECEAFSAklEEkIKB1BheWxvYWQYAyABKAsyHi5hcGkuQ2xhaW1BbW91bnRVcG'
|
||||
'RhdGVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVhZGVy0gECSUTSAQdQ'
|
||||
'YXlsb2FkorsYB1JlcXVlc3S6uxgNQW1vdW50VXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAmountUpdatedResponseDescriptor instead')
|
||||
const ClaimAmountUpdatedResponse$json = {
|
||||
'1': 'ClaimAmountUpdatedResponse',
|
||||
'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 `ClaimAmountUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAmountUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbUFtb3VudFVwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG'
|
||||
'9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6HaK7GAhS'
|
||||
'ZXNwb25zZbq7GA1BbW91bnRVcGRhdGVk');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesAddedPayloadDescriptor instead')
|
||||
const ClaimAssigneesAddedPayload$json = {
|
||||
'1': 'ClaimAssigneesAddedPayload',
|
||||
'2': [
|
||||
{'1': 'Assignees', '3': 7, '4': 3, '5': 9, '8': {}, '10': 'Assignees'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesAddedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUGF5bG9hZBKfAQoJQXNzaWduZWVzGAcgAygJQoABkkExMi'
|
||||
'9OZXcgY29udGFjdHMgYXNzaWduZWQgb24gdGhlIGNsYWltcyAodXNlciB1dWlkKfpCSZIBRggB'
|
||||
'IkJyQDI+XlswLTlhLWZdezh9LVswLTlhLWZdezR9LVswLTlhLWZdezR9LVswLTlhLWZdezR9LV'
|
||||
'swLTlhLWZdezEyfSRSCUFzc2lnbmVlczo/kkEdChsyDUV2ZW50IFBheWxvYWTSAQlBc3NpZ25l'
|
||||
'ZXOiuxgFRXZlbnSouxgBursYDkFzc2lnbmVlc0FkZGVk');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesAddedEventDescriptor instead')
|
||||
const ClaimAssigneesAddedEvent$json = {
|
||||
'1': 'ClaimAssigneesAddedEvent',
|
||||
'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.ClaimAssigneesAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesAddedEventDescriptor = $convert.base64Decode(
|
||||
'ChhDbGFpbUFzc2lnbmVlc0FkZGVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW50SG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6QgWK'
|
||||
'AQIQAVICSUQSQwoHUGF5bG9hZBgDIAEoCzIfLmFwaS5DbGFpbUFzc2lnbmVlc0FkZGVkUGF5bG'
|
||||
'9hZEII+kIFigECEAFSB1BheWxvYWQ6SJJBGgoY0gEGSGVhZGVy0gECSUTSAQdQYXlsb2FkorsY'
|
||||
'BUV2ZW50ursYDkFzc2lnbmVlc0FkZGVk2rsYDGFkZEFzc2lnbmVlcw==');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesAddedRequestDescriptor instead')
|
||||
const ClaimAssigneesAddedRequest$json = {
|
||||
'1': 'ClaimAssigneesAddedRequest',
|
||||
'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.ClaimAssigneesAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesAddedRequestDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbUFzc2lnbmVlc0FkZGVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50'
|
||||
'aXR5SURCCPpCBYoBAhABUgJJRBJDCgdQYXlsb2FkGAMgASgLMh8uYXBpLkNsYWltQXNzaWduZW'
|
||||
'VzQWRkZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo6kkEaChjSAQZIZWFkZXLSAQJJRNIB'
|
||||
'B1BheWxvYWSiuxgHUmVxdWVzdLq7GA5Bc3NpZ25lZXNBZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesAddedResponseDescriptor instead')
|
||||
const ClaimAssigneesAddedResponse$json = {
|
||||
'1': 'ClaimAssigneesAddedResponse',
|
||||
'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 `ClaimAssigneesAddedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesAddedResponseDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbUFzc2lnbmVlc0FkZGVkUmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMhMuYXBpLlJlc3'
|
||||
'BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEOh6iuxgI'
|
||||
'UmVzcG9uc2W6uxgOQXNzaWduZWVzQWRkZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesRemovedPayloadDescriptor instead')
|
||||
const ClaimAssigneesRemovedPayload$json = {
|
||||
'1': 'ClaimAssigneesRemovedPayload',
|
||||
'2': [
|
||||
{'1': 'RemovedAssignees', '3': 7, '4': 3, '5': 9, '8': {}, '10': 'RemovedAssignees'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesRemovedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesRemovedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRQYXlsb2FkErgBChBSZW1vdmVkQXNzaWduZWVzGAcgAy'
|
||||
'gJQosBkkE8MjpTb21lIGFzc2lnbmVkIGNvbnRhY3RzIHJlbW92ZWQgZnJvbSB0aGUgY2xhaW1z'
|
||||
'ICh1c2VyIHV1aWQp+kJJkgFGCAEiQnJAMj5eWzAtOWEtZl17OH0tWzAtOWEtZl17NH0tWzAtOW'
|
||||
'EtZl17NH0tWzAtOWEtZl17NH0tWzAtOWEtZl17MTJ9JFIQUmVtb3ZlZEFzc2lnbmVlczpIkkEk'
|
||||
'CiIyDUV2ZW50IFBheWxvYWTSARBSZW1vdmVkQXNzaWduZWVzorsYBUV2ZW50qLsYAbq7GBBBc3'
|
||||
'NpZ25lZXNSZW1vdmVk');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesRemovedEventDescriptor instead')
|
||||
const ClaimAssigneesRemovedEvent$json = {
|
||||
'1': 'ClaimAssigneesRemovedEvent',
|
||||
'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.ClaimAssigneesRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesRemovedEventDescriptor = $convert.base64Decode(
|
||||
'ChpDbGFpbUFzc2lnbmVlc1JlbW92ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbn'
|
||||
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURCCPpC'
|
||||
'BYoBAhABUgJJRBJFCgdQYXlsb2FkGAMgASgLMiEuYXBpLkNsYWltQXNzaWduZWVzUmVtb3ZlZF'
|
||||
'BheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOk2SQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9h'
|
||||
'ZKK7GAVFdmVudLq7GBBBc3NpZ25lZXNSZW1vdmVk2rsYD3JlbW92ZUFzc2lnbmVlcw==');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesRemovedRequestDescriptor instead')
|
||||
const ClaimAssigneesRemovedRequest$json = {
|
||||
'1': 'ClaimAssigneesRemovedRequest',
|
||||
'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.ClaimAssigneesRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAssigneesRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesRemovedRequestDescriptor = $convert.base64Decode(
|
||||
'ChxDbGFpbUFzc2lnbmVlc1JlbW92ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZX'
|
||||
'F1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5F'
|
||||
'bnRpdHlJREII+kIFigECEAFSAklEEkUKB1BheWxvYWQYAyABKAsyIS5hcGkuQ2xhaW1Bc3NpZ2'
|
||||
'5lZXNSZW1vdmVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6PJJBGgoY0gEGSGVhZGVy0gEC'
|
||||
'SUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgQQXNzaWduZWVzUmVtb3ZlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAssigneesRemovedResponseDescriptor instead')
|
||||
const ClaimAssigneesRemovedResponse$json = {
|
||||
'1': 'ClaimAssigneesRemovedResponse',
|
||||
'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 `ClaimAssigneesRemovedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAssigneesRemovedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch1DbGFpbUFzc2lnbmVlc1JlbW92ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUm'
|
||||
'VzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6IKK7'
|
||||
'GAhSZXNwb25zZbq7GBBBc3NpZ25lZXNSZW1vdmVk');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentAddedPayloadDescriptor instead')
|
||||
const ClaimAttachmentAddedPayload$json = {
|
||||
'1': 'ClaimAttachmentAddedPayload',
|
||||
'2': [
|
||||
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentAddedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentAddedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbUF0dGFjaG1lbnRBZGRlZFBheWxvYWQSYwoLQXR0YWNobWVudHMYASADKAsyFi5hcG'
|
||||
'kuQXR0YWNobWVudFN1bW1hcnlCKZJBJjIkTnVtYmVyIG9mIGF0dGFjaG1lbnRzIGFkZGVkIHBl'
|
||||
'ciB0eXBlUgtBdHRhY2htZW50czogorsYBUV2ZW50qLsYAbq7GA9BdHRhY2htZW50QWRkZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentAddedEventDescriptor instead')
|
||||
const ClaimAttachmentAddedEvent$json = {
|
||||
'1': 'ClaimAttachmentAddedEvent',
|
||||
'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.ClaimAttachmentAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentAddedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentAddedEventDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbUF0dGFjaG1lbnRBZGRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'igECEAFSAklEEkQKB1BheWxvYWQYAyABKAsyIC5hcGkuQ2xhaW1BdHRhY2htZW50QWRkZWRQYX'
|
||||
'lsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDotorsYBUV2ZW50ursYD0F0dGFjaG1lbnRBZGRlZNq7'
|
||||
'GA1hZGRBdHRhY2htZW50');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentAddedRequestDescriptor instead')
|
||||
const ClaimAttachmentAddedRequest$json = {
|
||||
'1': 'ClaimAttachmentAddedRequest',
|
||||
'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.ClaimAttachmentAddedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentAddedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentAddedRequestDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbUF0dGFjaG1lbnRBZGRlZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVu'
|
||||
'dGl0eUlEQgj6QgWKAQIQAVICSUQSRAoHUGF5bG9hZBgDIAEoCzIgLmFwaS5DbGFpbUF0dGFjaG'
|
||||
'1lbnRBZGRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE'
|
||||
'0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0F0dGFjaG1lbnRBZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentAddedResponseDescriptor instead')
|
||||
const ClaimAttachmentAddedResponse$json = {
|
||||
'1': 'ClaimAttachmentAddedResponse',
|
||||
'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 `ClaimAttachmentAddedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentAddedResponseDescriptor = $convert.base64Decode(
|
||||
'ChxDbGFpbUF0dGFjaG1lbnRBZGRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZX'
|
||||
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
|
||||
'CFJlc3BvbnNlursYD0F0dGFjaG1lbnRBZGRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentRemovedPayloadDescriptor instead')
|
||||
const ClaimAttachmentRemovedPayload$json = {
|
||||
'1': 'ClaimAttachmentRemovedPayload',
|
||||
'2': [
|
||||
{'1': 'Attachments', '3': 1, '4': 3, '5': 11, '6': '.api.AttachmentSummary', '8': {}, '10': 'Attachments'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentRemovedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentRemovedPayloadDescriptor = $convert.base64Decode(
|
||||
'Ch1DbGFpbUF0dGFjaG1lbnRSZW1vdmVkUGF5bG9hZBJlCgtBdHRhY2htZW50cxgBIAMoCzIWLm'
|
||||
'FwaS5BdHRhY2htZW50U3VtbWFyeUIrkkEoMiZOdW1iZXIgb2YgYXR0YWNobWVudHMgcmVtb3Zl'
|
||||
'ZCBwZXIgdHlwZVILQXR0YWNobWVudHM6IqK7GAVFdmVudKi7GAG6uxgRQXR0YWNobWVudFJlbW'
|
||||
'92ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentRemovedEventDescriptor instead')
|
||||
const ClaimAttachmentRemovedEvent$json = {
|
||||
'1': 'ClaimAttachmentRemovedEvent',
|
||||
'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.ClaimAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentRemovedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentRemovedEventDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbUF0dGFjaG1lbnRSZW1vdmVkRXZlbnQSMgoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW'
|
||||
'50SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQgj6'
|
||||
'QgWKAQIQAVICSUQSRgoHUGF5bG9hZBgDIAEoCzIiLmFwaS5DbGFpbUF0dGFjaG1lbnRSZW1vdm'
|
||||
'VkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6MqK7GAVFdmVudLq7GBFBdHRhY2htZW50UmVt'
|
||||
'b3ZlZNq7GBByZW1vdmVBdHRhY2htZW50');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentRemovedRequestDescriptor instead')
|
||||
const ClaimAttachmentRemovedRequest$json = {
|
||||
'1': 'ClaimAttachmentRemovedRequest',
|
||||
'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.ClaimAttachmentRemovedPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimAttachmentRemovedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentRemovedRequestDescriptor = $convert.base64Decode(
|
||||
'Ch1DbGFpbUF0dGFjaG1lbnRSZW1vdmVkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGku'
|
||||
'RW50aXR5SURCCPpCBYoBAhABUgJJRBJGCgdQYXlsb2FkGAMgASgLMiIuYXBpLkNsYWltQXR0YW'
|
||||
'NobWVudFJlbW92ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo9kkEaChjSAQZIZWFkZXLS'
|
||||
'AQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBFBdHRhY2htZW50UmVtb3ZlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimAttachmentRemovedResponseDescriptor instead')
|
||||
const ClaimAttachmentRemovedResponse$json = {
|
||||
'1': 'ClaimAttachmentRemovedResponse',
|
||||
'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 `ClaimAttachmentRemovedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimAttachmentRemovedResponseDescriptor = $convert.base64Decode(
|
||||
'Ch5DbGFpbUF0dGFjaG1lbnRSZW1vdmVkUmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMhMuYXBpLl'
|
||||
'Jlc3BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEOiGi'
|
||||
'uxgIUmVzcG9uc2W6uxgRQXR0YWNobWVudFJlbW92ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimMetaDataUpdatedPayloadDescriptor instead')
|
||||
const ClaimMetaDataUpdatedPayload$json = {
|
||||
'1': 'ClaimMetaDataUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'MetaData', '3': 1, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMetaDataUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMetaDataUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbU1ldGFEYXRhVXBkYXRlZFBheWxvYWQSygEKCE1ldGFEYXRhGAEgAygLMhQuYXBpLk'
|
||||
'1ldGFkYXRhRWxlbWVudEKXAZJBiAEyhQFNZXRhZGF0YSBhcmUgY2hhcmFjdGVyaXN0aWNzIHNw'
|
||||
'ZWNpZmljIHRvIHRoZSBwcm9qZWN0LiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm9ybS'
|
||||
'Aoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANL'
|
||||
'ZXlSCE1ldGFEYXRhOiCiuxgFRXZlbnSouxgBursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimMetaDataUpdatedEventDescriptor instead')
|
||||
const ClaimMetaDataUpdatedEvent$json = {
|
||||
'1': 'ClaimMetaDataUpdatedEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '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.ClaimMetaDataUpdatedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMetaDataUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMetaDataUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbU1ldGFEYXRhVXBkYXRlZEV2ZW50EigKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudE'
|
||||
'hlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI6CgdQYXlsb2Fk'
|
||||
'GAMgASgLMiAuYXBpLkNsYWltTWV0YURhdGFVcGRhdGVkUGF5bG9hZFIHUGF5bG9hZDocorsYBU'
|
||||
'V2ZW50ursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimMetaDataUpdatedRequestDescriptor instead')
|
||||
const ClaimMetaDataUpdatedRequest$json = {
|
||||
'1': 'ClaimMetaDataUpdatedRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '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.ClaimMetaDataUpdatedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMetaDataUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMetaDataUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChtDbGFpbU1ldGFEYXRhVXBkYXRlZFJlcXVlc3QSMQoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||
'Vlc3RQcm9qZWN0SGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklE'
|
||||
'EjoKB1BheWxvYWQYAyABKAsyIC5hcGkuQ2xhaW1NZXRhRGF0YVVwZGF0ZWRQYXlsb2FkUgdQYX'
|
||||
'lsb2FkOjuSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD01ldGFE'
|
||||
'YXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimMetaDataUpdatedResponseDescriptor instead')
|
||||
const ClaimMetaDataUpdatedResponse$json = {
|
||||
'1': 'ClaimMetaDataUpdatedResponse',
|
||||
'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 `ClaimMetaDataUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMetaDataUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChxDbGFpbU1ldGFEYXRhVXBkYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZX'
|
||||
'Nwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoforsY'
|
||||
'CFJlc3BvbnNlursYD01ldGFEYXRhVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimTitleUpdatedPayloadDescriptor instead')
|
||||
const ClaimTitleUpdatedPayload$json = {
|
||||
'1': 'ClaimTitleUpdatedPayload',
|
||||
'2': [
|
||||
{'1': 'Title', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Title'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimTitleUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimTitleUpdatedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChhDbGFpbVRpdGxlVXBkYXRlZFBheWxvYWQSLQoFVGl0bGUYASABKAlCF5JBFDISVGl0bGUgb2'
|
||||
'YgdGhlIGNsYWltUgVUaXRsZTodorsYBUV2ZW50qLsYAbq7GAxUaXRsZVVwZGF0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimTitleUpdatedEventDescriptor instead')
|
||||
const ClaimTitleUpdatedEvent$json = {
|
||||
'1': 'ClaimTitleUpdatedEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '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.ClaimTitleUpdatedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimTitleUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimTitleUpdatedEventDescriptor = $convert.base64Decode(
|
||||
'ChZDbGFpbVRpdGxlVXBkYXRlZEV2ZW50EigKBkhlYWRlchgBIAEoCzIQLmFwaS5FdmVudEhlYW'
|
||||
'RlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBI3CgdQYXlsb2FkGAMg'
|
||||
'ASgLMh0uYXBpLkNsYWltVGl0bGVVcGRhdGVkUGF5bG9hZFIHUGF5bG9hZDoZorsYBUV2ZW50ur'
|
||||
'sYDFRpdGxlVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimTitleUpdatedRequestDescriptor instead')
|
||||
const ClaimTitleUpdatedRequest$json = {
|
||||
'1': 'ClaimTitleUpdatedRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '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.ClaimTitleUpdatedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimTitleUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimTitleUpdatedRequestDescriptor = $convert.base64Decode(
|
||||
'ChhDbGFpbVRpdGxlVXBkYXRlZFJlcXVlc3QSMQoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||
'RQcm9qZWN0SGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjcK'
|
||||
'B1BheWxvYWQYAyABKAsyHS5hcGkuQ2xhaW1UaXRsZVVwZGF0ZWRQYXlsb2FkUgdQYXlsb2FkOj'
|
||||
'iSQRoKGNIBBkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYDFRpdGxlVXBkYXRl'
|
||||
'ZA==');
|
||||
|
||||
@$core.Deprecated('Use claimTitleUpdatedResponseDescriptor instead')
|
||||
const ClaimTitleUpdatedResponse$json = {
|
||||
'1': 'ClaimTitleUpdatedResponse',
|
||||
'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 `ClaimTitleUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimTitleUpdatedResponseDescriptor = $convert.base64Decode(
|
||||
'ChlDbGFpbVRpdGxlVXBkYXRlZFJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLmFwaS5SZXNwb2'
|
||||
'5zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDocorsYCFJl'
|
||||
'c3BvbnNlursYDFRpdGxlVXBkYXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimMessageSentPayloadDescriptor instead')
|
||||
const ClaimMessageSentPayload$json = {
|
||||
'1': 'ClaimMessageSentPayload',
|
||||
'2': [
|
||||
{'1': 'Message', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Message'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMessageSentPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMessageSentPayloadDescriptor = $convert.base64Decode(
|
||||
'ChdDbGFpbU1lc3NhZ2VTZW50UGF5bG9hZBIuCgdNZXNzYWdlGAEgASgJQhSSQREyD01lc3NhZ2'
|
||||
'UgY29udGVudFIHTWVzc2FnZTocorsYBUV2ZW50qLsYAbq7GAtNZXNzYWdlU2VudA==');
|
||||
|
||||
@$core.Deprecated('Use claimMessageSentEventDescriptor instead')
|
||||
const ClaimMessageSentEvent$json = {
|
||||
'1': 'ClaimMessageSentEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '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.ClaimMessageSentPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMessageSentEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMessageSentEventDescriptor = $convert.base64Decode(
|
||||
'ChVDbGFpbU1lc3NhZ2VTZW50RXZlbnQSKAoGSGVhZGVyGAEgASgLMhAuYXBpLkV2ZW50SGVhZG'
|
||||
'VyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjYKB1BheWxvYWQYAyAB'
|
||||
'KAsyHC5hcGkuQ2xhaW1NZXNzYWdlU2VudFBheWxvYWRSB1BheWxvYWQ6GKK7GAVFdmVudLq7GA'
|
||||
'tNZXNzYWdlU2VudA==');
|
||||
|
||||
@$core.Deprecated('Use claimMessageSentRequestDescriptor instead')
|
||||
const ClaimMessageSentRequest$json = {
|
||||
'1': 'ClaimMessageSentRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '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.ClaimMessageSentPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimMessageSentRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMessageSentRequestDescriptor = $convert.base64Decode(
|
||||
'ChdDbGFpbU1lc3NhZ2VTZW50UmVxdWVzdBIxCgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
||||
'Byb2plY3RIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSNgoH'
|
||||
'UGF5bG9hZBgDIAEoCzIcLmFwaS5DbGFpbU1lc3NhZ2VTZW50UGF5bG9hZFIHUGF5bG9hZDo3kk'
|
||||
'EaChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GAtNZXNzYWdlU2VudA==');
|
||||
|
||||
@$core.Deprecated('Use claimMessageSentResponseDescriptor instead')
|
||||
const ClaimMessageSentResponse$json = {
|
||||
'1': 'ClaimMessageSentResponse',
|
||||
'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 `ClaimMessageSentResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimMessageSentResponseDescriptor = $convert.base64Decode(
|
||||
'ChhDbGFpbU1lc3NhZ2VTZW50UmVzcG9uc2USKwoGSGVhZGVyGAEgASgLMhMuYXBpLlJlc3Bvbn'
|
||||
'NlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEOhuiuxgIUmVz'
|
||||
'cG9uc2W6uxgLTWVzc2FnZVNlbnQ=');
|
||||
|
||||
@$core.Deprecated('Use claimDeletedPayloadDescriptor instead')
|
||||
const ClaimDeletedPayload$json = {
|
||||
'1': 'ClaimDeletedPayload',
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimDeletedPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimDeletedPayloadDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbURlbGV0ZWRQYXlsb2FkOiySQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GA'
|
||||
'G6uxgHRGVsZXRlZA==');
|
||||
|
||||
@$core.Deprecated('Use claimDeletedEventDescriptor instead')
|
||||
const ClaimDeletedEvent$json = {
|
||||
'1': 'ClaimDeletedEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '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.ClaimDeletedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimDeletedEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimDeletedEventDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbURlbGV0ZWRFdmVudBIoCgZIZWFkZXIYASABKAsyEC5hcGkuRXZlbnRIZWFkZXJSBk'
|
||||
'hlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQSMgoHUGF5bG9hZBgDIAEoCzIY'
|
||||
'LmFwaS5DbGFpbURlbGV0ZWRQYXlsb2FkUgdQYXlsb2FkOhSiuxgFRXZlbnS6uxgHRGVsZXRlZA'
|
||||
'==');
|
||||
|
||||
@$core.Deprecated('Use claimDeletedRequestDescriptor instead')
|
||||
const ClaimDeletedRequest$json = {
|
||||
'1': 'ClaimDeletedRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '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.ClaimDeletedPayload', '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimDeletedRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimDeletedRequestDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbURlbGV0ZWRSZXF1ZXN0EjEKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||
'VjdEhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRBIyCgdQYXls'
|
||||
'b2FkGAMgASgLMhguYXBpLkNsYWltRGVsZXRlZFBheWxvYWRSB1BheWxvYWQ6FqK7GAdSZXF1ZX'
|
||||
'N0ursYB0RlbGV0ZWQ=');
|
||||
|
||||
@$core.Deprecated('Use claimDeletedResponseDescriptor instead')
|
||||
const ClaimDeletedResponse$json = {
|
||||
'1': 'ClaimDeletedResponse',
|
||||
'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 `ClaimDeletedResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimDeletedResponseDescriptor = $convert.base64Decode(
|
||||
'ChRDbGFpbURlbGV0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcGkuUmVzcG9uc2VIZW'
|
||||
'FkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6F6K7GAhSZXNwb25z'
|
||||
'Zbq7GAdEZWxldGVk');
|
||||
|
||||
658
lib/claimQuery.pb.dart
Normal file
658
lib/claimQuery.pb.dart
Normal file
@@ -0,0 +1,658 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $87;
|
||||
import 'shared.pb.dart' as $28;
|
||||
import 'user.pb.dart' as $3;
|
||||
|
||||
class ClaimByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimByIdQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.Iterable<$28.EntityID>? iDs,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iDs != null) {
|
||||
$result.iDs.addAll(iDs);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..pc<$28.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $28.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByIdQuery create() => ClaimByIdQuery._();
|
||||
ClaimByIdQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByIdQuery> createRepeated() => $pb.PbList<ClaimByIdQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByIdQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByIdQuery>(create);
|
||||
static ClaimByIdQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.EntityID> get iDs => $_getList(1);
|
||||
}
|
||||
|
||||
class ClaimByIdResult extends $pb.GeneratedMessage {
|
||||
factory ClaimByIdResult({
|
||||
$28.ResultHeader? header,
|
||||
$core.Iterable<$87.Claim>? objects,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (objects != null) {
|
||||
$result.objects.addAll(objects);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.ResultHeader.create)
|
||||
..pc<$87.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $87.Claim.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByIdResult create() => ClaimByIdResult._();
|
||||
ClaimByIdResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByIdResult> createRepeated() => $pb.PbList<ClaimByIdResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByIdResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByIdResult>(create);
|
||||
static ClaimByIdResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.ResultHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$87.Claim> get objects => $_getList(1);
|
||||
}
|
||||
|
||||
class ClaimByFilterQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimByFilterQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$28.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);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$28.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $28.BlockFilter.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByFilterQuery create() => ClaimByFilterQuery._();
|
||||
ClaimByFilterQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByFilterQuery> createRepeated() => $pb.PbList<ClaimByFilterQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByFilterQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByFilterQuery>(create);
|
||||
static ClaimByFilterQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// Number of maximum result
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get limitFilter => $_getSZ(1);
|
||||
@$pb.TagNumber(4)
|
||||
set limitFilter($core.String v) { $_setString(1, v); }
|
||||
@$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 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, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$28.BlockFilter> get blockFilters => $_getList(3);
|
||||
}
|
||||
|
||||
class ClaimByFilterResult extends $pb.GeneratedMessage {
|
||||
factory ClaimByFilterResult({
|
||||
$28.ResultHeader? header,
|
||||
$core.Iterable<$87.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;
|
||||
}
|
||||
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<$28.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.ResultHeader.create)
|
||||
..pc<$87.Claim>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $87.Claim.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByFilterResult create() => ClaimByFilterResult._();
|
||||
ClaimByFilterResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByFilterResult> createRepeated() => $pb.PbList<ClaimByFilterResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByFilterResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByFilterResult>(create);
|
||||
static ClaimByFilterResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.ResultHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.ResultHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$87.Claim> get objects => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set queryContext($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearQueryContext() => clearField(3);
|
||||
}
|
||||
|
||||
class ClaimByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimByMatchQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$core.Iterable<$28.BlockFilter>? blockFilters,
|
||||
$core.Iterable<$28.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);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..pc<$28.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $28.BlockFilter.create)
|
||||
..pc<$28.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $28.MatchField.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByMatchQuery create() => ClaimByMatchQuery._();
|
||||
ClaimByMatchQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByMatchQuery> createRepeated() => $pb.PbList<ClaimByMatchQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByMatchQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByMatchQuery>(create);
|
||||
static ClaimByMatchQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// 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)
|
||||
$core.List<$28.BlockFilter> get blockFilters => $_getList(1);
|
||||
|
||||
/// MatchField list structure, for FindMatching query
|
||||
@$pb.TagNumber(6)
|
||||
$core.List<$28.MatchField> get matchFields => $_getList(2);
|
||||
}
|
||||
|
||||
class ClaimByMatchResult extends $pb.GeneratedMessage {
|
||||
factory ClaimByMatchResult({
|
||||
$core.Iterable<$28.MatchFieldResult>? matchResults,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (matchResults != null) {
|
||||
$result.matchResults.addAll(matchResults);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.MatchFieldResult>(2, _omitFieldNames ? '' : 'MatchResults', $pb.PbFieldType.PM, protoName: 'MatchResults', subBuilder: $28.MatchFieldResult.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByMatchResult create() => ClaimByMatchResult._();
|
||||
ClaimByMatchResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimByMatchResult> createRepeated() => $pb.PbList<ClaimByMatchResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimByMatchResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimByMatchResult>(create);
|
||||
static ClaimByMatchResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$28.MatchFieldResult> get matchResults => $_getList(0);
|
||||
}
|
||||
|
||||
class ClaimGetRoomQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimGetRoomQuery({
|
||||
$28.QueryProjectHeader? header,
|
||||
$28.EntityID? iD,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (iD != null) {
|
||||
$result.iD = iD;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$28.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.QueryProjectHeader.create)
|
||||
..aOM<$28.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $28.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetRoomQuery create() => ClaimGetRoomQuery._();
|
||||
ClaimGetRoomQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimGetRoomQuery> createRepeated() => $pb.PbList<ClaimGetRoomQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetRoomQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimGetRoomQuery>(create);
|
||||
static ClaimGetRoomQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.QueryProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($28.EntityID v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.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;
|
||||
}
|
||||
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(
|
||||
'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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetRoomResult create() => ClaimGetRoomResult._();
|
||||
ClaimGetRoomResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimGetRoomResult> createRepeated() => $pb.PbList<ClaimGetRoomResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetRoomResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimGetRoomResult>(create);
|
||||
static ClaimGetRoomResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get roomName => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set roomName($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRoomName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearRoomName() => clearField(1);
|
||||
}
|
||||
|
||||
class ClaimGetAvailableContactsQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimGetAvailableContactsQuery({
|
||||
$28.RequestProjectHeader? header,
|
||||
$28.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;
|
||||
}
|
||||
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<$28.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestProjectHeader.create)
|
||||
..aOM<$28.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $28.EntityID.create)
|
||||
..pPS(3, _omitFieldNames ? '' : 'PartnerIDs', protoName: 'PartnerIDs')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetAvailableContactsQuery create() => ClaimGetAvailableContactsQuery._();
|
||||
ClaimGetAvailableContactsQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimGetAvailableContactsQuery> createRepeated() => $pb.PbList<ClaimGetAvailableContactsQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetAvailableContactsQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimGetAvailableContactsQuery>(create);
|
||||
static ClaimGetAvailableContactsQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestProjectHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($28.EntityID v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$28.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<$core.String> get partnerIDs => $_getList(2);
|
||||
}
|
||||
|
||||
class ClaimGetAvailableContactsResult extends $pb.GeneratedMessage {
|
||||
factory ClaimGetAvailableContactsResult({
|
||||
$core.Iterable<$3.User>? contacts,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (contacts != null) {
|
||||
$result.contacts.addAll(contacts);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
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<$3.User>(1, _omitFieldNames ? '' : 'Contacts', $pb.PbFieldType.PM, protoName: 'Contacts', subBuilder: $3.User.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetAvailableContactsResult create() => ClaimGetAvailableContactsResult._();
|
||||
ClaimGetAvailableContactsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimGetAvailableContactsResult> createRepeated() => $pb.PbList<ClaimGetAvailableContactsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimGetAvailableContactsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimGetAvailableContactsResult>(create);
|
||||
static ClaimGetAvailableContactsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<$3.User> get contacts => $_getList(0);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/claimQuery.pbenum.dart
Normal file
11
lib/claimQuery.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
221
lib/claimQuery.pbgrpc.dart
Normal file
221
lib/claimQuery.pbgrpc.dart
Normal file
@@ -0,0 +1,221 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'claimQuery.pb.dart' as $45;
|
||||
import 'clickhouse.pb.dart' as $30;
|
||||
import 'shared.pb.dart' as $28;
|
||||
|
||||
export 'claimQuery.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimQuery')
|
||||
class ClaimQueryClient extends $grpc.Client {
|
||||
static final _$getByIds = $grpc.ClientMethod<$45.ClaimByIdQuery, $45.ClaimByIdResult>(
|
||||
'/api.ClaimQuery/GetByIds',
|
||||
($45.ClaimByIdQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $45.ClaimByIdResult.fromBuffer(value));
|
||||
static final _$find = $grpc.ClientMethod<$45.ClaimByFilterQuery, $45.ClaimByFilterResult>(
|
||||
'/api.ClaimQuery/Find',
|
||||
($45.ClaimByFilterQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $45.ClaimByFilterResult.fromBuffer(value));
|
||||
static final _$findMatchingFieldValues = $grpc.ClientMethod<$45.ClaimByMatchQuery, $45.ClaimByMatchResult>(
|
||||
'/api.ClaimQuery/FindMatchingFieldValues',
|
||||
($45.ClaimByMatchQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $45.ClaimByMatchResult.fromBuffer(value));
|
||||
static final _$findMatchingFieldElements = $grpc.ClientMethod<$28.ElementByMatchQuery, $28.ElementByMatchResult>(
|
||||
'/api.ClaimQuery/FindMatchingFieldElements',
|
||||
($28.ElementByMatchQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.ElementByMatchResult.fromBuffer(value));
|
||||
static final _$extract = $grpc.ClientMethod<$28.ExtractQuery, $28.ExtractResult>(
|
||||
'/api.ClaimQuery/Extract',
|
||||
($28.ExtractQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.ExtractResult.fromBuffer(value));
|
||||
static final _$getKPIData = $grpc.ClientMethod<$30.GetKPIDataQuery, $30.GetKPIDataResult>(
|
||||
'/api.ClaimQuery/GetKPIData',
|
||||
($30.GetKPIDataQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $30.GetKPIDataResult.fromBuffer(value));
|
||||
static final _$getRoom = $grpc.ClientMethod<$45.ClaimGetRoomQuery, $45.ClaimGetRoomResult>(
|
||||
'/api.ClaimQuery/GetRoom',
|
||||
($45.ClaimGetRoomQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $45.ClaimGetRoomResult.fromBuffer(value));
|
||||
static final _$countLines = $grpc.ClientMethod<$28.CountLinesQuery, $28.CountLinesResult>(
|
||||
'/api.ClaimQuery/CountLines',
|
||||
($28.CountLinesQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.CountLinesResult.fromBuffer(value));
|
||||
static final _$getAvailableContacts = $grpc.ClientMethod<$45.ClaimGetAvailableContactsQuery, $45.ClaimGetAvailableContactsResult>(
|
||||
'/api.ClaimQuery/GetAvailableContacts',
|
||||
($45.ClaimGetAvailableContactsQuery value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $45.ClaimGetAvailableContactsResult.fromBuffer(value));
|
||||
|
||||
ClaimQueryClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$45.ClaimByIdResult> getByIds($45.ClaimByIdQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getByIds, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$45.ClaimByFilterResult> find($45.ClaimByFilterQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$find, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$45.ClaimByMatchResult> findMatchingFieldValues($45.ClaimByMatchQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.ElementByMatchResult> findMatchingFieldElements($28.ElementByMatchQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$findMatchingFieldElements, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.ExtractResult> extract($28.ExtractQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$extract, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$30.GetKPIDataResult> getKPIData($30.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getKPIData, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$45.ClaimGetRoomResult> getRoom($45.ClaimGetRoomQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getRoom, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.CountLinesResult> countLines($28.CountLinesQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$countLines, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$45.ClaimGetAvailableContactsResult> getAvailableContacts($45.ClaimGetAvailableContactsQuery request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getAvailableContacts, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ClaimQuery')
|
||||
abstract class ClaimQueryServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ClaimQuery';
|
||||
|
||||
ClaimQueryServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$45.ClaimByIdQuery, $45.ClaimByIdResult>(
|
||||
'GetByIds',
|
||||
getByIds_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $45.ClaimByIdQuery.fromBuffer(value),
|
||||
($45.ClaimByIdResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$45.ClaimByFilterQuery, $45.ClaimByFilterResult>(
|
||||
'Find',
|
||||
find_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $45.ClaimByFilterQuery.fromBuffer(value),
|
||||
($45.ClaimByFilterResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$45.ClaimByMatchQuery, $45.ClaimByMatchResult>(
|
||||
'FindMatchingFieldValues',
|
||||
findMatchingFieldValues_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $45.ClaimByMatchQuery.fromBuffer(value),
|
||||
($45.ClaimByMatchResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.ElementByMatchQuery, $28.ElementByMatchResult>(
|
||||
'FindMatchingFieldElements',
|
||||
findMatchingFieldElements_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.ElementByMatchQuery.fromBuffer(value),
|
||||
($28.ElementByMatchResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.ExtractQuery, $28.ExtractResult>(
|
||||
'Extract',
|
||||
extract_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.ExtractQuery.fromBuffer(value),
|
||||
($28.ExtractResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$30.GetKPIDataQuery, $30.GetKPIDataResult>(
|
||||
'GetKPIData',
|
||||
getKPIData_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $30.GetKPIDataQuery.fromBuffer(value),
|
||||
($30.GetKPIDataResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$45.ClaimGetRoomQuery, $45.ClaimGetRoomResult>(
|
||||
'GetRoom',
|
||||
getRoom_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $45.ClaimGetRoomQuery.fromBuffer(value),
|
||||
($45.ClaimGetRoomResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.CountLinesQuery, $28.CountLinesResult>(
|
||||
'CountLines',
|
||||
countLines_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.CountLinesQuery.fromBuffer(value),
|
||||
($28.CountLinesResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$45.ClaimGetAvailableContactsQuery, $45.ClaimGetAvailableContactsResult>(
|
||||
'GetAvailableContacts',
|
||||
getAvailableContacts_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $45.ClaimGetAvailableContactsQuery.fromBuffer(value),
|
||||
($45.ClaimGetAvailableContactsResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimByIdResult> getByIds_Pre($grpc.ServiceCall call, $async.Future<$45.ClaimByIdQuery> request) async {
|
||||
return getByIds(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimByFilterResult> find_Pre($grpc.ServiceCall call, $async.Future<$45.ClaimByFilterQuery> request) async {
|
||||
return find(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall call, $async.Future<$45.ClaimByMatchQuery> request) async {
|
||||
return findMatchingFieldValues(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.ElementByMatchResult> findMatchingFieldElements_Pre($grpc.ServiceCall call, $async.Future<$28.ElementByMatchQuery> request) async {
|
||||
return findMatchingFieldElements(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.ExtractResult> extract_Pre($grpc.ServiceCall call, $async.Future<$28.ExtractQuery> request) async {
|
||||
return extract(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$30.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall call, $async.Future<$30.GetKPIDataQuery> request) async {
|
||||
return getKPIData(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimGetRoomResult> getRoom_Pre($grpc.ServiceCall call, $async.Future<$45.ClaimGetRoomQuery> request) async {
|
||||
return getRoom(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$28.CountLinesResult> countLines_Pre($grpc.ServiceCall call, $async.Future<$28.CountLinesQuery> request) async {
|
||||
return countLines(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimGetAvailableContactsResult> getAvailableContacts_Pre($grpc.ServiceCall call, $async.Future<$45.ClaimGetAvailableContactsQuery> request) async {
|
||||
return getAvailableContacts(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$45.ClaimByIdResult> getByIds($grpc.ServiceCall call, $45.ClaimByIdQuery request);
|
||||
$async.Future<$45.ClaimByFilterResult> find($grpc.ServiceCall call, $45.ClaimByFilterQuery request);
|
||||
$async.Future<$45.ClaimByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $45.ClaimByMatchQuery request);
|
||||
$async.Future<$28.ElementByMatchResult> findMatchingFieldElements($grpc.ServiceCall call, $28.ElementByMatchQuery request);
|
||||
$async.Future<$28.ExtractResult> extract($grpc.ServiceCall call, $28.ExtractQuery request);
|
||||
$async.Future<$30.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $30.GetKPIDataQuery request);
|
||||
$async.Future<$45.ClaimGetRoomResult> getRoom($grpc.ServiceCall call, $45.ClaimGetRoomQuery request);
|
||||
$async.Future<$28.CountLinesResult> countLines($grpc.ServiceCall call, $28.CountLinesQuery request);
|
||||
$async.Future<$45.ClaimGetAvailableContactsResult> getAvailableContacts($grpc.ServiceCall call, $45.ClaimGetAvailableContactsQuery request);
|
||||
}
|
||||
174
lib/claimQuery.pbjson.dart
Normal file
174
lib/claimQuery.pbjson.dart
Normal file
@@ -0,0 +1,174 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: claimQuery.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use claimByIdQueryDescriptor instead')
|
||||
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.EntityID', '8': {}, '10': 'IDs'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByIdQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5DbGFpbUJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
|
||||
@$core.Deprecated('Use claimByIdResultDescriptor instead')
|
||||
const ClaimByIdResult$json = {
|
||||
'1': 'ClaimByIdResult',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
|
||||
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Claim', '10': 'Objects'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByIdResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByIdResultDescriptor = $convert.base64Decode(
|
||||
'Cg9DbGFpbUJ5SWRSZXN1bHQSKQoGSGVhZGVyGAEgASgLMhEuYXBpLlJlc3VsdEhlYWRlclIGSG'
|
||||
'VhZGVyEiQKB09iamVjdHMYAiADKAsyCi5hcGkuQ2xhaW1SB09iamVjdHM6D5JBAgoAorsYBlJl'
|
||||
'c3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use claimByFilterQueryDescriptor instead')
|
||||
const ClaimByFilterQuery$json = {
|
||||
'1': 'ClaimByFilterQuery',
|
||||
'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByFilterQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByFilterQueryDescriptor = $convert.base64Decode(
|
||||
'ChJDbGFpbUJ5RmlsdGVyUXVlcnkSPAoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdE'
|
||||
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
|
||||
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
|
||||
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use claimByFilterResultDescriptor instead')
|
||||
const ClaimByFilterResult$json = {
|
||||
'1': 'ClaimByFilterResult',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
|
||||
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Claim', '10': 'Objects'},
|
||||
{'1': 'queryContext', '3': 3, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByFilterResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByFilterResultDescriptor = $convert.base64Decode(
|
||||
'ChNDbGFpbUJ5RmlsdGVyUmVzdWx0EikKBkhlYWRlchgBIAEoCzIRLmFwaS5SZXN1bHRIZWFkZX'
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkNsYWltUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use claimByMatchQueryDescriptor instead')
|
||||
const ClaimByMatchQuery$json = {
|
||||
'1': 'ClaimByMatchQuery',
|
||||
'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'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByMatchQueryDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbUJ5TWF0Y2hRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgFIAMoCzIQLmFwaS5CbG9j'
|
||||
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEmkKC01hdGNoRmllbGRzGAYgAygLMg8uYXBpLk1hdGNoRm'
|
||||
'llbGRCNpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZSwgZm9yIEZpbmRNYXRjaGluZyBx'
|
||||
'dWVyeVILTWF0Y2hGaWVsZHM6DpJBCwoJ0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use claimByMatchResultDescriptor instead')
|
||||
const ClaimByMatchResult$json = {
|
||||
'1': 'ClaimByMatchResult',
|
||||
'2': [
|
||||
{'1': 'MatchResults', '3': 2, '4': 3, '5': 11, '6': '.api.MatchFieldResult', '10': 'MatchResults'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimByMatchResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimByMatchResultDescriptor = $convert.base64Decode(
|
||||
'ChJDbGFpbUJ5TWF0Y2hSZXN1bHQSOQoMTWF0Y2hSZXN1bHRzGAIgAygLMhUuYXBpLk1hdGNoRm'
|
||||
'llbGRSZXN1bHRSDE1hdGNoUmVzdWx0cw==');
|
||||
|
||||
@$core.Deprecated('Use claimGetRoomQueryDescriptor instead')
|
||||
const ClaimGetRoomQuery$json = {
|
||||
'1': 'ClaimGetRoomQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimGetRoomQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimGetRoomQueryDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbUdldFJvb21RdWVyeRI8CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
|
||||
'VhZGVyQguSQQD6QgWKAQIQAVIGSGVhZGVyEioKAklEGAIgASgLMg0uYXBpLkVudGl0eUlEQguS'
|
||||
'QQD6QgWKAQIQAVICSUQ6E5JBEAoO0gEGSGVhZGVy0gECSUQ=');
|
||||
|
||||
@$core.Deprecated('Use claimGetRoomResultDescriptor instead')
|
||||
const ClaimGetRoomResult$json = {
|
||||
'1': 'ClaimGetRoomResult',
|
||||
'2': [
|
||||
{'1': 'RoomName', '3': 1, '4': 1, '5': 9, '10': 'RoomName'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimGetRoomResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimGetRoomResultDescriptor = $convert.base64Decode(
|
||||
'ChJDbGFpbUdldFJvb21SZXN1bHQSGgoIUm9vbU5hbWUYASABKAlSCFJvb21OYW1l');
|
||||
|
||||
@$core.Deprecated('Use claimGetAvailableContactsQueryDescriptor instead')
|
||||
const ClaimGetAvailableContactsQuery$json = {
|
||||
'1': 'ClaimGetAvailableContactsQuery',
|
||||
'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': 'PartnerIDs', '3': 3, '4': 3, '5': 9, '10': 'PartnerIDs'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimGetAvailableContactsQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimGetAvailableContactsQueryDescriptor = $convert.base64Decode(
|
||||
'Ch5DbGFpbUdldEF2YWlsYWJsZUNvbnRhY3RzUXVlcnkSPgoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||
'JlcXVlc3RQcm9qZWN0SGVhZGVyQguSQQD6QgWKAQIQAVIGSGVhZGVyEioKAklEGAIgASgLMg0u'
|
||||
'YXBpLkVudGl0eUlEQguSQQD6QgWKAQIQAVICSUQSHgoKUGFydG5lcklEcxgDIAMoCVIKUGFydG'
|
||||
'5lcklEczoTkkEQCg7SAQZIZWFkZXLSAQJJRA==');
|
||||
|
||||
@$core.Deprecated('Use claimGetAvailableContactsResultDescriptor instead')
|
||||
const ClaimGetAvailableContactsResult$json = {
|
||||
'1': 'ClaimGetAvailableContactsResult',
|
||||
'2': [
|
||||
{'1': 'Contacts', '3': 1, '4': 3, '5': 11, '6': '.api.User', '10': 'Contacts'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimGetAvailableContactsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimGetAvailableContactsResultDescriptor = $convert.base64Decode(
|
||||
'Ch9DbGFpbUdldEF2YWlsYWJsZUNvbnRhY3RzUmVzdWx0EiUKCENvbnRhY3RzGAEgAygLMgkuYX'
|
||||
'BpLlVzZXJSCENvbnRhY3Rz');
|
||||
|
||||
1573
lib/clickhouse.pb.dart
Normal file
1573
lib/clickhouse.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
84
lib/clickhouse.pbenum.dart
Normal file
84
lib/clickhouse.pbenum.dart
Normal file
@@ -0,0 +1,84 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: clickhouse.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class CHChartType extends $pb.ProtobufEnum {
|
||||
static const CHChartType CH_CHART_TYPE_UNKNOWN = CHChartType._(0, _omitEnumNames ? '' : 'CH_CHART_TYPE_UNKNOWN');
|
||||
static const CHChartType CH_CHART_TYPE_LINE_CHART = CHChartType._(1, _omitEnumNames ? '' : 'CH_CHART_TYPE_LINE_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_MULTI_LINE_CHART = CHChartType._(2, _omitEnumNames ? '' : 'CH_CHART_TYPE_MULTI_LINE_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_VERTICAL_BAR_CHART = CHChartType._(3, _omitEnumNames ? '' : 'CH_CHART_TYPE_VERTICAL_BAR_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_HORIZONTAL_BAR_CHART = CHChartType._(4, _omitEnumNames ? '' : 'CH_CHART_TYPE_HORIZONTAL_BAR_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_STACKED_BAR_CHART = CHChartType._(5, _omitEnumNames ? '' : 'CH_CHART_TYPE_STACKED_BAR_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_PIE_CHART = CHChartType._(6, _omitEnumNames ? '' : 'CH_CHART_TYPE_PIE_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_DOUGHNUT_CHART = CHChartType._(7, _omitEnumNames ? '' : 'CH_CHART_TYPE_DOUGHNUT_CHART');
|
||||
static const CHChartType CH_CHART_TYPE_METRIC = CHChartType._(8, _omitEnumNames ? '' : 'CH_CHART_TYPE_METRIC');
|
||||
static const CHChartType CH_CHART_TYPE_TABLE = CHChartType._(9, _omitEnumNames ? '' : 'CH_CHART_TYPE_TABLE');
|
||||
static const CHChartType CH_CHART_TYPE_PIVOT_TABLE = CHChartType._(10, _omitEnumNames ? '' : 'CH_CHART_TYPE_PIVOT_TABLE');
|
||||
|
||||
static const $core.List<CHChartType> values = <CHChartType> [
|
||||
CH_CHART_TYPE_UNKNOWN,
|
||||
CH_CHART_TYPE_LINE_CHART,
|
||||
CH_CHART_TYPE_MULTI_LINE_CHART,
|
||||
CH_CHART_TYPE_VERTICAL_BAR_CHART,
|
||||
CH_CHART_TYPE_HORIZONTAL_BAR_CHART,
|
||||
CH_CHART_TYPE_STACKED_BAR_CHART,
|
||||
CH_CHART_TYPE_PIE_CHART,
|
||||
CH_CHART_TYPE_DOUGHNUT_CHART,
|
||||
CH_CHART_TYPE_METRIC,
|
||||
CH_CHART_TYPE_TABLE,
|
||||
CH_CHART_TYPE_PIVOT_TABLE,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, CHChartType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static CHChartType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const CHChartType._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class CHQueryType extends $pb.ProtobufEnum {
|
||||
static const CHQueryType CH_QUERY_TYPE_UNKNOWN = CHQueryType._(0, _omitEnumNames ? '' : 'CH_QUERY_TYPE_UNKNOWN');
|
||||
static const CHQueryType CH_QUERY_TYPE_A = CHQueryType._(1, _omitEnumNames ? '' : 'CH_QUERY_TYPE_A');
|
||||
static const CHQueryType CH_QUERY_TYPE_B = CHQueryType._(2, _omitEnumNames ? '' : 'CH_QUERY_TYPE_B');
|
||||
static const CHQueryType CH_QUERY_TYPE_C = CHQueryType._(3, _omitEnumNames ? '' : 'CH_QUERY_TYPE_C');
|
||||
|
||||
static const $core.List<CHQueryType> values = <CHQueryType> [
|
||||
CH_QUERY_TYPE_UNKNOWN,
|
||||
CH_QUERY_TYPE_A,
|
||||
CH_QUERY_TYPE_B,
|
||||
CH_QUERY_TYPE_C,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, CHQueryType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static CHQueryType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const CHQueryType._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class KpiDataResultFormat extends $pb.ProtobufEnum {
|
||||
static const KpiDataResultFormat KPIDATA_RESULT_FORMAT_RAW = KpiDataResultFormat._(0, _omitEnumNames ? '' : 'KPIDATA_RESULT_FORMAT_RAW');
|
||||
static const KpiDataResultFormat KPIDATA_RESULT_FORMAT_SERIES = KpiDataResultFormat._(1, _omitEnumNames ? '' : 'KPIDATA_RESULT_FORMAT_SERIES');
|
||||
|
||||
static const $core.List<KpiDataResultFormat> values = <KpiDataResultFormat> [
|
||||
KPIDATA_RESULT_FORMAT_RAW,
|
||||
KPIDATA_RESULT_FORMAT_SERIES,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, KpiDataResultFormat> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static KpiDataResultFormat? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const KpiDataResultFormat._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
443
lib/clickhouse.pbjson.dart
Normal file
443
lib/clickhouse.pbjson.dart
Normal file
@@ -0,0 +1,443 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: clickhouse.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use cHChartTypeDescriptor instead')
|
||||
const CHChartType$json = {
|
||||
'1': 'CHChartType',
|
||||
'2': [
|
||||
{'1': 'CH_CHART_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'CH_CHART_TYPE_LINE_CHART', '2': 1},
|
||||
{'1': 'CH_CHART_TYPE_MULTI_LINE_CHART', '2': 2},
|
||||
{'1': 'CH_CHART_TYPE_VERTICAL_BAR_CHART', '2': 3},
|
||||
{'1': 'CH_CHART_TYPE_HORIZONTAL_BAR_CHART', '2': 4},
|
||||
{'1': 'CH_CHART_TYPE_STACKED_BAR_CHART', '2': 5},
|
||||
{'1': 'CH_CHART_TYPE_PIE_CHART', '2': 6},
|
||||
{'1': 'CH_CHART_TYPE_DOUGHNUT_CHART', '2': 7},
|
||||
{'1': 'CH_CHART_TYPE_METRIC', '2': 8},
|
||||
{'1': 'CH_CHART_TYPE_TABLE', '2': 9},
|
||||
{'1': 'CH_CHART_TYPE_PIVOT_TABLE', '2': 10},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CHChartType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List cHChartTypeDescriptor = $convert.base64Decode(
|
||||
'CgtDSENoYXJ0VHlwZRIZChVDSF9DSEFSVF9UWVBFX1VOS05PV04QABIcChhDSF9DSEFSVF9UWV'
|
||||
'BFX0xJTkVfQ0hBUlQQARIiCh5DSF9DSEFSVF9UWVBFX01VTFRJX0xJTkVfQ0hBUlQQAhIkCiBD'
|
||||
'SF9DSEFSVF9UWVBFX1ZFUlRJQ0FMX0JBUl9DSEFSVBADEiYKIkNIX0NIQVJUX1RZUEVfSE9SSV'
|
||||
'pPTlRBTF9CQVJfQ0hBUlQQBBIjCh9DSF9DSEFSVF9UWVBFX1NUQUNLRURfQkFSX0NIQVJUEAUS'
|
||||
'GwoXQ0hfQ0hBUlRfVFlQRV9QSUVfQ0hBUlQQBhIgChxDSF9DSEFSVF9UWVBFX0RPVUdITlVUX0'
|
||||
'NIQVJUEAcSGAoUQ0hfQ0hBUlRfVFlQRV9NRVRSSUMQCBIXChNDSF9DSEFSVF9UWVBFX1RBQkxF'
|
||||
'EAkSHQoZQ0hfQ0hBUlRfVFlQRV9QSVZPVF9UQUJMRRAK');
|
||||
|
||||
@$core.Deprecated('Use cHQueryTypeDescriptor instead')
|
||||
const CHQueryType$json = {
|
||||
'1': 'CHQueryType',
|
||||
'2': [
|
||||
{'1': 'CH_QUERY_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'CH_QUERY_TYPE_A', '2': 1},
|
||||
{'1': 'CH_QUERY_TYPE_B', '2': 2},
|
||||
{'1': 'CH_QUERY_TYPE_C', '2': 3},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CHQueryType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List cHQueryTypeDescriptor = $convert.base64Decode(
|
||||
'CgtDSFF1ZXJ5VHlwZRIZChVDSF9RVUVSWV9UWVBFX1VOS05PV04QABITCg9DSF9RVUVSWV9UWV'
|
||||
'BFX0EQARITCg9DSF9RVUVSWV9UWVBFX0IQAhITCg9DSF9RVUVSWV9UWVBFX0MQAw==');
|
||||
|
||||
@$core.Deprecated('Use kpiDataResultFormatDescriptor instead')
|
||||
const KpiDataResultFormat$json = {
|
||||
'1': 'KpiDataResultFormat',
|
||||
'2': [
|
||||
{'1': 'KPIDATA_RESULT_FORMAT_RAW', '2': 0},
|
||||
{'1': 'KPIDATA_RESULT_FORMAT_SERIES', '2': 1},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `KpiDataResultFormat`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List kpiDataResultFormatDescriptor = $convert.base64Decode(
|
||||
'ChNLcGlEYXRhUmVzdWx0Rm9ybWF0Eh0KGUtQSURBVEFfUkVTVUxUX0ZPUk1BVF9SQVcQABIgCh'
|
||||
'xLUElEQVRBX1JFU1VMVF9GT1JNQVRfU0VSSUVTEAE=');
|
||||
|
||||
@$core.Deprecated('Use cHDimensionDescriptor instead')
|
||||
const CHDimension$json = {
|
||||
'1': 'CHDimension',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'Granularity', '3': 2, '4': 1, '5': 9, '10': 'Granularity'},
|
||||
{'1': 'Level', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Level'},
|
||||
{'1': 'DataType', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'DataType'},
|
||||
{'1': 'ContentType', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'ContentType'},
|
||||
{'1': 'EnumValues', '3': 6, '4': 1, '5': 9, '10': 'EnumValues'},
|
||||
{'1': 'Period', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'Period'},
|
||||
{'1': 'Operator', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'Operator'},
|
||||
{'1': 'Values', '3': 9, '4': 3, '5': 9, '10': 'Values'},
|
||||
{'1': 'StartDate', '3': 10, '4': 1, '5': 11, '6': '.api.StringDateObject', '10': 'StartDate'},
|
||||
{'1': 'EndDate', '3': 11, '4': 1, '5': 11, '6': '.api.StringDateObject', '10': 'EndDate'},
|
||||
{'1': 'Expressions', '3': 12, '4': 3, '5': 11, '6': '.api.CHQueryExpression', '10': 'Expressions'},
|
||||
{'1': 'IsComputed', '3': 13, '4': 1, '5': 8, '10': 'IsComputed'},
|
||||
{'1': 'Or', '3': 14, '4': 1, '5': 11, '6': '.api.CHDimension', '10': 'Or'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CHDimension`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cHDimensionDescriptor = $convert.base64Decode(
|
||||
'CgtDSERpbWVuc2lvbhIbCgROYW1lGAEgASgJQgf6QgRyAhABUgROYW1lEiAKC0dyYW51bGFyaX'
|
||||
'R5GAIgASgJUgtHcmFudWxhcml0eRIdCgVMZXZlbBgDIAEoCUIH+kIEcgIQAVIFTGV2ZWwSLgoI'
|
||||
'RGF0YVR5cGUYBCABKAlCEpJBCEoGImRhdGUi+kIEcgIQAVIIRGF0YVR5cGUSOAoLQ29udGVudF'
|
||||
'R5cGUYBSABKAlCFpJBDEoKIkRhdGVUaW1lIvpCBHICEAFSC0NvbnRlbnRUeXBlEh4KCkVudW1W'
|
||||
'YWx1ZXMYBiABKAlSCkVudW1WYWx1ZXMSLQoGUGVyaW9kGAcgASgJQhWSQRIyEEEgcGVyaW9kIG'
|
||||
'9mIHRpbWVSBlBlcmlvZBK4AQoIT3BlcmF0b3IYCCABKAlCmwGSQZcBMpQBQWxsb3dlZCB2YWx1'
|
||||
'ZXMgOiAiIiwgIkVRVUFMIiwgIkRJRkYiLCAiU1RBUlRfQlkiLCAiTk9UX1NUQVJUX0JZIiwgIk'
|
||||
'ZJTklTSF9CWSIsICJOT1RfRklOSVNIX0JZIiwgIkNPTlRBSU5TIiwgIk5PVF9DT05UQUlOUyIs'
|
||||
'ICJJTl9MSVNUIiwgIk5PVF9JTl9MSVNUIlIIT3BlcmF0b3ISFgoGVmFsdWVzGAkgAygJUgZWYW'
|
||||
'x1ZXMSMwoJU3RhcnREYXRlGAogASgLMhUuYXBpLlN0cmluZ0RhdGVPYmplY3RSCVN0YXJ0RGF0'
|
||||
'ZRIvCgdFbmREYXRlGAsgASgLMhUuYXBpLlN0cmluZ0RhdGVPYmplY3RSB0VuZERhdGUSOAoLRX'
|
||||
'hwcmVzc2lvbnMYDCADKAsyFi5hcGkuQ0hRdWVyeUV4cHJlc3Npb25SC0V4cHJlc3Npb25zEh4K'
|
||||
'CklzQ29tcHV0ZWQYDSABKAhSCklzQ29tcHV0ZWQSIAoCT3IYDiABKAsyEC5hcGkuQ0hEaW1lbn'
|
||||
'Npb25SAk9yOi2SQSoKKNIBBE5hbWXSAQVMZXZlbNIBCERhdGFUeXBl0gELQ29udGVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use cHQueryExpressionDescriptor instead')
|
||||
const CHQueryExpression$json = {
|
||||
'1': 'CHQueryExpression',
|
||||
'2': [
|
||||
{'1': 'Block', '3': 1, '4': 1, '5': 9, '10': 'Block'},
|
||||
{'1': 'QueryType', '3': 2, '4': 1, '5': 14, '6': '.api.CHQueryType', '10': 'QueryType'},
|
||||
{'1': 'Field', '3': 3, '4': 1, '5': 9, '10': 'Field'},
|
||||
{'1': 'Query', '3': 4, '4': 1, '5': 9, '10': 'Query'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CHQueryExpression`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cHQueryExpressionDescriptor = $convert.base64Decode(
|
||||
'ChFDSFF1ZXJ5RXhwcmVzc2lvbhIUCgVCbG9jaxgBIAEoCVIFQmxvY2sSLgoJUXVlcnlUeXBlGA'
|
||||
'IgASgOMhAuYXBpLkNIUXVlcnlUeXBlUglRdWVyeVR5cGUSFAoFRmllbGQYAyABKAlSBUZpZWxk'
|
||||
'EhQKBVF1ZXJ5GAQgASgJUgVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use cHMetricDescriptor instead')
|
||||
const CHMetric$json = {
|
||||
'1': 'CHMetric',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'Level', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Level'},
|
||||
{'1': 'DataType', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'DataType'},
|
||||
{'1': 'ContentType', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'ContentType'},
|
||||
{'1': 'EnumValues', '3': 6, '4': 1, '5': 9, '10': 'EnumValues'},
|
||||
{'1': 'Expressions', '3': 12, '4': 3, '5': 11, '6': '.api.CHQueryExpression', '10': 'Expressions'},
|
||||
{'1': 'IsComputed', '3': 13, '4': 1, '5': 8, '10': 'IsComputed'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CHMetric`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cHMetricDescriptor = $convert.base64Decode(
|
||||
'CghDSE1ldHJpYxIbCgROYW1lGAEgASgJQgf6QgRyAhABUgROYW1lEh0KBUxldmVsGAMgASgJQg'
|
||||
'f6QgRyAhABUgVMZXZlbBIvCghEYXRhVHlwZRgEIAEoCUITkkEJSgciY291bnQi+kIEcgIQAVII'
|
||||
'RGF0YVR5cGUSMwoLQ29udGVudFR5cGUYBSABKAlCEZJBB0oFImludCL6QgRyAhABUgtDb250ZW'
|
||||
'50VHlwZRIeCgpFbnVtVmFsdWVzGAYgASgJUgpFbnVtVmFsdWVzEjgKC0V4cHJlc3Npb25zGAwg'
|
||||
'AygLMhYuYXBpLkNIUXVlcnlFeHByZXNzaW9uUgtFeHByZXNzaW9ucxIeCgpJc0NvbXB1dGVkGA'
|
||||
'0gASgIUgpJc0NvbXB1dGVkOi2SQSoKKNIBBE5hbWXSAQVMZXZlbNIBCERhdGFUeXBl0gELQ29u'
|
||||
'dGVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use cHFilterDescriptor instead')
|
||||
const CHFilter$json = {
|
||||
'1': 'CHFilter',
|
||||
'2': [
|
||||
{'1': 'Dimensions', '3': 1, '4': 3, '5': 11, '6': '.api.CHDimension', '10': 'Dimensions'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CHFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List cHFilterDescriptor = $convert.base64Decode(
|
||||
'CghDSEZpbHRlchIwCgpEaW1lbnNpb25zGAEgAygLMhAuYXBpLkNIRGltZW5zaW9uUgpEaW1lbn'
|
||||
'Npb25z');
|
||||
|
||||
@$core.Deprecated('Use kpiDataSerieDescriptor instead')
|
||||
const KpiDataSerie$json = {
|
||||
'1': 'KpiDataSerie',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
|
||||
{'1': 'Values', '3': 2, '4': 3, '5': 9, '10': 'Values'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `KpiDataSerie`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List kpiDataSerieDescriptor = $convert.base64Decode(
|
||||
'CgxLcGlEYXRhU2VyaWUSEgoETmFtZRgBIAEoCVIETmFtZRIWCgZWYWx1ZXMYAiADKAlSBlZhbH'
|
||||
'Vlcw==');
|
||||
|
||||
@$core.Deprecated('Use getKPIDataQueryDescriptor instead')
|
||||
const GetKPIDataQuery$json = {
|
||||
'1': 'GetKPIDataQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ChartType', '3': 2, '4': 1, '5': 14, '6': '.api.CHChartType', '8': {}, '10': 'ChartType'},
|
||||
{'1': 'QueryType', '3': 3, '4': 1, '5': 14, '6': '.api.CHQueryType', '8': {}, '10': 'QueryType'},
|
||||
{'1': 'QueryBlock', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'QueryBlock'},
|
||||
{'1': 'Dimensions', '3': 5, '4': 3, '5': 11, '6': '.api.CHDimension', '10': 'Dimensions'},
|
||||
{'1': 'Metrics', '3': 6, '4': 3, '5': 11, '6': '.api.CHMetric', '10': 'Metrics'},
|
||||
{'1': 'Filter', '3': 7, '4': 1, '5': 11, '6': '.api.CHFilter', '10': 'Filter'},
|
||||
{'1': 'TargetTimeZone', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'ResultFormat', '3': 9, '4': 1, '5': 14, '6': '.api.KpiDataResultFormat', '8': {}, '10': 'ResultFormat'},
|
||||
{'1': 'KpiGroupName', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'KpiGroupName'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetKPIDataQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getKPIDataQueryDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'GetKPIDataForUserQuery',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
||||
{'1': 'ChartType', '3': 2, '4': 1, '5': 14, '6': '.api.CHChartType', '8': {}, '10': 'ChartType'},
|
||||
{'1': 'QueryType', '3': 3, '4': 1, '5': 14, '6': '.api.CHQueryType', '8': {}, '10': 'QueryType'},
|
||||
{'1': 'QueryBlock', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'QueryBlock'},
|
||||
{'1': 'Dimensions', '3': 5, '4': 3, '5': 11, '6': '.api.CHDimension', '10': 'Dimensions'},
|
||||
{'1': 'Metrics', '3': 6, '4': 3, '5': 11, '6': '.api.CHMetric', '10': 'Metrics'},
|
||||
{'1': 'Filter', '3': 7, '4': 1, '5': 11, '6': '.api.CHFilter', '10': 'Filter'},
|
||||
{'1': 'TargetTimeZone', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'ResultFormat', '3': 9, '4': 1, '5': 14, '6': '.api.KpiDataResultFormat', '8': {}, '10': 'ResultFormat'},
|
||||
{'1': 'KpiGroupName', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'KpiGroupName'},
|
||||
{'1': 'UserID', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'UserID'},
|
||||
{'1': 'PagingState', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'PagingState'},
|
||||
{'1': 'Limit', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'Limit'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetKPIDataForUserQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getKPIDataForUserQueryDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'GetKPIDataResult',
|
||||
'2': [
|
||||
{'1': 'Results', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Results'},
|
||||
{'1': 'Series', '3': 2, '4': 3, '5': 11, '6': '.api.KpiDataSerie', '8': {}, '10': 'Series'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetKPIDataResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getKPIDataResultDescriptor = $convert.base64Decode(
|
||||
'ChBHZXRLUElEYXRhUmVzdWx0EjAKB1Jlc3VsdHMYASABKAlCFpJBEzIRUmF3IHJlc3VsdCBmb3'
|
||||
'JtYXRSB1Jlc3VsdHMS9wEKBlNlcmllcxgCIAMoCzIRLmFwaS5LcGlEYXRhU2VyaWVCywGSQccB'
|
||||
'MiNKc29uIHNlcmllcyBmb3JtYXR0ZWQgcmVzdWx0IGZvcm1hdEqfAXsiU2VyaWVzIjogW3siTm'
|
||||
'FtZSI6ICJOYW1lIiwgIlZhbHVlcyI6IFsiQSIsICJCIiwgIkMiXX0sIHsiTmFtZSI6ICJRdWFu'
|
||||
'dGl0eSIsICJWYWx1ZXMiOiBbIjEyIiwgIjk5IiwgIjc0Il19LCB7Ik5hbWUiOiAiVm9sdW1lIi'
|
||||
'wgIlZhbHVlcyI6IFsiMzQiLCAiMjMiLCAiNjUiXX1dfVIGU2VyaWVz');
|
||||
|
||||
@$core.Deprecated('Use entityBlockFilterDescriptor instead')
|
||||
const EntityBlockFilter$json = {
|
||||
'1': 'EntityBlockFilter',
|
||||
'2': [
|
||||
{'1': 'EntityName', '3': 1, '4': 1, '5': 9, '10': 'EntityName'},
|
||||
{'1': 'BlockFilters', '3': 2, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `EntityBlockFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List entityBlockFilterDescriptor = $convert.base64Decode(
|
||||
'ChFFbnRpdHlCbG9ja0ZpbHRlchIeCgpFbnRpdHlOYW1lGAEgASgJUgpFbnRpdHlOYW1lEjQKDE'
|
||||
'Jsb2NrRmlsdGVycxgCIAMoCzIQLmFwaS5CbG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJz');
|
||||
|
||||
@$core.Deprecated('Use findKPIDataQueryDescriptor instead')
|
||||
const FindKPIDataQuery$json = {
|
||||
'1': 'FindKPIDataQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'QueryType', '3': 2, '4': 1, '5': 14, '6': '.api.CHQueryType', '8': {}, '10': 'QueryType'},
|
||||
{'1': 'QueryBlock', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'QueryBlock'},
|
||||
{'1': 'EntityBlockFilters', '3': 4, '4': 3, '5': 11, '6': '.api.EntityBlockFilter', '10': 'EntityBlockFilters'},
|
||||
{'1': 'Filter', '3': 5, '4': 1, '5': 11, '6': '.api.CHFilter', '10': 'Filter'},
|
||||
{'1': 'Dimensions', '3': 6, '4': 3, '5': 11, '6': '.api.CHDimension', '10': 'Dimensions'},
|
||||
{'1': 'Metrics', '3': 7, '4': 3, '5': 11, '6': '.api.CHMetric', '10': 'Metrics'},
|
||||
{'1': 'TargetTimeZone', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'KpiGroupName', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'KpiGroupName'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `FindKPIDataQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List findKPIDataQueryDescriptor = $convert.base64Decode(
|
||||
'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 = {
|
||||
'1': 'FindKPIDataResult',
|
||||
'2': [
|
||||
{'1': 'Series', '3': 1, '4': 3, '5': 11, '6': '.api.KpiDataSerie', '8': {}, '10': 'Series'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `FindKPIDataResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List findKPIDataResultDescriptor = $convert.base64Decode(
|
||||
'ChFGaW5kS1BJRGF0YVJlc3VsdBL3AQoGU2VyaWVzGAEgAygLMhEuYXBpLktwaURhdGFTZXJpZU'
|
||||
'LLAZJBxwEyI0pzb24gc2VyaWVzIGZvcm1hdHRlZCByZXN1bHQgZm9ybWF0Sp8BeyJTZXJpZXMi'
|
||||
'OiBbeyJOYW1lIjogIk5hbWUiLCAiVmFsdWVzIjogWyJBIiwgIkIiLCAiQyJdfSwgeyJOYW1lIj'
|
||||
'ogIlF1YW50aXR5IiwgIlZhbHVlcyI6IFsiMTIiLCAiOTkiLCAiNzQiXX0sIHsiTmFtZSI6ICJW'
|
||||
'b2x1bWUiLCAiVmFsdWVzIjogWyIzNCIsICIyMyIsICI2NSJdfV19UgZTZXJpZXM=');
|
||||
|
||||
@$core.Deprecated('Use extractKPIQueryDescriptor instead')
|
||||
const ExtractKPIQuery$json = {
|
||||
'1': 'ExtractKPIQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'UserId', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'UserId'},
|
||||
{'1': 'QueryType', '3': 3, '4': 1, '5': 14, '6': '.api.CHQueryType', '8': {}, '10': 'QueryType'},
|
||||
{'1': 'QueryBlock', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'QueryBlock'},
|
||||
{'1': 'EntityBlockFilters', '3': 5, '4': 3, '5': 11, '6': '.api.EntityBlockFilter', '10': 'EntityBlockFilters'},
|
||||
{'1': 'Filter', '3': 6, '4': 1, '5': 11, '6': '.api.CHFilter', '10': 'Filter'},
|
||||
{'1': 'Dimensions', '3': 7, '4': 3, '5': 11, '6': '.api.CHDimension', '10': 'Dimensions'},
|
||||
{'1': 'Metrics', '3': 8, '4': 3, '5': 11, '6': '.api.CHMetric', '10': 'Metrics'},
|
||||
{'1': 'TargetTimeZone', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||
{'1': 'KpiGroupName', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'KpiGroupName'},
|
||||
{'1': 'TargetDomain', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'TargetDomain'},
|
||||
{'1': 'TargetType', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'TargetType'},
|
||||
{'1': 'Fields', '3': 13, '4': 3, '5': 9, '10': 'Fields'},
|
||||
{'1': 'ListSeparator', '3': 14, '4': 1, '5': 9, '8': {}, '10': 'ListSeparator'},
|
||||
{'1': 'DecimalSeparator', '3': 15, '4': 1, '5': 9, '8': {}, '10': 'DecimalSeparator'},
|
||||
{'1': 'ColumnNames', '3': 16, '4': 3, '5': 9, '10': 'ColumnNames'},
|
||||
{'1': 'ColumnTranslationMaps', '3': 17, '4': 3, '5': 11, '6': '.api.ExtractKPIQuery.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
||||
{'1': 'FieldIdxLVDetailedQuantity', '3': 18, '4': 3, '5': 5, '10': 'FieldIdxLVDetailedQuantity'},
|
||||
{'1': 'ColumnFormats', '3': 19, '4': 3, '5': 11, '6': '.api.ExtractKPIQuery.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
||||
],
|
||||
'3': [ExtractKPIQuery_ColumnTranslationMapsEntry$json, ExtractKPIQuery_ColumnFormatsEntry$json],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use extractKPIQueryDescriptor instead')
|
||||
const ExtractKPIQuery_ColumnTranslationMapsEntry$json = {
|
||||
'1': 'ColumnTranslationMapsEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.api.TranslationMap', '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use extractKPIQueryDescriptor instead')
|
||||
const ExtractKPIQuery_ColumnFormatsEntry$json = {
|
||||
'1': 'ColumnFormatsEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 5, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.api.ExtractColumnFormat', '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `ExtractKPIQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List extractKPIQueryDescriptor = $convert.base64Decode(
|
||||
'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'
|
||||
'1uRm9ybWF0cxpdChpDb2x1bW5UcmFuc2xhdGlvbk1hcHNFbnRyeRIQCgNrZXkYASABKAlSA2tl'
|
||||
'eRIpCgV2YWx1ZRgCIAEoCzITLmFwaS5UcmFuc2xhdGlvbk1hcFIFdmFsdWU6AjgBGloKEkNvbH'
|
||||
'VtbkZvcm1hdHNFbnRyeRIQCgNrZXkYASABKAVSA2tleRIuCgV2YWx1ZRgCIAEoCzIYLmFwaS5F'
|
||||
'eHRyYWN0Q29sdW1uRm9ybWF0UgV2YWx1ZToCOAE6bJJBaQpn0gEGSGVhZGVy0gEGVXNlcklk0g'
|
||||
'EGRmllbGRz0gENTGlzdFNlcGFyYXRvctIBEERlY2ltYWxTZXBhcmF0b3LSAQpDb2x1bW5OYW1l'
|
||||
'0gEMVGFyZ2V0RG9tYWlu0gEKVGFyZ2V0VHlwZQ==');
|
||||
|
||||
@$core.Deprecated('Use extractKPIResultDescriptor instead')
|
||||
const ExtractKPIResult$json = {
|
||||
'1': 'ExtractKPIResult',
|
||||
'2': [
|
||||
{'1': 'WorkflowExecution', '3': 1, '4': 1, '5': 11, '6': '.api.WorkflowExecutionResult', '10': 'WorkflowExecution'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ExtractKPIResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List extractKPIResultDescriptor = $convert.base64Decode(
|
||||
'ChBFeHRyYWN0S1BJUmVzdWx0EkoKEVdvcmtmbG93RXhlY3V0aW9uGAEgASgLMhwuYXBpLldvcm'
|
||||
'tmbG93RXhlY3V0aW9uUmVzdWx0UhFXb3JrZmxvd0V4ZWN1dGlvbg==');
|
||||
|
||||
167
lib/clickhouseMetrics.pb.dart
Normal file
167
lib/clickhouseMetrics.pb.dart
Normal file
@@ -0,0 +1,167 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: clickhouseMetrics.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
class Metrics extends $pb.GeneratedMessage {
|
||||
factory Metrics({
|
||||
$fixnum.Int64? currentTime,
|
||||
$core.String? organisationID,
|
||||
$core.String? projectID,
|
||||
$core.String? entityService,
|
||||
$core.String? method,
|
||||
$core.String? userID,
|
||||
$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;
|
||||
}
|
||||
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')
|
||||
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
||||
..aOS(3, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(4, _omitFieldNames ? '' : 'EntityService', protoName: 'EntityService')
|
||||
..aOS(5, _omitFieldNames ? '' : 'Method', protoName: 'Method')
|
||||
..aOS(6, _omitFieldNames ? '' : 'UserID', protoName: 'UserID')
|
||||
..aOS(7, _omitFieldNames ? '' : 'UserMail', protoName: 'UserMail')
|
||||
..aOS(8, _omitFieldNames ? '' : 'RefID', protoName: 'RefID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$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(
|
||||
'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;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Metrics create() => Metrics._();
|
||||
Metrics createEmptyInstance() => create();
|
||||
static $pb.PbList<Metrics> createRepeated() => $pb.PbList<Metrics>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static Metrics getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Metrics>(create);
|
||||
static Metrics? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$fixnum.Int64 get currentTime => $_getI64(0);
|
||||
@$pb.TagNumber(1)
|
||||
set currentTime($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCurrentTime() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCurrentTime() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get organisationID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set organisationID($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasOrganisationID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearOrganisationID() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get projectID => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set projectID($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasProjectID() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearProjectID() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get entityService => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set entityService($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasEntityService() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearEntityService() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get method => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set method($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasMethod() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearMethod() => clearField(5);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$core.String get userID => $_getSZ(5);
|
||||
@$pb.TagNumber(6)
|
||||
set userID($core.String v) { $_setString(5, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasUserID() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearUserID() => clearField(6);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$core.String get userMail => $_getSZ(6);
|
||||
@$pb.TagNumber(7)
|
||||
set userMail($core.String v) { $_setString(6, v); }
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasUserMail() => $_has(6);
|
||||
@$pb.TagNumber(7)
|
||||
void clearUserMail() => clearField(7);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
$core.String get refID => $_getSZ(7);
|
||||
@$pb.TagNumber(8)
|
||||
set refID($core.String v) { $_setString(7, v); }
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasRefID() => $_has(7);
|
||||
@$pb.TagNumber(8)
|
||||
void clearRefID() => clearField(8);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/clickhouseMetrics.pbenum.dart
Normal file
11
lib/clickhouseMetrics.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: clickhouseMetrics.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
38
lib/clickhouseMetrics.pbjson.dart
Normal file
38
lib/clickhouseMetrics.pbjson.dart
Normal file
@@ -0,0 +1,38 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: clickhouseMetrics.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use metricsDescriptor instead')
|
||||
const Metrics$json = {
|
||||
'1': 'Metrics',
|
||||
'2': [
|
||||
{'1': 'CurrentTime', '3': 1, '4': 1, '5': 3, '10': 'CurrentTime'},
|
||||
{'1': 'OrganisationID', '3': 2, '4': 1, '5': 9, '10': 'OrganisationID'},
|
||||
{'1': 'ProjectID', '3': 3, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||
{'1': 'EntityService', '3': 4, '4': 1, '5': 9, '10': 'EntityService'},
|
||||
{'1': 'Method', '3': 5, '4': 1, '5': 9, '10': 'Method'},
|
||||
{'1': 'UserID', '3': 6, '4': 1, '5': 9, '10': 'UserID'},
|
||||
{'1': 'UserMail', '3': 7, '4': 1, '5': 9, '10': 'UserMail'},
|
||||
{'1': 'RefID', '3': 8, '4': 1, '5': 9, '10': 'RefID'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Metrics`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List metricsDescriptor = $convert.base64Decode(
|
||||
'CgdNZXRyaWNzEiAKC0N1cnJlbnRUaW1lGAEgASgDUgtDdXJyZW50VGltZRImCg5PcmdhbmlzYX'
|
||||
'Rpb25JRBgCIAEoCVIOT3JnYW5pc2F0aW9uSUQSHAoJUHJvamVjdElEGAMgASgJUglQcm9qZWN0'
|
||||
'SUQSJAoNRW50aXR5U2VydmljZRgEIAEoCVINRW50aXR5U2VydmljZRIWCgZNZXRob2QYBSABKA'
|
||||
'lSBk1ldGhvZBIWCgZVc2VySUQYBiABKAlSBlVzZXJJRBIaCghVc2VyTWFpbBgHIAEoCVIIVXNl'
|
||||
'ck1haWwSFAoFUmVmSUQYCCABKAlSBVJlZklE');
|
||||
|
||||
290
lib/client.pb.dart
Normal file
290
lib/client.pb.dart
Normal file
@@ -0,0 +1,290 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: client.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $28;
|
||||
|
||||
class OpenIDClient extends $pb.GeneratedMessage {
|
||||
factory OpenIDClient({
|
||||
$core.String? appName,
|
||||
$core.String? displayName,
|
||||
$core.String? rootURI,
|
||||
$core.Iterable<$core.String>? redirectURIs,
|
||||
$core.String? description,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (appName != null) {
|
||||
$result.appName = appName;
|
||||
}
|
||||
if (displayName != null) {
|
||||
$result.displayName = displayName;
|
||||
}
|
||||
if (rootURI != null) {
|
||||
$result.rootURI = rootURI;
|
||||
}
|
||||
if (redirectURIs != null) {
|
||||
$result.redirectURIs.addAll(redirectURIs);
|
||||
}
|
||||
if (description != null) {
|
||||
$result.description = description;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
OpenIDClient._() : super();
|
||||
factory OpenIDClient.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory OpenIDClient.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OpenIDClient', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'AppName', protoName: 'AppName')
|
||||
..aOS(2, _omitFieldNames ? '' : 'DisplayName', protoName: 'DisplayName')
|
||||
..aOS(3, _omitFieldNames ? '' : 'RootURI', protoName: 'RootURI')
|
||||
..pPS(4, _omitFieldNames ? '' : 'RedirectURIs', protoName: 'RedirectURIs')
|
||||
..aOS(5, _omitFieldNames ? '' : 'Description', protoName: 'Description')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
OpenIDClient clone() => OpenIDClient()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
OpenIDClient copyWith(void Function(OpenIDClient) updates) => super.copyWith((message) => updates(message as OpenIDClient)) as OpenIDClient;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static OpenIDClient create() => OpenIDClient._();
|
||||
OpenIDClient createEmptyInstance() => create();
|
||||
static $pb.PbList<OpenIDClient> createRepeated() => $pb.PbList<OpenIDClient>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static OpenIDClient getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OpenIDClient>(create);
|
||||
static OpenIDClient? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get appName => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set appName($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAppName() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAppName() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get displayName => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set displayName($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasDisplayName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearDisplayName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get rootURI => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set rootURI($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasRootURI() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearRootURI() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.List<$core.String> get redirectURIs => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get description => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set description($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasDescription() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearDescription() => clearField(5);
|
||||
}
|
||||
|
||||
class RegisterPlatformClientRequest extends $pb.GeneratedMessage {
|
||||
factory RegisterPlatformClientRequest({
|
||||
OpenIDClient? client,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
RegisterPlatformClientRequest._() : super();
|
||||
factory RegisterPlatformClientRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RegisterPlatformClientRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterPlatformClientRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<OpenIDClient>(1, _omitFieldNames ? '' : 'Client', protoName: 'Client', subBuilder: OpenIDClient.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPlatformClientRequest clone() => RegisterPlatformClientRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterPlatformClientRequest copyWith(void Function(RegisterPlatformClientRequest) updates) => super.copyWith((message) => updates(message as RegisterPlatformClientRequest)) as RegisterPlatformClientRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPlatformClientRequest create() => RegisterPlatformClientRequest._();
|
||||
RegisterPlatformClientRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterPlatformClientRequest> createRepeated() => $pb.PbList<RegisterPlatformClientRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterPlatformClientRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterPlatformClientRequest>(create);
|
||||
static RegisterPlatformClientRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
OpenIDClient get client => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set client(OpenIDClient v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClient() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClient() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
OpenIDClient ensureClient() => $_ensure(0);
|
||||
}
|
||||
|
||||
class RegisterClientRequest extends $pb.GeneratedMessage {
|
||||
factory RegisterClientRequest({
|
||||
$28.RequestOrganisationHeader? header,
|
||||
OpenIDClient? client,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (client != null) {
|
||||
$result.client = client;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
RegisterClientRequest._() : super();
|
||||
factory RegisterClientRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RegisterClientRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterClientRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestOrganisationHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestOrganisationHeader.create)
|
||||
..aOM<OpenIDClient>(2, _omitFieldNames ? '' : 'Client', protoName: 'Client', subBuilder: OpenIDClient.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterClientRequest clone() => RegisterClientRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterClientRequest copyWith(void Function(RegisterClientRequest) updates) => super.copyWith((message) => updates(message as RegisterClientRequest)) as RegisterClientRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterClientRequest create() => RegisterClientRequest._();
|
||||
RegisterClientRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterClientRequest> createRepeated() => $pb.PbList<RegisterClientRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterClientRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterClientRequest>(create);
|
||||
static RegisterClientRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestOrganisationHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestOrganisationHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestOrganisationHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
OpenIDClient get client => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set client(OpenIDClient v) { setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasClient() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearClient() => clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
OpenIDClient ensureClient() => $_ensure(1);
|
||||
}
|
||||
|
||||
class RegisterClientResult extends $pb.GeneratedMessage {
|
||||
factory RegisterClientResult({
|
||||
$core.String? clientID,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (clientID != null) {
|
||||
$result.clientID = clientID;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
RegisterClientResult._() : super();
|
||||
factory RegisterClientResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory RegisterClientResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterClientResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ClientID', protoName: 'ClientID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterClientResult clone() => RegisterClientResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
RegisterClientResult copyWith(void Function(RegisterClientResult) updates) => super.copyWith((message) => updates(message as RegisterClientResult)) as RegisterClientResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterClientResult create() => RegisterClientResult._();
|
||||
RegisterClientResult createEmptyInstance() => create();
|
||||
static $pb.PbList<RegisterClientResult> createRepeated() => $pb.PbList<RegisterClientResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static RegisterClientResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterClientResult>(create);
|
||||
static RegisterClientResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get clientID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set clientID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClientID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClientID() => clearField(1);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/client.pbenum.dart
Normal file
11
lib/client.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: client.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
79
lib/client.pbgrpc.dart
Normal file
79
lib/client.pbgrpc.dart
Normal file
@@ -0,0 +1,79 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: client.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'client.pb.dart' as $18;
|
||||
|
||||
export 'client.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ClientService')
|
||||
class ClientServiceClient extends $grpc.Client {
|
||||
static final _$registerPlatformClient = $grpc.ClientMethod<$18.RegisterPlatformClientRequest, $18.RegisterClientResult>(
|
||||
'/api.ClientService/RegisterPlatformClient',
|
||||
($18.RegisterPlatformClientRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $18.RegisterClientResult.fromBuffer(value));
|
||||
static final _$registerClient = $grpc.ClientMethod<$18.RegisterClientRequest, $18.RegisterClientResult>(
|
||||
'/api.ClientService/RegisterClient',
|
||||
($18.RegisterClientRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $18.RegisterClientResult.fromBuffer(value));
|
||||
|
||||
ClientServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$18.RegisterClientResult> registerPlatformClient($18.RegisterPlatformClientRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$registerPlatformClient, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$18.RegisterClientResult> registerClient($18.RegisterClientRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$registerClient, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ClientService')
|
||||
abstract class ClientServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ClientService';
|
||||
|
||||
ClientServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$18.RegisterPlatformClientRequest, $18.RegisterClientResult>(
|
||||
'RegisterPlatformClient',
|
||||
registerPlatformClient_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $18.RegisterPlatformClientRequest.fromBuffer(value),
|
||||
($18.RegisterClientResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$18.RegisterClientRequest, $18.RegisterClientResult>(
|
||||
'RegisterClient',
|
||||
registerClient_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $18.RegisterClientRequest.fromBuffer(value),
|
||||
($18.RegisterClientResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$18.RegisterClientResult> registerPlatformClient_Pre($grpc.ServiceCall call, $async.Future<$18.RegisterPlatformClientRequest> request) async {
|
||||
return registerPlatformClient(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$18.RegisterClientResult> registerClient_Pre($grpc.ServiceCall call, $async.Future<$18.RegisterClientRequest> request) async {
|
||||
return registerClient(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$18.RegisterClientResult> registerPlatformClient($grpc.ServiceCall call, $18.RegisterPlatformClientRequest request);
|
||||
$async.Future<$18.RegisterClientResult> registerClient($grpc.ServiceCall call, $18.RegisterClientRequest request);
|
||||
}
|
||||
87
lib/client.pbjson.dart
Normal file
87
lib/client.pbjson.dart
Normal file
@@ -0,0 +1,87 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: client.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use openIDClientDescriptor instead')
|
||||
const OpenIDClient$json = {
|
||||
'1': 'OpenIDClient',
|
||||
'2': [
|
||||
{'1': 'AppName', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'AppName'},
|
||||
{'1': 'DisplayName', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DisplayName'},
|
||||
{'1': 'RootURI', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'RootURI'},
|
||||
{'1': 'RedirectURIs', '3': 4, '4': 3, '5': 9, '8': {}, '10': 'RedirectURIs'},
|
||||
{'1': 'Description', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'Description'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `OpenIDClient`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List openIDClientDescriptor = $convert.base64Decode(
|
||||
'CgxPcGVuSURDbGllbnQSzAEKB0FwcE5hbWUYASABKAlCsQGSQZwBMntUaGUgYXBwbGljYXRpb2'
|
||||
'4gbmFtZSBtdXN0IGJlIGxvd2VyY2FzZSBhbmQgY2FuIG9ubHkgY29udGFpbiBsZXR0ZXJzIGFu'
|
||||
'ZCBudW1iZXJzLiBJdCBtdXN0IGJlIHVuaXF1ZSB3aXRoaW4gdGhlIG9yZ2FuaXNhdGlvbi5KEi'
|
||||
'JyZWZsZXh2aXNpYmlsaXR5IooBCF5bYS16XSsk+kIOcgwQATIIXlthLXpdKyRSB0FwcE5hbWUS'
|
||||
'ZwoLRGlzcGxheU5hbWUYAiABKAlCRZJBOzIkVGhlIGRpc3BsYXkgbmFtZSBvZiB0aGUgYXBwbG'
|
||||
'ljYXRpb24uShMiUmVmbGV4IFZpc2liaWxpdHki+kIEcgIQAVILRGlzcGxheU5hbWUSWwoHUm9v'
|
||||
'dFVSSRgDIAEoCUJBkkE3MiBUaGUgcm9vdCBVUkkgb2YgdGhlIGFwcGxpY2F0aW9uLkoTImh0dH'
|
||||
'BzOi8vbG9jYWxob3N0IvpCBHICEAFSB1Jvb3RVUkkSbQoMUmVkaXJlY3RVUklzGAQgAygJQkmS'
|
||||
'QUYyLVRoZSBhbGxvd2VkIHJlZGlyZWN0IFVSSXMgb2YgdGhlIGFwcGxpY2F0aW9uLkoVImh0dH'
|
||||
'BzOi8vbG9jYWxob3N0LyoiUgxSZWRpcmVjdFVSSXMSgAEKC0Rlc2NyaXB0aW9uGAUgASgJQl6S'
|
||||
'QVsyI1RoZSBkZXNjcmlwdGlvbiBvZiB0aGUgYXBwbGljYXRpb24uSjQiUmVmbGV4IFZpc2liaW'
|
||||
'xpdHkgYXBwbGljYXRpb24gZnJvbSBSZWZsZXggUGxhdGZvcm0iUgtEZXNjcmlwdGlvbjonkkEk'
|
||||
'CiLSAQdBcHBOYW1l0gEHUm9vdFVSSdIBC0Rpc3BsYXlOYW1l');
|
||||
|
||||
@$core.Deprecated('Use registerPlatformClientRequestDescriptor instead')
|
||||
const RegisterPlatformClientRequest$json = {
|
||||
'1': 'RegisterPlatformClientRequest',
|
||||
'2': [
|
||||
{'1': 'Client', '3': 1, '4': 1, '5': 11, '6': '.api.OpenIDClient', '8': {}, '10': 'Client'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterPlatformClientRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerPlatformClientRequestDescriptor = $convert.base64Decode(
|
||||
'Ch1SZWdpc3RlclBsYXRmb3JtQ2xpZW50UmVxdWVzdBIzCgZDbGllbnQYASABKAsyES5hcGkuT3'
|
||||
'BlbklEQ2xpZW50Qgj6QgWKAQIQAVIGQ2xpZW50Og6SQQsKCdIBBkNsaWVudA==');
|
||||
|
||||
@$core.Deprecated('Use registerClientRequestDescriptor instead')
|
||||
const RegisterClientRequest$json = {
|
||||
'1': 'RegisterClientRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestOrganisationHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'Client', '3': 2, '4': 1, '5': 11, '6': '.api.OpenIDClient', '8': {}, '10': 'Client'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterClientRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerClientRequestDescriptor = $convert.base64Decode(
|
||||
'ChVSZWdpc3RlckNsaWVudFJlcXVlc3QSQAoGSGVhZGVyGAEgASgLMh4uYXBpLlJlcXVlc3RPcm'
|
||||
'dhbmlzYXRpb25IZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISMwoGQ2xpZW50GAIgASgLMhEuYXBp'
|
||||
'Lk9wZW5JRENsaWVudEII+kIFigECEAFSBkNsaWVudDoXkkEUChLSAQZIZWFkZXLSAQZDbGllbn'
|
||||
'Q=');
|
||||
|
||||
@$core.Deprecated('Use registerClientResultDescriptor instead')
|
||||
const RegisterClientResult$json = {
|
||||
'1': 'RegisterClientResult',
|
||||
'2': [
|
||||
{'1': 'ClientID', '3': 1, '4': 1, '5': 9, '10': 'ClientID'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `RegisterClientResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List registerClientResultDescriptor = $convert.base64Decode(
|
||||
'ChRSZWdpc3RlckNsaWVudFJlc3VsdBIaCghDbGllbnRJRBgBIAEoCVIIQ2xpZW50SUQ=');
|
||||
|
||||
265
lib/collabClickhouseStatement.pb.dart
Normal file
265
lib/collabClickhouseStatement.pb.dart
Normal file
@@ -0,0 +1,265 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabClickhouseStatement.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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:fixnum/fixnum.dart' as $fixnum;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'claim.pb.dart' as $87;
|
||||
import 'metadata.pb.dart' as $72;
|
||||
|
||||
/// ClickHouseInput Proto message for clickhouse streaming process
|
||||
class CollabClickHouseInput extends $pb.GeneratedMessage {
|
||||
factory CollabClickHouseInput({
|
||||
CollabClickhouseElements? clickhouseElements,
|
||||
$core.Iterable<$72.MetadatasToApply>? metadatasToApply,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (clickhouseElements != null) {
|
||||
$result.clickhouseElements = clickhouseElements;
|
||||
}
|
||||
if (metadatasToApply != null) {
|
||||
$result.metadatasToApply.addAll(metadatasToApply);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CollabClickHouseInput._() : super();
|
||||
factory CollabClickHouseInput.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CollabClickHouseInput.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CollabClickHouseInput', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<CollabClickhouseElements>(1, _omitFieldNames ? '' : 'ClickhouseElements', protoName: 'ClickhouseElements', subBuilder: CollabClickhouseElements.create)
|
||||
..pc<$72.MetadatasToApply>(2, _omitFieldNames ? '' : 'MetadatasToApply', $pb.PbFieldType.PM, protoName: 'MetadatasToApply', subBuilder: $72.MetadatasToApply.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickHouseInput clone() => CollabClickHouseInput()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickHouseInput copyWith(void Function(CollabClickHouseInput) updates) => super.copyWith((message) => updates(message as CollabClickHouseInput)) as CollabClickHouseInput;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickHouseInput create() => CollabClickHouseInput._();
|
||||
CollabClickHouseInput createEmptyInstance() => create();
|
||||
static $pb.PbList<CollabClickHouseInput> createRepeated() => $pb.PbList<CollabClickHouseInput>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickHouseInput getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollabClickHouseInput>(create);
|
||||
static CollabClickHouseInput? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
CollabClickhouseElements get clickhouseElements => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set clickhouseElements(CollabClickhouseElements v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClickhouseElements() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClickhouseElements() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
CollabClickhouseElements ensureClickhouseElements() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<$72.MetadatasToApply> get metadatasToApply => $_getList(1);
|
||||
}
|
||||
|
||||
enum CollabClickhouseElement_Content {
|
||||
claim,
|
||||
notSet
|
||||
}
|
||||
|
||||
class CollabClickhouseElement extends $pb.GeneratedMessage {
|
||||
factory CollabClickhouseElement({
|
||||
$87.Claim? claim,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (claim != null) {
|
||||
$result.claim = claim;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CollabClickhouseElement._() : super();
|
||||
factory CollabClickhouseElement.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CollabClickhouseElement.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static const $core.Map<$core.int, CollabClickhouseElement_Content> _CollabClickhouseElement_ContentByTag = {
|
||||
1 : CollabClickhouseElement_Content.claim,
|
||||
0 : CollabClickhouseElement_Content.notSet
|
||||
};
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CollabClickhouseElement', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..oo(0, [1])
|
||||
..aOM<$87.Claim>(1, _omitFieldNames ? '' : 'Claim', protoName: 'Claim', subBuilder: $87.Claim.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickhouseElement clone() => CollabClickhouseElement()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickhouseElement copyWith(void Function(CollabClickhouseElement) updates) => super.copyWith((message) => updates(message as CollabClickhouseElement)) as CollabClickhouseElement;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickhouseElement create() => CollabClickhouseElement._();
|
||||
CollabClickhouseElement createEmptyInstance() => create();
|
||||
static $pb.PbList<CollabClickhouseElement> createRepeated() => $pb.PbList<CollabClickhouseElement>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickhouseElement getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollabClickhouseElement>(create);
|
||||
static CollabClickhouseElement? _defaultInstance;
|
||||
|
||||
CollabClickhouseElement_Content whichContent() => _CollabClickhouseElement_ContentByTag[$_whichOneof(0)]!;
|
||||
void clearContent() => clearField($_whichOneof(0));
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$87.Claim get claim => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set claim($87.Claim v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasClaim() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearClaim() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$87.Claim ensureClaim() => $_ensure(0);
|
||||
}
|
||||
|
||||
class CollabClickhouseElements extends $pb.GeneratedMessage {
|
||||
factory CollabClickhouseElements({
|
||||
$core.Iterable<CollabClickhouseElement>? clickhouseElements,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (clickhouseElements != null) {
|
||||
$result.clickhouseElements.addAll(clickhouseElements);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CollabClickhouseElements._() : super();
|
||||
factory CollabClickhouseElements.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CollabClickhouseElements.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CollabClickhouseElements', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pc<CollabClickhouseElement>(1, _omitFieldNames ? '' : 'ClickhouseElements', $pb.PbFieldType.PM, protoName: 'ClickhouseElements', subBuilder: CollabClickhouseElement.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickhouseElements clone() => CollabClickhouseElements()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabClickhouseElements copyWith(void Function(CollabClickhouseElements) updates) => super.copyWith((message) => updates(message as CollabClickhouseElements)) as CollabClickhouseElements;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickhouseElements create() => CollabClickhouseElements._();
|
||||
CollabClickhouseElements createEmptyInstance() => create();
|
||||
static $pb.PbList<CollabClickhouseElements> createRepeated() => $pb.PbList<CollabClickhouseElements>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabClickhouseElements getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollabClickhouseElements>(create);
|
||||
static CollabClickhouseElements? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.List<CollabClickhouseElement> get clickhouseElements => $_getList(0);
|
||||
}
|
||||
|
||||
/// CollabCheckpointData Proto message for clickhouse streaming process
|
||||
class CollabCheckpointData extends $pb.GeneratedMessage {
|
||||
factory CollabCheckpointData({
|
||||
$fixnum.Int64? idCheckpoint,
|
||||
$core.String? project,
|
||||
$core.Iterable<CollabClickHouseInput>? clickHouseInput,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (idCheckpoint != null) {
|
||||
$result.idCheckpoint = idCheckpoint;
|
||||
}
|
||||
if (project != null) {
|
||||
$result.project = project;
|
||||
}
|
||||
if (clickHouseInput != null) {
|
||||
$result.clickHouseInput.addAll(clickHouseInput);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
CollabCheckpointData._() : super();
|
||||
factory CollabCheckpointData.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory CollabCheckpointData.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CollabCheckpointData', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aInt64(1, _omitFieldNames ? '' : 'IdCheckpoint', protoName: 'IdCheckpoint')
|
||||
..aOS(2, _omitFieldNames ? '' : 'Project', protoName: 'Project')
|
||||
..pc<CollabClickHouseInput>(3, _omitFieldNames ? '' : 'ClickHouseInput', $pb.PbFieldType.PM, protoName: 'ClickHouseInput', subBuilder: CollabClickHouseInput.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabCheckpointData clone() => CollabCheckpointData()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
CollabCheckpointData copyWith(void Function(CollabCheckpointData) updates) => super.copyWith((message) => updates(message as CollabCheckpointData)) as CollabCheckpointData;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabCheckpointData create() => CollabCheckpointData._();
|
||||
CollabCheckpointData createEmptyInstance() => create();
|
||||
static $pb.PbList<CollabCheckpointData> createRepeated() => $pb.PbList<CollabCheckpointData>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static CollabCheckpointData getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CollabCheckpointData>(create);
|
||||
static CollabCheckpointData? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$fixnum.Int64 get idCheckpoint => $_getI64(0);
|
||||
@$pb.TagNumber(1)
|
||||
set idCheckpoint($fixnum.Int64 v) { $_setInt64(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasIdCheckpoint() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearIdCheckpoint() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get project => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set project($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasProject() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearProject() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.List<CollabClickHouseInput> get clickHouseInput => $_getList(2);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/collabClickhouseStatement.pbenum.dart
Normal file
11
lib/collabClickhouseStatement.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabClickhouseStatement.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
76
lib/collabClickhouseStatement.pbjson.dart
Normal file
76
lib/collabClickhouseStatement.pbjson.dart
Normal file
@@ -0,0 +1,76 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabClickhouseStatement.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use collabClickHouseInputDescriptor instead')
|
||||
const CollabClickHouseInput$json = {
|
||||
'1': 'CollabClickHouseInput',
|
||||
'2': [
|
||||
{'1': 'ClickhouseElements', '3': 1, '4': 1, '5': 11, '6': '.api.CollabClickhouseElements', '10': 'ClickhouseElements'},
|
||||
{'1': 'MetadatasToApply', '3': 2, '4': 3, '5': 11, '6': '.api.MetadatasToApply', '10': 'MetadatasToApply'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CollabClickHouseInput`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List collabClickHouseInputDescriptor = $convert.base64Decode(
|
||||
'ChVDb2xsYWJDbGlja0hvdXNlSW5wdXQSTQoSQ2xpY2tob3VzZUVsZW1lbnRzGAEgASgLMh0uYX'
|
||||
'BpLkNvbGxhYkNsaWNraG91c2VFbGVtZW50c1ISQ2xpY2tob3VzZUVsZW1lbnRzEkEKEE1ldGFk'
|
||||
'YXRhc1RvQXBwbHkYAiADKAsyFS5hcGkuTWV0YWRhdGFzVG9BcHBseVIQTWV0YWRhdGFzVG9BcH'
|
||||
'BseQ==');
|
||||
|
||||
@$core.Deprecated('Use collabClickhouseElementDescriptor instead')
|
||||
const CollabClickhouseElement$json = {
|
||||
'1': 'CollabClickhouseElement',
|
||||
'2': [
|
||||
{'1': 'Claim', '3': 1, '4': 1, '5': 11, '6': '.api.Claim', '9': 0, '10': 'Claim'},
|
||||
],
|
||||
'8': [
|
||||
{'1': 'Content'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CollabClickhouseElement`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List collabClickhouseElementDescriptor = $convert.base64Decode(
|
||||
'ChdDb2xsYWJDbGlja2hvdXNlRWxlbWVudBIiCgVDbGFpbRgBIAEoCzIKLmFwaS5DbGFpbUgAUg'
|
||||
'VDbGFpbUIJCgdDb250ZW50');
|
||||
|
||||
@$core.Deprecated('Use collabClickhouseElementsDescriptor instead')
|
||||
const CollabClickhouseElements$json = {
|
||||
'1': 'CollabClickhouseElements',
|
||||
'2': [
|
||||
{'1': 'ClickhouseElements', '3': 1, '4': 3, '5': 11, '6': '.api.CollabClickhouseElement', '10': 'ClickhouseElements'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CollabClickhouseElements`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List collabClickhouseElementsDescriptor = $convert.base64Decode(
|
||||
'ChhDb2xsYWJDbGlja2hvdXNlRWxlbWVudHMSTAoSQ2xpY2tob3VzZUVsZW1lbnRzGAEgAygLMh'
|
||||
'wuYXBpLkNvbGxhYkNsaWNraG91c2VFbGVtZW50UhJDbGlja2hvdXNlRWxlbWVudHM=');
|
||||
|
||||
@$core.Deprecated('Use collabCheckpointDataDescriptor instead')
|
||||
const CollabCheckpointData$json = {
|
||||
'1': 'CollabCheckpointData',
|
||||
'2': [
|
||||
{'1': 'IdCheckpoint', '3': 1, '4': 1, '5': 3, '10': 'IdCheckpoint'},
|
||||
{'1': 'Project', '3': 2, '4': 1, '5': 9, '10': 'Project'},
|
||||
{'1': 'ClickHouseInput', '3': 3, '4': 3, '5': 11, '6': '.api.CollabClickHouseInput', '10': 'ClickHouseInput'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CollabCheckpointData`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List collabCheckpointDataDescriptor = $convert.base64Decode(
|
||||
'ChRDb2xsYWJDaGVja3BvaW50RGF0YRIiCgxJZENoZWNrcG9pbnQYASABKANSDElkQ2hlY2twb2'
|
||||
'ludBIYCgdQcm9qZWN0GAIgASgJUgdQcm9qZWN0EkQKD0NsaWNrSG91c2VJbnB1dBgDIAMoCzIa'
|
||||
'LmFwaS5Db2xsYWJDbGlja0hvdXNlSW5wdXRSD0NsaWNrSG91c2VJbnB1dA==');
|
||||
|
||||
573
lib/collabShared.pb.dart
Normal file
573
lib/collabShared.pb.dart
Normal file
@@ -0,0 +1,573 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabShared.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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.pbenum.dart';
|
||||
import 'google/protobuf/struct.pb.dart' as $65;
|
||||
import 'shared.pb.dart' as $28;
|
||||
import 'shared.pbenum.dart' as $28;
|
||||
|
||||
export 'collabShared.pbenum.dart';
|
||||
|
||||
class ClaimStatusDef extends $pb.GeneratedMessage {
|
||||
factory ClaimStatusDef({
|
||||
$28.ClaimStatus? statusCode,
|
||||
$core.String? date,
|
||||
$28.DateTime? actualDate,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (statusCode != null) {
|
||||
$result.statusCode = statusCode;
|
||||
}
|
||||
if (date != null) {
|
||||
$result.date = date;
|
||||
}
|
||||
if (actualDate != null) {
|
||||
$result.actualDate = actualDate;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ClaimStatusDef._() : super();
|
||||
factory ClaimStatusDef.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ClaimStatusDef.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimStatusDef', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$28.ClaimStatus>(1, _omitFieldNames ? '' : 'StatusCode', $pb.PbFieldType.OE, protoName: 'StatusCode', defaultOrMaker: $28.ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: $28.ClaimStatus.valueOf, enumValues: $28.ClaimStatus.values)
|
||||
..aOS(2, _omitFieldNames ? '' : 'Date', protoName: 'Date')
|
||||
..aOM<$28.DateTime>(3, _omitFieldNames ? '' : 'ActualDate', protoName: 'ActualDate', subBuilder: $28.DateTime.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ClaimStatusDef clone() => ClaimStatusDef()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ClaimStatusDef copyWith(void Function(ClaimStatusDef) updates) => super.copyWith((message) => updates(message as ClaimStatusDef)) as ClaimStatusDef;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimStatusDef create() => ClaimStatusDef._();
|
||||
ClaimStatusDef createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimStatusDef> createRepeated() => $pb.PbList<ClaimStatusDef>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimStatusDef getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimStatusDef>(create);
|
||||
static ClaimStatusDef? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.ClaimStatus get statusCode => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set statusCode($28.ClaimStatus v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasStatusCode() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearStatusCode() => clearField(1);
|
||||
|
||||
/// This date is only a string as it is always given by system
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get date => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set date($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasDate() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearDate() => clearField(2);
|
||||
|
||||
/// Status effective date. Set by the event's RefDate that triggered the status change.
|
||||
@$pb.TagNumber(3)
|
||||
$28.DateTime get actualDate => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set actualDate($28.DateTime v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasActualDate() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearActualDate() => clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
$28.DateTime ensureActualDate() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ClaimStatusStruct extends $pb.GeneratedMessage {
|
||||
factory ClaimStatusStruct({
|
||||
ClaimStatusDef? current,
|
||||
$core.Iterable<ClaimStatusDef>? history,
|
||||
$core.String? creationDate,
|
||||
$core.int? version,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (current != null) {
|
||||
$result.current = current;
|
||||
}
|
||||
if (history != null) {
|
||||
$result.history.addAll(history);
|
||||
}
|
||||
if (creationDate != null) {
|
||||
$result.creationDate = creationDate;
|
||||
}
|
||||
if (version != null) {
|
||||
$result.version = version;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ClaimStatusStruct._() : super();
|
||||
factory ClaimStatusStruct.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ClaimStatusStruct.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimStatusStruct', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<ClaimStatusDef>(1, _omitFieldNames ? '' : 'Current', protoName: 'Current', subBuilder: ClaimStatusDef.create)
|
||||
..pc<ClaimStatusDef>(2, _omitFieldNames ? '' : 'History', $pb.PbFieldType.PM, protoName: 'History', subBuilder: ClaimStatusDef.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'CreationDate', protoName: 'CreationDate')
|
||||
..a<$core.int>(4, _omitFieldNames ? '' : 'Version', $pb.PbFieldType.OU3, protoName: 'Version')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ClaimStatusStruct clone() => ClaimStatusStruct()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ClaimStatusStruct copyWith(void Function(ClaimStatusStruct) updates) => super.copyWith((message) => updates(message as ClaimStatusStruct)) as ClaimStatusStruct;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimStatusStruct create() => ClaimStatusStruct._();
|
||||
ClaimStatusStruct createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimStatusStruct> createRepeated() => $pb.PbList<ClaimStatusStruct>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimStatusStruct getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimStatusStruct>(create);
|
||||
static ClaimStatusStruct? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
ClaimStatusDef get current => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set current(ClaimStatusDef v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasCurrent() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearCurrent() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
ClaimStatusDef ensureCurrent() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<ClaimStatusDef> get history => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get creationDate => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set creationDate($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasCreationDate() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearCreationDate() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.int get version => $_getIZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set version($core.int v) { $_setUnsignedInt32(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasVersion() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearVersion() => clearField(4);
|
||||
}
|
||||
|
||||
class WindowedNotif extends $pb.GeneratedMessage {
|
||||
factory WindowedNotif({
|
||||
ListNotifChanges? listNotifChanges,
|
||||
$core.Iterable<UserMails>? userMails,
|
||||
$core.String? jsonModel,
|
||||
$core.String? languageCode,
|
||||
$core.String? htmlBody,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (listNotifChanges != null) {
|
||||
$result.listNotifChanges = listNotifChanges;
|
||||
}
|
||||
if (userMails != null) {
|
||||
$result.userMails.addAll(userMails);
|
||||
}
|
||||
if (jsonModel != null) {
|
||||
$result.jsonModel = jsonModel;
|
||||
}
|
||||
if (languageCode != null) {
|
||||
$result.languageCode = languageCode;
|
||||
}
|
||||
if (htmlBody != null) {
|
||||
$result.htmlBody = htmlBody;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
WindowedNotif._() : super();
|
||||
factory WindowedNotif.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory WindowedNotif.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'WindowedNotif', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<ListNotifChanges>(1, _omitFieldNames ? '' : 'ListNotifChanges', protoName: 'ListNotifChanges', subBuilder: ListNotifChanges.create)
|
||||
..pc<UserMails>(2, _omitFieldNames ? '' : 'UserMails', $pb.PbFieldType.PM, protoName: 'UserMails', subBuilder: UserMails.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'JsonModel', protoName: 'JsonModel')
|
||||
..aOS(4, _omitFieldNames ? '' : 'languageCode', protoName: 'languageCode')
|
||||
..aOS(5, _omitFieldNames ? '' : 'HtmlBody', protoName: 'HtmlBody')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
WindowedNotif clone() => WindowedNotif()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
WindowedNotif copyWith(void Function(WindowedNotif) updates) => super.copyWith((message) => updates(message as WindowedNotif)) as WindowedNotif;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static WindowedNotif create() => WindowedNotif._();
|
||||
WindowedNotif createEmptyInstance() => create();
|
||||
static $pb.PbList<WindowedNotif> createRepeated() => $pb.PbList<WindowedNotif>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static WindowedNotif getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<WindowedNotif>(create);
|
||||
static WindowedNotif? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
ListNotifChanges get listNotifChanges => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set listNotifChanges(ListNotifChanges v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasListNotifChanges() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearListNotifChanges() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
ListNotifChanges ensureListNotifChanges() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.List<UserMails> get userMails => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get jsonModel => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set jsonModel($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasJsonModel() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearJsonModel() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get languageCode => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set languageCode($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLanguageCode() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLanguageCode() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get htmlBody => $_getSZ(4);
|
||||
@$pb.TagNumber(5)
|
||||
set htmlBody($core.String v) { $_setString(4, v); }
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasHtmlBody() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearHtmlBody() => clearField(5);
|
||||
}
|
||||
|
||||
class UserMails extends $pb.GeneratedMessage {
|
||||
factory UserMails({
|
||||
$core.String? mail,
|
||||
$core.String? languageCode,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (mail != null) {
|
||||
$result.mail = mail;
|
||||
}
|
||||
if (languageCode != null) {
|
||||
$result.languageCode = languageCode;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
UserMails._() : super();
|
||||
factory UserMails.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory UserMails.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UserMails', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'mail')
|
||||
..aOS(2, _omitFieldNames ? '' : 'languageCode', protoName: 'languageCode')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
UserMails clone() => UserMails()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
UserMails copyWith(void Function(UserMails) updates) => super.copyWith((message) => updates(message as UserMails)) as UserMails;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UserMails create() => UserMails._();
|
||||
UserMails createEmptyInstance() => create();
|
||||
static $pb.PbList<UserMails> createRepeated() => $pb.PbList<UserMails>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static UserMails getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UserMails>(create);
|
||||
static UserMails? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get mail => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set mail($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasMail() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearMail() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get languageCode => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set languageCode($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasLanguageCode() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearLanguageCode() => clearField(2);
|
||||
}
|
||||
|
||||
class ListNotifChanges extends $pb.GeneratedMessage {
|
||||
factory ListNotifChanges({
|
||||
$core.String? projectID,
|
||||
$core.String? visibilityURI,
|
||||
$core.String? entityType,
|
||||
$core.String? entityRefID,
|
||||
$core.Iterable<NotifChanges>? notifChanges,
|
||||
$65.Struct? tags,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (projectID != null) {
|
||||
$result.projectID = projectID;
|
||||
}
|
||||
if (visibilityURI != null) {
|
||||
$result.visibilityURI = visibilityURI;
|
||||
}
|
||||
if (entityType != null) {
|
||||
$result.entityType = entityType;
|
||||
}
|
||||
if (entityRefID != null) {
|
||||
$result.entityRefID = entityRefID;
|
||||
}
|
||||
if (notifChanges != null) {
|
||||
$result.notifChanges.addAll(notifChanges);
|
||||
}
|
||||
if (tags != null) {
|
||||
$result.tags = tags;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ListNotifChanges._() : super();
|
||||
factory ListNotifChanges.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ListNotifChanges.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListNotifChanges', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'VisibilityURI', protoName: 'VisibilityURI')
|
||||
..aOS(3, _omitFieldNames ? '' : 'EntityType', protoName: 'EntityType')
|
||||
..aOS(4, _omitFieldNames ? '' : 'EntityRefID', protoName: 'EntityRefID')
|
||||
..pc<NotifChanges>(5, _omitFieldNames ? '' : 'NotifChanges', $pb.PbFieldType.PM, protoName: 'NotifChanges', subBuilder: NotifChanges.create)
|
||||
..aOM<$65.Struct>(6, _omitFieldNames ? '' : 'Tags', protoName: 'Tags', subBuilder: $65.Struct.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListNotifChanges clone() => ListNotifChanges()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ListNotifChanges copyWith(void Function(ListNotifChanges) updates) => super.copyWith((message) => updates(message as ListNotifChanges)) as ListNotifChanges;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListNotifChanges create() => ListNotifChanges._();
|
||||
ListNotifChanges createEmptyInstance() => create();
|
||||
static $pb.PbList<ListNotifChanges> createRepeated() => $pb.PbList<ListNotifChanges>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ListNotifChanges getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListNotifChanges>(create);
|
||||
static ListNotifChanges? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get projectID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set projectID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasProjectID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearProjectID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get visibilityURI => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set visibilityURI($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasVisibilityURI() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearVisibilityURI() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get entityType => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set entityType($core.String v) { $_setString(2, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasEntityType() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearEntityType() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get entityRefID => $_getSZ(3);
|
||||
@$pb.TagNumber(4)
|
||||
set entityRefID($core.String v) { $_setString(3, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasEntityRefID() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearEntityRefID() => clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.List<NotifChanges> get notifChanges => $_getList(4);
|
||||
|
||||
@$pb.TagNumber(6)
|
||||
$65.Struct get tags => $_getN(5);
|
||||
@$pb.TagNumber(6)
|
||||
set tags($65.Struct v) { setField(6, v); }
|
||||
@$pb.TagNumber(6)
|
||||
$core.bool hasTags() => $_has(5);
|
||||
@$pb.TagNumber(6)
|
||||
void clearTags() => clearField(6);
|
||||
@$pb.TagNumber(6)
|
||||
$65.Struct ensureTags() => $_ensure(5);
|
||||
}
|
||||
|
||||
class NotifChanges extends $pb.GeneratedMessage {
|
||||
factory NotifChanges({
|
||||
$28.DateTime? refDate,
|
||||
$core.String? userName,
|
||||
NotifTypeEnum? notificationType,
|
||||
$65.Struct? details,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (refDate != null) {
|
||||
$result.refDate = refDate;
|
||||
}
|
||||
if (userName != null) {
|
||||
$result.userName = userName;
|
||||
}
|
||||
if (notificationType != null) {
|
||||
$result.notificationType = notificationType;
|
||||
}
|
||||
if (details != null) {
|
||||
$result.details = details;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
NotifChanges._() : super();
|
||||
factory NotifChanges.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory NotifChanges.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NotifChanges', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.DateTime>(1, _omitFieldNames ? '' : 'RefDate', protoName: 'RefDate', subBuilder: $28.DateTime.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'UserName', protoName: 'UserName')
|
||||
..e<NotifTypeEnum>(3, _omitFieldNames ? '' : 'NotificationType', $pb.PbFieldType.OE, protoName: 'NotificationType', defaultOrMaker: NotifTypeEnum.NOTIF_TYPE_UNKNOWN, valueOf: NotifTypeEnum.valueOf, enumValues: NotifTypeEnum.values)
|
||||
..aOM<$65.Struct>(4, _omitFieldNames ? '' : 'Details', protoName: 'Details', subBuilder: $65.Struct.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
NotifChanges clone() => NotifChanges()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
NotifChanges copyWith(void Function(NotifChanges) updates) => super.copyWith((message) => updates(message as NotifChanges)) as NotifChanges;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static NotifChanges create() => NotifChanges._();
|
||||
NotifChanges createEmptyInstance() => create();
|
||||
static $pb.PbList<NotifChanges> createRepeated() => $pb.PbList<NotifChanges>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static NotifChanges getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NotifChanges>(create);
|
||||
static NotifChanges? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.DateTime get refDate => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set refDate($28.DateTime v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasRefDate() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearRefDate() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.DateTime ensureRefDate() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get userName => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set userName($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasUserName() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearUserName() => clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
NotifTypeEnum get notificationType => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set notificationType(NotifTypeEnum v) { setField(3, v); }
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasNotificationType() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearNotificationType() => clearField(3);
|
||||
|
||||
@$pb.TagNumber(4)
|
||||
$65.Struct get details => $_getN(3);
|
||||
@$pb.TagNumber(4)
|
||||
set details($65.Struct v) { setField(4, v); }
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasDetails() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearDetails() => clearField(4);
|
||||
@$pb.TagNumber(4)
|
||||
$65.Struct ensureDetails() => $_ensure(3);
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
48
lib/collabShared.pbenum.dart
Normal file
48
lib/collabShared.pbenum.dart
Normal file
@@ -0,0 +1,48 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabShared.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class NotifTypeEnum extends $pb.ProtobufEnum {
|
||||
static const NotifTypeEnum NOTIF_TYPE_UNKNOWN = NotifTypeEnum._(0, _omitEnumNames ? '' : 'NOTIF_TYPE_UNKNOWN');
|
||||
static const NotifTypeEnum NOTIF_TYPE_COMMENT = NotifTypeEnum._(1, _omitEnumNames ? '' : 'NOTIF_TYPE_COMMENT');
|
||||
static const NotifTypeEnum NOTIF_TYPE_STATUS = NotifTypeEnum._(2, _omitEnumNames ? '' : 'NOTIF_TYPE_STATUS');
|
||||
static const NotifTypeEnum NOTIF_TYPE_ATTACHMENT_ADDED = NotifTypeEnum._(3, _omitEnumNames ? '' : 'NOTIF_TYPE_ATTACHMENT_ADDED');
|
||||
static const NotifTypeEnum NOTIF_TYPE_ATTACHMENT_DELETED = NotifTypeEnum._(4, _omitEnumNames ? '' : 'NOTIF_TYPE_ATTACHMENT_DELETED');
|
||||
static const NotifTypeEnum NOTIF_TYPE_CREATION = NotifTypeEnum._(5, _omitEnumNames ? '' : 'NOTIF_TYPE_CREATION');
|
||||
static const NotifTypeEnum NOTIF_TYPE_DELETION = NotifTypeEnum._(6, _omitEnumNames ? '' : 'NOTIF_TYPE_DELETION');
|
||||
static const NotifTypeEnum NOTIF_TYPE_CONTACT = NotifTypeEnum._(7, _omitEnumNames ? '' : 'NOTIF_TYPE_CONTACT');
|
||||
static const NotifTypeEnum NOTIF_TYPE_UPDATE = NotifTypeEnum._(8, _omitEnumNames ? '' : 'NOTIF_TYPE_UPDATE');
|
||||
static const NotifTypeEnum NOTIF_TYPE_COMPLETION = NotifTypeEnum._(9, _omitEnumNames ? '' : 'NOTIF_TYPE_COMPLETION');
|
||||
|
||||
static const $core.List<NotifTypeEnum> values = <NotifTypeEnum> [
|
||||
NOTIF_TYPE_UNKNOWN,
|
||||
NOTIF_TYPE_COMMENT,
|
||||
NOTIF_TYPE_STATUS,
|
||||
NOTIF_TYPE_ATTACHMENT_ADDED,
|
||||
NOTIF_TYPE_ATTACHMENT_DELETED,
|
||||
NOTIF_TYPE_CREATION,
|
||||
NOTIF_TYPE_DELETION,
|
||||
NOTIF_TYPE_CONTACT,
|
||||
NOTIF_TYPE_UPDATE,
|
||||
NOTIF_TYPE_COMPLETION,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, NotifTypeEnum> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static NotifTypeEnum? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const NotifTypeEnum._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
151
lib/collabShared.pbjson.dart
Normal file
151
lib/collabShared.pbjson.dart
Normal file
@@ -0,0 +1,151 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: collabShared.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use notifTypeEnumDescriptor instead')
|
||||
const NotifTypeEnum$json = {
|
||||
'1': 'NotifTypeEnum',
|
||||
'2': [
|
||||
{'1': 'NOTIF_TYPE_UNKNOWN', '2': 0},
|
||||
{'1': 'NOTIF_TYPE_COMMENT', '2': 1},
|
||||
{'1': 'NOTIF_TYPE_STATUS', '2': 2},
|
||||
{'1': 'NOTIF_TYPE_ATTACHMENT_ADDED', '2': 3},
|
||||
{'1': 'NOTIF_TYPE_ATTACHMENT_DELETED', '2': 4},
|
||||
{'1': 'NOTIF_TYPE_CREATION', '2': 5},
|
||||
{'1': 'NOTIF_TYPE_DELETION', '2': 6},
|
||||
{'1': 'NOTIF_TYPE_CONTACT', '2': 7},
|
||||
{'1': 'NOTIF_TYPE_UPDATE', '2': 8},
|
||||
{'1': 'NOTIF_TYPE_COMPLETION', '2': 9},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `NotifTypeEnum`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List notifTypeEnumDescriptor = $convert.base64Decode(
|
||||
'Cg1Ob3RpZlR5cGVFbnVtEhYKEk5PVElGX1RZUEVfVU5LTk9XThAAEhYKEk5PVElGX1RZUEVfQ0'
|
||||
'9NTUVOVBABEhUKEU5PVElGX1RZUEVfU1RBVFVTEAISHwobTk9USUZfVFlQRV9BVFRBQ0hNRU5U'
|
||||
'X0FEREVEEAMSIQodTk9USUZfVFlQRV9BVFRBQ0hNRU5UX0RFTEVURUQQBBIXChNOT1RJRl9UWV'
|
||||
'BFX0NSRUFUSU9OEAUSFwoTTk9USUZfVFlQRV9ERUxFVElPThAGEhYKEk5PVElGX1RZUEVfQ09O'
|
||||
'VEFDVBAHEhUKEU5PVElGX1RZUEVfVVBEQVRFEAgSGQoVTk9USUZfVFlQRV9DT01QTEVUSU9OEA'
|
||||
'k=');
|
||||
|
||||
@$core.Deprecated('Use claimStatusDefDescriptor instead')
|
||||
const ClaimStatusDef$json = {
|
||||
'1': 'ClaimStatusDef',
|
||||
'2': [
|
||||
{'1': 'StatusCode', '3': 1, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'StatusCode'},
|
||||
{'1': 'Date', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Date'},
|
||||
{'1': 'ActualDate', '3': 3, '4': 1, '5': 11, '6': '.api.DateTime', '8': {}, '10': 'ActualDate'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimStatusDef`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusDefDescriptor = $convert.base64Decode(
|
||||
'Cg5DbGFpbVN0YXR1c0RlZhJgCgpTdGF0dXNDb2RlGAEgASgOMhAuYXBpLkNsYWltU3RhdHVzQi'
|
||||
'7KwhgUChIKASoSDWdlbmVyYXRlZFRleHTSwhgSChAKBUNsYWltEgVjbGFpbRgBUgpTdGF0dXND'
|
||||
'b2RlElAKBERhdGUYAiABKAlCPPpCBXID0AEBysIYCwoJCgEqEgRkYXRl0sIYEgoQCgVDbGFpbR'
|
||||
'IFY2xhaW0YAdrCGAsKCQoBKhIEZGF0ZVIERGF0ZRKHAQoKQWN0dWFsRGF0ZRgDIAEoCzINLmFw'
|
||||
'aS5EYXRlVGltZUJYkkFVMlNTdGF0dXMgZWZmZWN0aXZlIGRhdGUuIFNldCBieSB0aGUgZXZlbn'
|
||||
'QncyBSZWZEYXRlIHRoYXQgdHJpZ2dlcmVkIHRoZSBzdGF0dXMgY2hhbmdlLlIKQWN0dWFsRGF0'
|
||||
'ZQ==');
|
||||
|
||||
@$core.Deprecated('Use claimStatusStructDescriptor instead')
|
||||
const ClaimStatusStruct$json = {
|
||||
'1': 'ClaimStatusStruct',
|
||||
'2': [
|
||||
{'1': 'Current', '3': 1, '4': 1, '5': 11, '6': '.api.ClaimStatusDef', '10': 'Current'},
|
||||
{'1': 'History', '3': 2, '4': 3, '5': 11, '6': '.api.ClaimStatusDef', '8': {}, '10': 'History'},
|
||||
{'1': 'CreationDate', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'CreationDate'},
|
||||
{'1': 'Version', '3': 4, '4': 1, '5': 13, '10': 'Version'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimStatusStruct`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimStatusStructDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbVN0YXR1c1N0cnVjdBItCgdDdXJyZW50GAEgASgLMhMuYXBpLkNsYWltU3RhdHVzRG'
|
||||
'VmUgdDdXJyZW50EjcKB0hpc3RvcnkYAiADKAsyEy5hcGkuQ2xhaW1TdGF0dXNEZWZCCOrBGARE'
|
||||
'YXRlUgdIaXN0b3J5EiwKDENyZWF0aW9uRGF0ZRgDIAEoCUII+kIFcgPQAQFSDENyZWF0aW9uRG'
|
||||
'F0ZRIYCgdWZXJzaW9uGAQgASgNUgdWZXJzaW9u');
|
||||
|
||||
@$core.Deprecated('Use windowedNotifDescriptor instead')
|
||||
const WindowedNotif$json = {
|
||||
'1': 'WindowedNotif',
|
||||
'2': [
|
||||
{'1': 'ListNotifChanges', '3': 1, '4': 1, '5': 11, '6': '.api.ListNotifChanges', '10': 'ListNotifChanges'},
|
||||
{'1': 'UserMails', '3': 2, '4': 3, '5': 11, '6': '.api.UserMails', '10': 'UserMails'},
|
||||
{'1': 'JsonModel', '3': 3, '4': 1, '5': 9, '10': 'JsonModel'},
|
||||
{'1': 'languageCode', '3': 4, '4': 1, '5': 9, '10': 'languageCode'},
|
||||
{'1': 'HtmlBody', '3': 5, '4': 1, '5': 9, '10': 'HtmlBody'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `WindowedNotif`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List windowedNotifDescriptor = $convert.base64Decode(
|
||||
'Cg1XaW5kb3dlZE5vdGlmEkEKEExpc3ROb3RpZkNoYW5nZXMYASABKAsyFS5hcGkuTGlzdE5vdG'
|
||||
'lmQ2hhbmdlc1IQTGlzdE5vdGlmQ2hhbmdlcxIsCglVc2VyTWFpbHMYAiADKAsyDi5hcGkuVXNl'
|
||||
'ck1haWxzUglVc2VyTWFpbHMSHAoJSnNvbk1vZGVsGAMgASgJUglKc29uTW9kZWwSIgoMbGFuZ3'
|
||||
'VhZ2VDb2RlGAQgASgJUgxsYW5ndWFnZUNvZGUSGgoISHRtbEJvZHkYBSABKAlSCEh0bWxCb2R5');
|
||||
|
||||
@$core.Deprecated('Use userMailsDescriptor instead')
|
||||
const UserMails$json = {
|
||||
'1': 'UserMails',
|
||||
'2': [
|
||||
{'1': 'mail', '3': 1, '4': 1, '5': 9, '10': 'mail'},
|
||||
{'1': 'languageCode', '3': 2, '4': 1, '5': 9, '10': 'languageCode'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UserMails`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List userMailsDescriptor = $convert.base64Decode(
|
||||
'CglVc2VyTWFpbHMSEgoEbWFpbBgBIAEoCVIEbWFpbBIiCgxsYW5ndWFnZUNvZGUYAiABKAlSDG'
|
||||
'xhbmd1YWdlQ29kZQ==');
|
||||
|
||||
@$core.Deprecated('Use listNotifChangesDescriptor instead')
|
||||
const ListNotifChanges$json = {
|
||||
'1': 'ListNotifChanges',
|
||||
'2': [
|
||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '10': 'ProjectID'},
|
||||
{'1': 'VisibilityURI', '3': 2, '4': 1, '5': 9, '10': 'VisibilityURI'},
|
||||
{'1': 'EntityType', '3': 3, '4': 1, '5': 9, '10': 'EntityType'},
|
||||
{'1': 'EntityRefID', '3': 4, '4': 1, '5': 9, '10': 'EntityRefID'},
|
||||
{'1': 'NotifChanges', '3': 5, '4': 3, '5': 11, '6': '.api.NotifChanges', '10': 'NotifChanges'},
|
||||
{'1': 'Tags', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Struct', '10': 'Tags'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListNotifChanges`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listNotifChangesDescriptor = $convert.base64Decode(
|
||||
'ChBMaXN0Tm90aWZDaGFuZ2VzEhwKCVByb2plY3RJRBgBIAEoCVIJUHJvamVjdElEEiQKDVZpc2'
|
||||
'liaWxpdHlVUkkYAiABKAlSDVZpc2liaWxpdHlVUkkSHgoKRW50aXR5VHlwZRgDIAEoCVIKRW50'
|
||||
'aXR5VHlwZRIgCgtFbnRpdHlSZWZJRBgEIAEoCVILRW50aXR5UmVmSUQSNQoMTm90aWZDaGFuZ2'
|
||||
'VzGAUgAygLMhEuYXBpLk5vdGlmQ2hhbmdlc1IMTm90aWZDaGFuZ2VzEisKBFRhZ3MYBiABKAsy'
|
||||
'Fy5nb29nbGUucHJvdG9idWYuU3RydWN0UgRUYWdz');
|
||||
|
||||
@$core.Deprecated('Use notifChangesDescriptor instead')
|
||||
const NotifChanges$json = {
|
||||
'1': 'NotifChanges',
|
||||
'2': [
|
||||
{'1': 'RefDate', '3': 1, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'RefDate'},
|
||||
{'1': 'UserName', '3': 2, '4': 1, '5': 9, '10': 'UserName'},
|
||||
{'1': 'NotificationType', '3': 3, '4': 1, '5': 14, '6': '.api.NotifTypeEnum', '10': 'NotificationType'},
|
||||
{'1': 'Details', '3': 4, '4': 1, '5': 11, '6': '.google.protobuf.Struct', '10': 'Details'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `NotifChanges`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List notifChangesDescriptor = $convert.base64Decode(
|
||||
'CgxOb3RpZkNoYW5nZXMSJwoHUmVmRGF0ZRgBIAEoCzINLmFwaS5EYXRlVGltZVIHUmVmRGF0ZR'
|
||||
'IaCghVc2VyTmFtZRgCIAEoCVIIVXNlck5hbWUSPgoQTm90aWZpY2F0aW9uVHlwZRgDIAEoDjIS'
|
||||
'LmFwaS5Ob3RpZlR5cGVFbnVtUhBOb3RpZmljYXRpb25UeXBlEjEKB0RldGFpbHMYBCABKAsyFy'
|
||||
'5nb29nbGUucHJvdG9idWYuU3RydWN0UgdEZXRhaWxz');
|
||||
|
||||
1288
lib/connection.pb.dart
Normal file
1288
lib/connection.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
11
lib/connection.pbenum.dart
Normal file
11
lib/connection.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
219
lib/connection.pbgrpc.dart
Normal file
219
lib/connection.pbgrpc.dart
Normal file
@@ -0,0 +1,219 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'connection.pb.dart' as $6;
|
||||
|
||||
export 'connection.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectionService')
|
||||
class ConnectionServiceClient extends $grpc.Client {
|
||||
static final _$create = $grpc.ClientMethod<$6.CreateConnectionRequest, $6.CreateConnectionResult>(
|
||||
'/api.ConnectionService/Create',
|
||||
($6.CreateConnectionRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.CreateConnectionResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$6.DeleteConnectionRequest, $6.DeleteConnectionResult>(
|
||||
'/api.ConnectionService/Delete',
|
||||
($6.DeleteConnectionRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.DeleteConnectionResult.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$6.ListConnectionsRequest, $6.ListConnectionsResult>(
|
||||
'/api.ConnectionService/List',
|
||||
($6.ListConnectionsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.ListConnectionsResult.fromBuffer(value));
|
||||
static final _$getDetails = $grpc.ClientMethod<$6.GetDetailsConnectionsRequest, $6.GetDetailsConnectionsResult>(
|
||||
'/api.ConnectionService/GetDetails',
|
||||
($6.GetDetailsConnectionsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.GetDetailsConnectionsResult.fromBuffer(value));
|
||||
static final _$getStartDetails = $grpc.ClientMethod<$6.GetStartDetailsConnectionsRequest, $6.GetStartDetailsConnectionsResult>(
|
||||
'/api.ConnectionService/GetStartDetails',
|
||||
($6.GetStartDetailsConnectionsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.GetStartDetailsConnectionsResult.fromBuffer(value));
|
||||
static final _$setRunDetails = $grpc.ClientMethod<$6.SetRunDetailsConnectionsRequest, $6.SetRunDetailsConnectionsResult>(
|
||||
'/api.ConnectionService/SetRunDetails',
|
||||
($6.SetRunDetailsConnectionsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.SetRunDetailsConnectionsResult.fromBuffer(value));
|
||||
static final _$renewConnectionSA = $grpc.ClientMethod<$6.RenewConnectionSARequest, $6.RenewConnectionSAResult>(
|
||||
'/api.ConnectionService/RenewConnectionSA',
|
||||
($6.RenewConnectionSARequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.RenewConnectionSAResult.fromBuffer(value));
|
||||
static final _$deleteConnectionInDB = $grpc.ClientMethod<$6.DeleteConnectionInDBRequest, $6.DeleteConnectionInDBResult>(
|
||||
'/api.ConnectionService/DeleteConnectionInDB',
|
||||
($6.DeleteConnectionInDBRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.DeleteConnectionInDBResult.fromBuffer(value));
|
||||
static final _$isConnectionExist = $grpc.ClientMethod<$6.IsConnectionExistRequest, $6.IsConnectionExistResult>(
|
||||
'/api.ConnectionService/IsConnectionExist',
|
||||
($6.IsConnectionExistRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $6.IsConnectionExistResult.fromBuffer(value));
|
||||
|
||||
ConnectionServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$6.CreateConnectionResult> create($6.CreateConnectionRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.DeleteConnectionResult> delete($6.DeleteConnectionRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.ListConnectionsResult> list($6.ListConnectionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.GetDetailsConnectionsResult> getDetails($6.GetDetailsConnectionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getDetails, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.GetStartDetailsConnectionsResult> getStartDetails($6.GetStartDetailsConnectionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$getStartDetails, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.SetRunDetailsConnectionsResult> setRunDetails($6.SetRunDetailsConnectionsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$setRunDetails, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.RenewConnectionSAResult> renewConnectionSA($6.RenewConnectionSARequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$renewConnectionSA, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.DeleteConnectionInDBResult> deleteConnectionInDB($6.DeleteConnectionInDBRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleteConnectionInDB, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$6.IsConnectionExistResult> isConnectionExist($6.IsConnectionExistRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$isConnectionExist, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectionService')
|
||||
abstract class ConnectionServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ConnectionService';
|
||||
|
||||
ConnectionServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$6.CreateConnectionRequest, $6.CreateConnectionResult>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.CreateConnectionRequest.fromBuffer(value),
|
||||
($6.CreateConnectionResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.DeleteConnectionRequest, $6.DeleteConnectionResult>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.DeleteConnectionRequest.fromBuffer(value),
|
||||
($6.DeleteConnectionResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.ListConnectionsRequest, $6.ListConnectionsResult>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.ListConnectionsRequest.fromBuffer(value),
|
||||
($6.ListConnectionsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.GetDetailsConnectionsRequest, $6.GetDetailsConnectionsResult>(
|
||||
'GetDetails',
|
||||
getDetails_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.GetDetailsConnectionsRequest.fromBuffer(value),
|
||||
($6.GetDetailsConnectionsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.GetStartDetailsConnectionsRequest, $6.GetStartDetailsConnectionsResult>(
|
||||
'GetStartDetails',
|
||||
getStartDetails_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.GetStartDetailsConnectionsRequest.fromBuffer(value),
|
||||
($6.GetStartDetailsConnectionsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.SetRunDetailsConnectionsRequest, $6.SetRunDetailsConnectionsResult>(
|
||||
'SetRunDetails',
|
||||
setRunDetails_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.SetRunDetailsConnectionsRequest.fromBuffer(value),
|
||||
($6.SetRunDetailsConnectionsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.RenewConnectionSARequest, $6.RenewConnectionSAResult>(
|
||||
'RenewConnectionSA',
|
||||
renewConnectionSA_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.RenewConnectionSARequest.fromBuffer(value),
|
||||
($6.RenewConnectionSAResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.DeleteConnectionInDBRequest, $6.DeleteConnectionInDBResult>(
|
||||
'DeleteConnectionInDB',
|
||||
deleteConnectionInDB_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.DeleteConnectionInDBRequest.fromBuffer(value),
|
||||
($6.DeleteConnectionInDBResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$6.IsConnectionExistRequest, $6.IsConnectionExistResult>(
|
||||
'IsConnectionExist',
|
||||
isConnectionExist_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $6.IsConnectionExistRequest.fromBuffer(value),
|
||||
($6.IsConnectionExistResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$6.CreateConnectionResult> create_Pre($grpc.ServiceCall call, $async.Future<$6.CreateConnectionRequest> request) async {
|
||||
return create(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.DeleteConnectionResult> delete_Pre($grpc.ServiceCall call, $async.Future<$6.DeleteConnectionRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.ListConnectionsResult> list_Pre($grpc.ServiceCall call, $async.Future<$6.ListConnectionsRequest> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.GetDetailsConnectionsResult> getDetails_Pre($grpc.ServiceCall call, $async.Future<$6.GetDetailsConnectionsRequest> request) async {
|
||||
return getDetails(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.GetStartDetailsConnectionsResult> getStartDetails_Pre($grpc.ServiceCall call, $async.Future<$6.GetStartDetailsConnectionsRequest> request) async {
|
||||
return getStartDetails(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.SetRunDetailsConnectionsResult> setRunDetails_Pre($grpc.ServiceCall call, $async.Future<$6.SetRunDetailsConnectionsRequest> request) async {
|
||||
return setRunDetails(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.RenewConnectionSAResult> renewConnectionSA_Pre($grpc.ServiceCall call, $async.Future<$6.RenewConnectionSARequest> request) async {
|
||||
return renewConnectionSA(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.DeleteConnectionInDBResult> deleteConnectionInDB_Pre($grpc.ServiceCall call, $async.Future<$6.DeleteConnectionInDBRequest> request) async {
|
||||
return deleteConnectionInDB(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.IsConnectionExistResult> isConnectionExist_Pre($grpc.ServiceCall call, $async.Future<$6.IsConnectionExistRequest> request) async {
|
||||
return isConnectionExist(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$6.CreateConnectionResult> create($grpc.ServiceCall call, $6.CreateConnectionRequest request);
|
||||
$async.Future<$6.DeleteConnectionResult> delete($grpc.ServiceCall call, $6.DeleteConnectionRequest request);
|
||||
$async.Future<$6.ListConnectionsResult> list($grpc.ServiceCall call, $6.ListConnectionsRequest request);
|
||||
$async.Future<$6.GetDetailsConnectionsResult> getDetails($grpc.ServiceCall call, $6.GetDetailsConnectionsRequest request);
|
||||
$async.Future<$6.GetStartDetailsConnectionsResult> getStartDetails($grpc.ServiceCall call, $6.GetStartDetailsConnectionsRequest request);
|
||||
$async.Future<$6.SetRunDetailsConnectionsResult> setRunDetails($grpc.ServiceCall call, $6.SetRunDetailsConnectionsRequest request);
|
||||
$async.Future<$6.RenewConnectionSAResult> renewConnectionSA($grpc.ServiceCall call, $6.RenewConnectionSARequest request);
|
||||
$async.Future<$6.DeleteConnectionInDBResult> deleteConnectionInDB($grpc.ServiceCall call, $6.DeleteConnectionInDBRequest request);
|
||||
$async.Future<$6.IsConnectionExistResult> isConnectionExist($grpc.ServiceCall call, $6.IsConnectionExistRequest request);
|
||||
}
|
||||
308
lib/connection.pbjson.dart
Normal file
308
lib/connection.pbjson.dart
Normal file
@@ -0,0 +1,308 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connection.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use connectionDescriptor instead')
|
||||
const Connection$json = {
|
||||
'1': 'Connection',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '10': 'ID'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '10': 'Name'},
|
||||
{'1': 'ConnectorID', '3': 3, '4': 1, '5': 9, '10': 'ConnectorID'},
|
||||
{'1': 'PartnerAppID', '3': 4, '4': 1, '5': 9, '10': 'PartnerAppID'},
|
||||
{'1': 'ServiceAccountName', '3': 5, '4': 1, '5': 9, '10': 'ServiceAccountName'},
|
||||
{'1': 'UriApiStatus', '3': 6, '4': 1, '5': 9, '10': 'UriApiStatus'},
|
||||
{'1': 'UriApiStart', '3': 7, '4': 1, '5': 9, '10': 'UriApiStart'},
|
||||
{'1': 'UriApiStop', '3': 8, '4': 1, '5': 9, '10': 'UriApiStop'},
|
||||
{'1': 'AuthzServer', '3': 9, '4': 1, '5': 9, '10': 'AuthzServer'},
|
||||
{'1': 'InitializedByConnectionManager', '3': 10, '4': 1, '5': 8, '10': 'InitializedByConnectionManager'},
|
||||
{'1': 'UriApiClear', '3': 11, '4': 1, '5': 9, '10': 'UriApiClear'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Connection`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List connectionDescriptor = $convert.base64Decode(
|
||||
'CgpDb25uZWN0aW9uEg4KAklEGAEgASgJUgJJRBISCgROYW1lGAIgASgJUgROYW1lEiAKC0Nvbm'
|
||||
'5lY3RvcklEGAMgASgJUgtDb25uZWN0b3JJRBIiCgxQYXJ0bmVyQXBwSUQYBCABKAlSDFBhcnRu'
|
||||
'ZXJBcHBJRBIuChJTZXJ2aWNlQWNjb3VudE5hbWUYBSABKAlSElNlcnZpY2VBY2NvdW50TmFtZR'
|
||||
'IiCgxVcmlBcGlTdGF0dXMYBiABKAlSDFVyaUFwaVN0YXR1cxIgCgtVcmlBcGlTdGFydBgHIAEo'
|
||||
'CVILVXJpQXBpU3RhcnQSHgoKVXJpQXBpU3RvcBgIIAEoCVIKVXJpQXBpU3RvcBIgCgtBdXRoel'
|
||||
'NlcnZlchgJIAEoCVILQXV0aHpTZXJ2ZXISRgoeSW5pdGlhbGl6ZWRCeUNvbm5lY3Rpb25NYW5h'
|
||||
'Z2VyGAogASgIUh5Jbml0aWFsaXplZEJ5Q29ubmVjdGlvbk1hbmFnZXISIAoLVXJpQXBpQ2xlYX'
|
||||
'IYCyABKAlSC1VyaUFwaUNsZWFy');
|
||||
|
||||
@$core.Deprecated('Use createConnectionRequestDescriptor instead')
|
||||
const CreateConnectionRequest$json = {
|
||||
'1': 'CreateConnectionRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ConnectorID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ConnectorID'},
|
||||
{'1': 'Name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateConnectionRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createConnectionRequestDescriptor = $convert.base64Decode(
|
||||
'ChdDcmVhdGVDb25uZWN0aW9uUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUmVxdWVzdF'
|
||||
'BhcnRuZXJBcHBIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISKQoLQ29ubmVjdG9ySUQYAiABKAlC'
|
||||
'B/pCBHICEAFSC0Nvbm5lY3RvcklEEkUKBE5hbWUYAyABKAlCMZJBFIoBEV4oW0EtWmEtejAtOS'
|
||||
'1dKSsk+kIXchUQATIRXihbQS1aYS16MC05LV0pKyRSBE5hbWU6I5JBIAoe0gEGSGVhZGVy0gEL'
|
||||
'Q29ubmVjdG9ySUTSAQROYW1l');
|
||||
|
||||
@$core.Deprecated('Use createConnectionResultDescriptor instead')
|
||||
const CreateConnectionResult$json = {
|
||||
'1': 'CreateConnectionResult',
|
||||
'2': [
|
||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.api.Connection', '10': 'Result'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateConnectionResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createConnectionResultDescriptor = $convert.base64Decode(
|
||||
'ChZDcmVhdGVDb25uZWN0aW9uUmVzdWx0EicKBlJlc3VsdBgBIAEoCzIPLmFwaS5Db25uZWN0aW'
|
||||
'9uUgZSZXN1bHQ=');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionRequestDescriptor instead')
|
||||
const DeleteConnectionRequest$json = {
|
||||
'1': 'DeleteConnectionRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ConnectionID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ConnectionID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionRequestDescriptor = $convert.base64Decode(
|
||||
'ChdEZWxldGVDb25uZWN0aW9uUmVxdWVzdBI+CgZIZWFkZXIYASABKAsyHC5hcGkuUmVxdWVzdF'
|
||||
'BhcnRuZXJBcHBIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISKwoMQ29ubmVjdGlvbklEGAIgASgJ'
|
||||
'Qgf6QgRyAhABUgxDb25uZWN0aW9uSUQ6HJJBGQoX0gEGSGVhZGVy0gELQ29ubmVjdG9ySUQ=');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionResultDescriptor instead')
|
||||
const DeleteConnectionResult$json = {
|
||||
'1': 'DeleteConnectionResult',
|
||||
'2': [
|
||||
{'1': 'WorkflowExecution', '3': 1, '4': 1, '5': 11, '6': '.api.WorkflowExecutionResult', '10': 'WorkflowExecution'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionResultDescriptor = $convert.base64Decode(
|
||||
'ChZEZWxldGVDb25uZWN0aW9uUmVzdWx0EkoKEVdvcmtmbG93RXhlY3V0aW9uGAEgASgLMhwuYX'
|
||||
'BpLldvcmtmbG93RXhlY3V0aW9uUmVzdWx0UhFXb3JrZmxvd0V4ZWN1dGlvbg==');
|
||||
|
||||
@$core.Deprecated('Use listConnectionsRequestDescriptor instead')
|
||||
const ListConnectionsRequest$json = {
|
||||
'1': 'ListConnectionsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestPartnerAppHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ConnectorID', '3': 2, '4': 1, '5': 9, '10': 'ConnectorID'},
|
||||
{'1': 'Paging', '3': 3, '4': 1, '5': 11, '6': '.api.Paging', '10': 'Paging'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectionsRequestDescriptor = $convert.base64Decode(
|
||||
'ChZMaXN0Q29ubmVjdGlvbnNSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS5SZXF1ZXN0UG'
|
||||
'FydG5lckFwcEhlYWRlckII+kIFigECEAFSBkhlYWRlchIgCgtDb25uZWN0b3JJRBgCIAEoCVIL'
|
||||
'Q29ubmVjdG9ySUQSIwoGUGFnaW5nGAMgASgLMgsuYXBpLlBhZ2luZ1IGUGFnaW5nOg6SQQsKCd'
|
||||
'IBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use listConnectionsResultDescriptor instead')
|
||||
const ListConnectionsResult$json = {
|
||||
'1': 'ListConnectionsResult',
|
||||
'2': [
|
||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.api.Connection', '10': 'Results'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectionsResultDescriptor = $convert.base64Decode(
|
||||
'ChVMaXN0Q29ubmVjdGlvbnNSZXN1bHQSKQoHUmVzdWx0cxgBIAMoCzIPLmFwaS5Db25uZWN0aW'
|
||||
'9uUgdSZXN1bHRz');
|
||||
|
||||
@$core.Deprecated('Use getDetailsConnectionsRequestDescriptor instead')
|
||||
const GetDetailsConnectionsRequest$json = {
|
||||
'1': 'GetDetailsConnectionsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetDetailsConnectionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getDetailsConnectionsRequestDescriptor = $convert.base64Decode(
|
||||
'ChxHZXREZXRhaWxzQ29ubmVjdGlvbnNSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS5SZX'
|
||||
'F1ZXN0Q29ubmVjdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlcjoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use getDetailsConnectionsResultDescriptor instead')
|
||||
const GetDetailsConnectionsResult$json = {
|
||||
'1': 'GetDetailsConnectionsResult',
|
||||
'2': [
|
||||
{'1': 'Connection', '3': 1, '4': 1, '5': 11, '6': '.api.Connection', '10': 'Connection'},
|
||||
{'1': 'Connector', '3': 2, '4': 1, '5': 11, '6': '.api.Connector', '10': 'Connector'},
|
||||
{'1': 'PartnerApp', '3': 3, '4': 1, '5': 11, '6': '.api.PartnerApp', '10': 'PartnerApp'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetDetailsConnectionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getDetailsConnectionsResultDescriptor = $convert.base64Decode(
|
||||
'ChtHZXREZXRhaWxzQ29ubmVjdGlvbnNSZXN1bHQSLwoKQ29ubmVjdGlvbhgBIAEoCzIPLmFwaS'
|
||||
'5Db25uZWN0aW9uUgpDb25uZWN0aW9uEiwKCUNvbm5lY3RvchgCIAEoCzIOLmFwaS5Db25uZWN0'
|
||||
'b3JSCUNvbm5lY3RvchIvCgpQYXJ0bmVyQXBwGAMgASgLMg8uYXBpLlBhcnRuZXJBcHBSClBhcn'
|
||||
'RuZXJBcHA=');
|
||||
|
||||
@$core.Deprecated('Use getStartDetailsConnectionsRequestDescriptor instead')
|
||||
const GetStartDetailsConnectionsRequest$json = {
|
||||
'1': 'GetStartDetailsConnectionsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetStartDetailsConnectionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getStartDetailsConnectionsRequestDescriptor = $convert.base64Decode(
|
||||
'CiFHZXRTdGFydERldGFpbHNDb25uZWN0aW9uc1JlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYX'
|
||||
'BpLlJlcXVlc3RDb25uZWN0aW9uSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhl'
|
||||
'YWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use getStartDetailsConnectionsResultDescriptor instead')
|
||||
const GetStartDetailsConnectionsResult$json = {
|
||||
'1': 'GetStartDetailsConnectionsResult',
|
||||
'2': [
|
||||
{'1': 'UriStartApi', '3': 1, '4': 1, '5': 9, '10': 'UriStartApi'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetStartDetailsConnectionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getStartDetailsConnectionsResultDescriptor = $convert.base64Decode(
|
||||
'CiBHZXRTdGFydERldGFpbHNDb25uZWN0aW9uc1Jlc3VsdBIgCgtVcmlTdGFydEFwaRgBIAEoCV'
|
||||
'ILVXJpU3RhcnRBcGk=');
|
||||
|
||||
@$core.Deprecated('Use setRunDetailsConnectionsRequestDescriptor instead')
|
||||
const SetRunDetailsConnectionsRequest$json = {
|
||||
'1': 'SetRunDetailsConnectionsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'UriApiStatus', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'UriApiStatus'},
|
||||
{'1': 'UriApiStart', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'UriApiStart'},
|
||||
{'1': 'UriApiStop', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'UriApiStop'},
|
||||
{'1': 'UriApiClear', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'UriApiClear'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `SetRunDetailsConnectionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List setRunDetailsConnectionsRequestDescriptor = $convert.base64Decode(
|
||||
'Ch9TZXRSdW5EZXRhaWxzQ29ubmVjdGlvbnNSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS'
|
||||
'5SZXF1ZXN0Q29ubmVjdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIrCgxVcmlBcGlTdGF0'
|
||||
'dXMYAiABKAlCB/pCBHICEAFSDFVyaUFwaVN0YXR1cxIpCgtVcmlBcGlTdGFydBgDIAEoCUIH+k'
|
||||
'IEcgIQAVILVXJpQXBpU3RhcnQSJwoKVXJpQXBpU3RvcBgEIAEoCUIH+kIEcgIQAVIKVXJpQXBp'
|
||||
'U3RvcBIpCgtVcmlBcGlDbGVhchgFIAEoCUIH+kIEcgIQAVILVXJpQXBpQ2xlYXI6RpJBQwpB0g'
|
||||
'EGSGVhZGVy0gEMVXJpQXBpU3RhdHVz0gELVXJpQXBpU3RhcnTSAQpVcmlBcGlTdG9w0gELVXJp'
|
||||
'QXBpQ2xlYXI=');
|
||||
|
||||
@$core.Deprecated('Use setRunDetailsConnectionsResultDescriptor instead')
|
||||
const SetRunDetailsConnectionsResult$json = {
|
||||
'1': 'SetRunDetailsConnectionsResult',
|
||||
'2': [
|
||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.api.Connection', '10': 'Result'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `SetRunDetailsConnectionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List setRunDetailsConnectionsResultDescriptor = $convert.base64Decode(
|
||||
'Ch5TZXRSdW5EZXRhaWxzQ29ubmVjdGlvbnNSZXN1bHQSJwoGUmVzdWx0GAEgASgLMg8uYXBpLk'
|
||||
'Nvbm5lY3Rpb25SBlJlc3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use renewConnectionSARequestDescriptor instead')
|
||||
const RenewConnectionSARequest$json = {
|
||||
'1': 'RenewConnectionSARequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `RenewConnectionSARequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List renewConnectionSARequestDescriptor = $convert.base64Decode(
|
||||
'ChhSZW5ld0Nvbm5lY3Rpb25TQVJlcXVlc3QSPgoGSGVhZGVyGAEgASgLMhwuYXBpLlJlcXVlc3'
|
||||
'RDb25uZWN0aW9uSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use renewConnectionSAResultDescriptor instead')
|
||||
const RenewConnectionSAResult$json = {
|
||||
'1': 'RenewConnectionSAResult',
|
||||
'2': [
|
||||
{'1': 'SA', '3': 1, '4': 1, '5': 11, '6': '.api.User', '10': 'SA'},
|
||||
{'1': 'PEM', '3': 2, '4': 1, '5': 9, '10': 'PEM'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `RenewConnectionSAResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List renewConnectionSAResultDescriptor = $convert.base64Decode(
|
||||
'ChdSZW5ld0Nvbm5lY3Rpb25TQVJlc3VsdBIZCgJTQRgBIAEoCzIJLmFwaS5Vc2VyUgJTQRIQCg'
|
||||
'NQRU0YAiABKAlSA1BFTQ==');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionInDBRequestDescriptor instead')
|
||||
const DeleteConnectionInDBRequest$json = {
|
||||
'1': 'DeleteConnectionInDBRequest',
|
||||
'2': [
|
||||
{'1': 'ConnectionID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ConnectionID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionInDBRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionInDBRequestDescriptor = $convert.base64Decode(
|
||||
'ChtEZWxldGVDb25uZWN0aW9uSW5EQlJlcXVlc3QSKwoMQ29ubmVjdGlvbklEGAEgASgJQgf6Qg'
|
||||
'RyAhABUgxDb25uZWN0aW9uSUQ6FJJBEQoP0gEMQ29ubmVjdGlvbklE');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionInDBResultDescriptor instead')
|
||||
const DeleteConnectionInDBResult$json = {
|
||||
'1': 'DeleteConnectionInDBResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionInDBResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionInDBResultDescriptor = $convert.base64Decode(
|
||||
'ChpEZWxldGVDb25uZWN0aW9uSW5EQlJlc3VsdA==');
|
||||
|
||||
@$core.Deprecated('Use isConnectionExistRequestDescriptor instead')
|
||||
const IsConnectionExistRequest$json = {
|
||||
'1': 'IsConnectionExistRequest',
|
||||
'2': [
|
||||
{'1': 'ConnectionID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ConnectionID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `IsConnectionExistRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List isConnectionExistRequestDescriptor = $convert.base64Decode(
|
||||
'ChhJc0Nvbm5lY3Rpb25FeGlzdFJlcXVlc3QSKwoMQ29ubmVjdGlvbklEGAEgASgJQgf6QgRyAh'
|
||||
'ABUgxDb25uZWN0aW9uSUQ6FJJBEQoP0gEMQ29ubmVjdGlvbklE');
|
||||
|
||||
@$core.Deprecated('Use isConnectionExistResultDescriptor instead')
|
||||
const IsConnectionExistResult$json = {
|
||||
'1': 'IsConnectionExistResult',
|
||||
'2': [
|
||||
{'1': 'Exist', '3': 1, '4': 1, '5': 8, '10': 'Exist'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `IsConnectionExistResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List isConnectionExistResultDescriptor = $convert.base64Decode(
|
||||
'ChdJc0Nvbm5lY3Rpb25FeGlzdFJlc3VsdBIUCgVFeGlzdBgBIAEoCFIFRXhpc3Q=');
|
||||
|
||||
382
lib/connectionSettings.pb.dart
Normal file
382
lib/connectionSettings.pb.dart
Normal file
@@ -0,0 +1,382 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connectionSettings.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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 $28;
|
||||
|
||||
class ConnectionSettings extends $pb.GeneratedMessage {
|
||||
factory ConnectionSettings({
|
||||
$core.String? connectionID,
|
||||
$core.String? settings,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (connectionID != null) {
|
||||
$result.connectionID = connectionID;
|
||||
}
|
||||
if (settings != null) {
|
||||
$result.settings = settings;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
ConnectionSettings._() : super();
|
||||
factory ConnectionSettings.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory ConnectionSettings.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ConnectionSettings', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'connectionID', protoName: 'connectionID')
|
||||
..aOS(2, _omitFieldNames ? '' : 'settings')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
ConnectionSettings clone() => ConnectionSettings()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
ConnectionSettings copyWith(void Function(ConnectionSettings) updates) => super.copyWith((message) => updates(message as ConnectionSettings)) as ConnectionSettings;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ConnectionSettings create() => ConnectionSettings._();
|
||||
ConnectionSettings createEmptyInstance() => create();
|
||||
static $pb.PbList<ConnectionSettings> createRepeated() => $pb.PbList<ConnectionSettings>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ConnectionSettings getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ConnectionSettings>(create);
|
||||
static ConnectionSettings? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get connectionID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set connectionID($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasConnectionID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearConnectionID() => clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get settings => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set settings($core.String v) { $_setString(1, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasSettings() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearSettings() => clearField(2);
|
||||
}
|
||||
|
||||
class PutConnectionSettingsRequest extends $pb.GeneratedMessage {
|
||||
factory PutConnectionSettingsRequest({
|
||||
$28.RequestConnectionHeader? header,
|
||||
$core.Map<$core.String, $core.String>? settings,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
if (settings != null) {
|
||||
$result.settings.addAll(settings);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
PutConnectionSettingsRequest._() : super();
|
||||
factory PutConnectionSettingsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory PutConnectionSettingsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PutConnectionSettingsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestConnectionHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestConnectionHeader.create)
|
||||
..m<$core.String, $core.String>(2, _omitFieldNames ? '' : 'settings', entryClassName: 'PutConnectionSettingsRequest.SettingsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OS, packageName: const $pb.PackageName('api'))
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
PutConnectionSettingsRequest clone() => PutConnectionSettingsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
PutConnectionSettingsRequest copyWith(void Function(PutConnectionSettingsRequest) updates) => super.copyWith((message) => updates(message as PutConnectionSettingsRequest)) as PutConnectionSettingsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PutConnectionSettingsRequest create() => PutConnectionSettingsRequest._();
|
||||
PutConnectionSettingsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<PutConnectionSettingsRequest> createRepeated() => $pb.PbList<PutConnectionSettingsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PutConnectionSettingsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PutConnectionSettingsRequest>(create);
|
||||
static PutConnectionSettingsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestConnectionHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.Map<$core.String, $core.String> get settings => $_getMap(1);
|
||||
}
|
||||
|
||||
class PutConnectionSettingsResult extends $pb.GeneratedMessage {
|
||||
factory PutConnectionSettingsResult({
|
||||
$core.String? settings,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (settings != null) {
|
||||
$result.settings = settings;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
PutConnectionSettingsResult._() : super();
|
||||
factory PutConnectionSettingsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory PutConnectionSettingsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PutConnectionSettingsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'settings')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
PutConnectionSettingsResult clone() => PutConnectionSettingsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
PutConnectionSettingsResult copyWith(void Function(PutConnectionSettingsResult) updates) => super.copyWith((message) => updates(message as PutConnectionSettingsResult)) as PutConnectionSettingsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PutConnectionSettingsResult create() => PutConnectionSettingsResult._();
|
||||
PutConnectionSettingsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<PutConnectionSettingsResult> createRepeated() => $pb.PbList<PutConnectionSettingsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PutConnectionSettingsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PutConnectionSettingsResult>(create);
|
||||
static PutConnectionSettingsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get settings => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set settings($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSettings() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSettings() => clearField(1);
|
||||
}
|
||||
|
||||
/// Settings of the connection to get
|
||||
class GetConnectionSettingsRequest extends $pb.GeneratedMessage {
|
||||
factory GetConnectionSettingsRequest({
|
||||
$28.RequestConnectionHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetConnectionSettingsRequest._() : super();
|
||||
factory GetConnectionSettingsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetConnectionSettingsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetConnectionSettingsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestConnectionHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestConnectionHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetConnectionSettingsRequest clone() => GetConnectionSettingsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetConnectionSettingsRequest copyWith(void Function(GetConnectionSettingsRequest) updates) => super.copyWith((message) => updates(message as GetConnectionSettingsRequest)) as GetConnectionSettingsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetConnectionSettingsRequest create() => GetConnectionSettingsRequest._();
|
||||
GetConnectionSettingsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<GetConnectionSettingsRequest> createRepeated() => $pb.PbList<GetConnectionSettingsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetConnectionSettingsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetConnectionSettingsRequest>(create);
|
||||
static GetConnectionSettingsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestConnectionHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
class GetConnectionSettingsResult extends $pb.GeneratedMessage {
|
||||
factory GetConnectionSettingsResult({
|
||||
$core.String? settings,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (settings != null) {
|
||||
$result.settings = settings;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
GetConnectionSettingsResult._() : super();
|
||||
factory GetConnectionSettingsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory GetConnectionSettingsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetConnectionSettingsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'settings')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetConnectionSettingsResult clone() => GetConnectionSettingsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
GetConnectionSettingsResult copyWith(void Function(GetConnectionSettingsResult) updates) => super.copyWith((message) => updates(message as GetConnectionSettingsResult)) as GetConnectionSettingsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetConnectionSettingsResult create() => GetConnectionSettingsResult._();
|
||||
GetConnectionSettingsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<GetConnectionSettingsResult> createRepeated() => $pb.PbList<GetConnectionSettingsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static GetConnectionSettingsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetConnectionSettingsResult>(create);
|
||||
static GetConnectionSettingsResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get settings => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set settings($core.String v) { $_setString(0, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasSettings() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearSettings() => clearField(1);
|
||||
}
|
||||
|
||||
/// ConnectionID of the settings to delete
|
||||
class DeleteConnectionSettingsRequest extends $pb.GeneratedMessage {
|
||||
factory DeleteConnectionSettingsRequest({
|
||||
$28.RequestConnectionHeader? header,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (header != null) {
|
||||
$result.header = header;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
DeleteConnectionSettingsRequest._() : super();
|
||||
factory DeleteConnectionSettingsRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteConnectionSettingsRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteConnectionSettingsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$28.RequestConnectionHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $28.RequestConnectionHeader.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteConnectionSettingsRequest clone() => DeleteConnectionSettingsRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteConnectionSettingsRequest copyWith(void Function(DeleteConnectionSettingsRequest) updates) => super.copyWith((message) => updates(message as DeleteConnectionSettingsRequest)) as DeleteConnectionSettingsRequest;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteConnectionSettingsRequest create() => DeleteConnectionSettingsRequest._();
|
||||
DeleteConnectionSettingsRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteConnectionSettingsRequest> createRepeated() => $pb.PbList<DeleteConnectionSettingsRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteConnectionSettingsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteConnectionSettingsRequest>(create);
|
||||
static DeleteConnectionSettingsRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($28.RequestConnectionHeader v) { setField(1, v); }
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$28.RequestConnectionHeader ensureHeader() => $_ensure(0);
|
||||
}
|
||||
|
||||
class DeleteConnectionSettingsResult extends $pb.GeneratedMessage {
|
||||
factory DeleteConnectionSettingsResult() => create();
|
||||
DeleteConnectionSettingsResult._() : super();
|
||||
factory DeleteConnectionSettingsResult.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
||||
factory DeleteConnectionSettingsResult.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteConnectionSettingsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteConnectionSettingsResult clone() => DeleteConnectionSettingsResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated(
|
||||
'Using this can add significant overhead to your binary. '
|
||||
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
||||
'Will be removed in next major version')
|
||||
DeleteConnectionSettingsResult copyWith(void Function(DeleteConnectionSettingsResult) updates) => super.copyWith((message) => updates(message as DeleteConnectionSettingsResult)) as DeleteConnectionSettingsResult;
|
||||
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteConnectionSettingsResult create() => DeleteConnectionSettingsResult._();
|
||||
DeleteConnectionSettingsResult createEmptyInstance() => create();
|
||||
static $pb.PbList<DeleteConnectionSettingsResult> createRepeated() => $pb.PbList<DeleteConnectionSettingsResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static DeleteConnectionSettingsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteConnectionSettingsResult>(create);
|
||||
static DeleteConnectionSettingsResult? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
11
lib/connectionSettings.pbenum.dart
Normal file
11
lib/connectionSettings.pbenum.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connectionSettings.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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
|
||||
|
||||
99
lib/connectionSettings.pbgrpc.dart
Normal file
99
lib/connectionSettings.pbgrpc.dart
Normal file
@@ -0,0 +1,99 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connectionSettings.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'connectionSettings.pb.dart' as $13;
|
||||
|
||||
export 'connectionSettings.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectionSettingsService')
|
||||
class ConnectionSettingsServiceClient extends $grpc.Client {
|
||||
static final _$get = $grpc.ClientMethod<$13.GetConnectionSettingsRequest, $13.GetConnectionSettingsResult>(
|
||||
'/api.ConnectionSettingsService/Get',
|
||||
($13.GetConnectionSettingsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.GetConnectionSettingsResult.fromBuffer(value));
|
||||
static final _$put = $grpc.ClientMethod<$13.PutConnectionSettingsRequest, $13.PutConnectionSettingsResult>(
|
||||
'/api.ConnectionSettingsService/Put',
|
||||
($13.PutConnectionSettingsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.PutConnectionSettingsResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$13.DeleteConnectionSettingsRequest, $13.DeleteConnectionSettingsResult>(
|
||||
'/api.ConnectionSettingsService/Delete',
|
||||
($13.DeleteConnectionSettingsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $13.DeleteConnectionSettingsResult.fromBuffer(value));
|
||||
|
||||
ConnectionSettingsServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$13.GetConnectionSettingsResult> get($13.GetConnectionSettingsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$13.PutConnectionSettingsResult> put($13.PutConnectionSettingsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$put, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$13.DeleteConnectionSettingsResult> delete($13.DeleteConnectionSettingsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectionSettingsService')
|
||||
abstract class ConnectionSettingsServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ConnectionSettingsService';
|
||||
|
||||
ConnectionSettingsServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$13.GetConnectionSettingsRequest, $13.GetConnectionSettingsResult>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.GetConnectionSettingsRequest.fromBuffer(value),
|
||||
($13.GetConnectionSettingsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$13.PutConnectionSettingsRequest, $13.PutConnectionSettingsResult>(
|
||||
'Put',
|
||||
put_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.PutConnectionSettingsRequest.fromBuffer(value),
|
||||
($13.PutConnectionSettingsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$13.DeleteConnectionSettingsRequest, $13.DeleteConnectionSettingsResult>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $13.DeleteConnectionSettingsRequest.fromBuffer(value),
|
||||
($13.DeleteConnectionSettingsResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$13.GetConnectionSettingsResult> get_Pre($grpc.ServiceCall call, $async.Future<$13.GetConnectionSettingsRequest> request) async {
|
||||
return get(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$13.PutConnectionSettingsResult> put_Pre($grpc.ServiceCall call, $async.Future<$13.PutConnectionSettingsRequest> request) async {
|
||||
return put(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$13.DeleteConnectionSettingsResult> delete_Pre($grpc.ServiceCall call, $async.Future<$13.DeleteConnectionSettingsRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$13.GetConnectionSettingsResult> get($grpc.ServiceCall call, $13.GetConnectionSettingsRequest request);
|
||||
$async.Future<$13.PutConnectionSettingsResult> put($grpc.ServiceCall call, $13.PutConnectionSettingsRequest request);
|
||||
$async.Future<$13.DeleteConnectionSettingsResult> delete($grpc.ServiceCall call, $13.DeleteConnectionSettingsRequest request);
|
||||
}
|
||||
127
lib/connectionSettings.pbjson.dart
Normal file
127
lib/connectionSettings.pbjson.dart
Normal file
@@ -0,0 +1,127 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connectionSettings.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use connectionSettingsDescriptor instead')
|
||||
const ConnectionSettings$json = {
|
||||
'1': 'ConnectionSettings',
|
||||
'2': [
|
||||
{'1': 'connectionID', '3': 1, '4': 1, '5': 9, '10': 'connectionID'},
|
||||
{'1': 'settings', '3': 2, '4': 1, '5': 9, '10': 'settings'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ConnectionSettings`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List connectionSettingsDescriptor = $convert.base64Decode(
|
||||
'ChJDb25uZWN0aW9uU2V0dGluZ3MSIgoMY29ubmVjdGlvbklEGAEgASgJUgxjb25uZWN0aW9uSU'
|
||||
'QSGgoIc2V0dGluZ3MYAiABKAlSCHNldHRpbmdz');
|
||||
|
||||
@$core.Deprecated('Use putConnectionSettingsRequestDescriptor instead')
|
||||
const PutConnectionSettingsRequest$json = {
|
||||
'1': 'PutConnectionSettingsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'settings', '3': 2, '4': 3, '5': 11, '6': '.api.PutConnectionSettingsRequest.SettingsEntry', '8': {}, '10': 'settings'},
|
||||
],
|
||||
'3': [PutConnectionSettingsRequest_SettingsEntry$json],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use putConnectionSettingsRequestDescriptor instead')
|
||||
const PutConnectionSettingsRequest_SettingsEntry$json = {
|
||||
'1': 'SettingsEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 9, '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `PutConnectionSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putConnectionSettingsRequestDescriptor = $convert.base64Decode(
|
||||
'ChxQdXRDb25uZWN0aW9uU2V0dGluZ3NSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS5SZX'
|
||||
'F1ZXN0Q29ubmVjdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchKMAQoIc2V0dGluZ3MYAiAD'
|
||||
'KAsyLy5hcGkuUHV0Q29ubmVjdGlvblNldHRpbmdzUmVxdWVzdC5TZXR0aW5nc0VudHJ5Qj+SQT'
|
||||
'QyMnNldHRpbmdzOiBhdCBsZWFzdCBvbmUgcGFpciBvZiAia2V5OiB2YWx1ZSIgbmVlZGVk+kIF'
|
||||
'mgECCAFSCHNldHRpbmdzGjsKDVNldHRpbmdzRW50cnkSEAoDa2V5GAEgASgJUgNrZXkSFAoFdm'
|
||||
'FsdWUYAiABKAlSBXZhbHVlOgI4ATozkkEwCi4yI1NldHRpbmdzIG9mIHRoZSBjb25uZWN0aW9u'
|
||||
'IHRvIHN0b3Jl0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use putConnectionSettingsResultDescriptor instead')
|
||||
const PutConnectionSettingsResult$json = {
|
||||
'1': 'PutConnectionSettingsResult',
|
||||
'2': [
|
||||
{'1': 'settings', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'settings'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `PutConnectionSettingsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List putConnectionSettingsResultDescriptor = $convert.base64Decode(
|
||||
'ChtQdXRDb25uZWN0aW9uU2V0dGluZ3NSZXN1bHQSIwoIc2V0dGluZ3MYASABKAlCB/pCBHICEA'
|
||||
'FSCHNldHRpbmdzOhiSQRUKEzIRU2V0dGluZ3MgcmVzcG9uc2U=');
|
||||
|
||||
@$core.Deprecated('Use getConnectionSettingsRequestDescriptor instead')
|
||||
const GetConnectionSettingsRequest$json = {
|
||||
'1': 'GetConnectionSettingsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetConnectionSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getConnectionSettingsRequestDescriptor = $convert.base64Decode(
|
||||
'ChxHZXRDb25uZWN0aW9uU2V0dGluZ3NSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS5SZX'
|
||||
'F1ZXN0Q29ubmVjdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlcjoxkkEuCiwyIVNldHRpbmdz'
|
||||
'IG9mIHRoZSBjb25uZWN0aW9uIHRvIGdldNIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use getConnectionSettingsResultDescriptor instead')
|
||||
const GetConnectionSettingsResult$json = {
|
||||
'1': 'GetConnectionSettingsResult',
|
||||
'2': [
|
||||
{'1': 'settings', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'settings'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetConnectionSettingsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getConnectionSettingsResultDescriptor = $convert.base64Decode(
|
||||
'ChtHZXRDb25uZWN0aW9uU2V0dGluZ3NSZXN1bHQSIwoIc2V0dGluZ3MYASABKAlCB/pCBHICEA'
|
||||
'FSCHNldHRpbmdzOhiSQRUKEzIRU2V0dGluZ3MgcmVzcG9uc2U=');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionSettingsRequestDescriptor instead')
|
||||
const DeleteConnectionSettingsRequest$json = {
|
||||
'1': 'DeleteConnectionSettingsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestConnectionHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionSettingsRequestDescriptor = $convert.base64Decode(
|
||||
'Ch9EZWxldGVDb25uZWN0aW9uU2V0dGluZ3NSZXF1ZXN0Ej4KBkhlYWRlchgBIAEoCzIcLmFwaS'
|
||||
'5SZXF1ZXN0Q29ubmVjdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlcjo2kkEzCjEyJkNvbm5l'
|
||||
'Y3Rpb25JRCBvZiB0aGUgc2V0dGluZ3MgdG8gZGVsZXRl0gEGSGVhZGVy');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectionSettingsResultDescriptor instead')
|
||||
const DeleteConnectionSettingsResult$json = {
|
||||
'1': 'DeleteConnectionSettingsResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectionSettingsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectionSettingsResultDescriptor = $convert.base64Decode(
|
||||
'Ch5EZWxldGVDb25uZWN0aW9uU2V0dGluZ3NSZXN1bHQ=');
|
||||
|
||||
1274
lib/connector.pb.dart
Normal file
1274
lib/connector.pb.dart
Normal file
File diff suppressed because it is too large
Load Diff
88
lib/connector.pbenum.dart
Normal file
88
lib/connector.pbenum.dart
Normal file
@@ -0,0 +1,88 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connector.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
class ConnectorType extends $pb.ProtobufEnum {
|
||||
static const ConnectorType CUSTOM = ConnectorType._(0, _omitEnumNames ? '' : 'CUSTOM');
|
||||
static const ConnectorType RFX = ConnectorType._(10, _omitEnumNames ? '' : 'RFX');
|
||||
static const ConnectorType TDI = ConnectorType._(20, _omitEnumNames ? '' : 'TDI');
|
||||
|
||||
static const $core.List<ConnectorType> values = <ConnectorType> [
|
||||
CUSTOM,
|
||||
RFX,
|
||||
TDI,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ConnectorType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ConnectorType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ConnectorType._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class ParameterMetadataType extends $pb.ProtobufEnum {
|
||||
static const ParameterMetadataType STRING = ParameterMetadataType._(0, _omitEnumNames ? '' : 'STRING');
|
||||
static const ParameterMetadataType INTEGER = ParameterMetadataType._(10, _omitEnumNames ? '' : 'INTEGER');
|
||||
static const ParameterMetadataType BOOLEAN = ParameterMetadataType._(20, _omitEnumNames ? '' : 'BOOLEAN');
|
||||
static const ParameterMetadataType FILE = ParameterMetadataType._(30, _omitEnumNames ? '' : 'FILE');
|
||||
static const ParameterMetadataType URL = ParameterMetadataType._(40, _omitEnumNames ? '' : 'URL');
|
||||
static const ParameterMetadataType SET = ParameterMetadataType._(50, _omitEnumNames ? '' : 'SET');
|
||||
|
||||
static const $core.List<ParameterMetadataType> values = <ParameterMetadataType> [
|
||||
STRING,
|
||||
INTEGER,
|
||||
BOOLEAN,
|
||||
FILE,
|
||||
URL,
|
||||
SET,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, ParameterMetadataType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static ParameterMetadataType? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const ParameterMetadataType._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
class Keyword extends $pb.ProtobufEnum {
|
||||
static const Keyword UNKNOWN = Keyword._(0, _omitEnumNames ? '' : 'UNKNOWN');
|
||||
static const Keyword ORGANISATION_ID = Keyword._(10, _omitEnumNames ? '' : 'ORGANISATION_ID');
|
||||
static const Keyword PROJECT_ID = Keyword._(20, _omitEnumNames ? '' : 'PROJECT_ID');
|
||||
static const Keyword PARTNER_APP_ID = Keyword._(30, _omitEnumNames ? '' : 'PARTNER_APP_ID');
|
||||
static const Keyword AUTHZ_ENDPOINT = Keyword._(40, _omitEnumNames ? '' : 'AUTHZ_ENDPOINT');
|
||||
static const Keyword BUCKET_ROOT = Keyword._(50, _omitEnumNames ? '' : 'BUCKET_ROOT');
|
||||
static const Keyword GRPC_API_CORE_ENDPOINT = Keyword._(60, _omitEnumNames ? '' : 'GRPC_API_CORE_ENDPOINT');
|
||||
static const Keyword GRPC_API_GCS_ENDPOINT = Keyword._(70, _omitEnumNames ? '' : 'GRPC_API_GCS_ENDPOINT');
|
||||
static const Keyword NATS_ENDPOINT = Keyword._(80, _omitEnumNames ? '' : 'NATS_ENDPOINT');
|
||||
static const Keyword NATS_ROOT_SUBJECT = Keyword._(90, _omitEnumNames ? '' : 'NATS_ROOT_SUBJECT');
|
||||
|
||||
static const $core.List<Keyword> values = <Keyword> [
|
||||
UNKNOWN,
|
||||
ORGANISATION_ID,
|
||||
PROJECT_ID,
|
||||
PARTNER_APP_ID,
|
||||
AUTHZ_ENDPOINT,
|
||||
BUCKET_ROOT,
|
||||
GRPC_API_CORE_ENDPOINT,
|
||||
GRPC_API_GCS_ENDPOINT,
|
||||
NATS_ENDPOINT,
|
||||
NATS_ROOT_SUBJECT,
|
||||
];
|
||||
|
||||
static final $core.Map<$core.int, Keyword> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||
static Keyword? valueOf($core.int value) => _byValue[value];
|
||||
|
||||
const Keyword._($core.int v, $core.String n) : super(v, n);
|
||||
}
|
||||
|
||||
|
||||
const _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||
159
lib/connector.pbgrpc.dart
Normal file
159
lib/connector.pbgrpc.dart
Normal file
@@ -0,0 +1,159 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connector.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'connector.pb.dart' as $5;
|
||||
|
||||
export 'connector.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectorService')
|
||||
class ConnectorServiceClient extends $grpc.Client {
|
||||
static final _$create = $grpc.ClientMethod<$5.CreateConnectorRequest, $5.CreateConnectorResult>(
|
||||
'/api.ConnectorService/Create',
|
||||
($5.CreateConnectorRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.CreateConnectorResult.fromBuffer(value));
|
||||
static final _$update = $grpc.ClientMethod<$5.UpdateConnectorRequest, $5.UpdateConnectorResult>(
|
||||
'/api.ConnectorService/Update',
|
||||
($5.UpdateConnectorRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.UpdateConnectorResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$5.DeleteConnectorRequest, $5.DeleteConnectorResult>(
|
||||
'/api.ConnectorService/Delete',
|
||||
($5.DeleteConnectorRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.DeleteConnectorResult.fromBuffer(value));
|
||||
static final _$get = $grpc.ClientMethod<$5.GetConnectorRequest, $5.GetConnectorResult>(
|
||||
'/api.ConnectorService/Get',
|
||||
($5.GetConnectorRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.GetConnectorResult.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$5.ListConnectorsRequest, $5.ListConnectorsResult>(
|
||||
'/api.ConnectorService/List',
|
||||
($5.ListConnectorsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.ListConnectorsResult.fromBuffer(value));
|
||||
static final _$listAvailable = $grpc.ClientMethod<$5.ListAvailableConnectorsRequest, $5.ListAvailableConnectorsResult>(
|
||||
'/api.ConnectorService/ListAvailable',
|
||||
($5.ListAvailableConnectorsRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $5.ListAvailableConnectorsResult.fromBuffer(value));
|
||||
|
||||
ConnectorServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
$core.Iterable<$grpc.ClientInterceptor>? interceptors})
|
||||
: super(channel, options: options,
|
||||
interceptors: interceptors);
|
||||
|
||||
$grpc.ResponseFuture<$5.CreateConnectorResult> create($5.CreateConnectorRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$5.UpdateConnectorResult> update($5.UpdateConnectorRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$update, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$5.DeleteConnectorResult> delete($5.DeleteConnectorRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$5.GetConnectorResult> get($5.GetConnectorRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$5.ListConnectorsResult> list($5.ListConnectorsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$5.ListAvailableConnectorsResult> listAvailable($5.ListAvailableConnectorsRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$listAvailable, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ConnectorService')
|
||||
abstract class ConnectorServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.ConnectorService';
|
||||
|
||||
ConnectorServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$5.CreateConnectorRequest, $5.CreateConnectorResult>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.CreateConnectorRequest.fromBuffer(value),
|
||||
($5.CreateConnectorResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$5.UpdateConnectorRequest, $5.UpdateConnectorResult>(
|
||||
'Update',
|
||||
update_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.UpdateConnectorRequest.fromBuffer(value),
|
||||
($5.UpdateConnectorResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$5.DeleteConnectorRequest, $5.DeleteConnectorResult>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.DeleteConnectorRequest.fromBuffer(value),
|
||||
($5.DeleteConnectorResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$5.GetConnectorRequest, $5.GetConnectorResult>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.GetConnectorRequest.fromBuffer(value),
|
||||
($5.GetConnectorResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$5.ListConnectorsRequest, $5.ListConnectorsResult>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.ListConnectorsRequest.fromBuffer(value),
|
||||
($5.ListConnectorsResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$5.ListAvailableConnectorsRequest, $5.ListAvailableConnectorsResult>(
|
||||
'ListAvailable',
|
||||
listAvailable_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $5.ListAvailableConnectorsRequest.fromBuffer(value),
|
||||
($5.ListAvailableConnectorsResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$5.CreateConnectorResult> create_Pre($grpc.ServiceCall call, $async.Future<$5.CreateConnectorRequest> request) async {
|
||||
return create(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.UpdateConnectorResult> update_Pre($grpc.ServiceCall call, $async.Future<$5.UpdateConnectorRequest> request) async {
|
||||
return update(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.DeleteConnectorResult> delete_Pre($grpc.ServiceCall call, $async.Future<$5.DeleteConnectorRequest> request) async {
|
||||
return delete(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.GetConnectorResult> get_Pre($grpc.ServiceCall call, $async.Future<$5.GetConnectorRequest> request) async {
|
||||
return get(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.ListConnectorsResult> list_Pre($grpc.ServiceCall call, $async.Future<$5.ListConnectorsRequest> request) async {
|
||||
return list(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.ListAvailableConnectorsResult> listAvailable_Pre($grpc.ServiceCall call, $async.Future<$5.ListAvailableConnectorsRequest> request) async {
|
||||
return listAvailable(call, await request);
|
||||
}
|
||||
|
||||
$async.Future<$5.CreateConnectorResult> create($grpc.ServiceCall call, $5.CreateConnectorRequest request);
|
||||
$async.Future<$5.UpdateConnectorResult> update($grpc.ServiceCall call, $5.UpdateConnectorRequest request);
|
||||
$async.Future<$5.DeleteConnectorResult> delete($grpc.ServiceCall call, $5.DeleteConnectorRequest request);
|
||||
$async.Future<$5.GetConnectorResult> get($grpc.ServiceCall call, $5.GetConnectorRequest request);
|
||||
$async.Future<$5.ListConnectorsResult> list($grpc.ServiceCall call, $5.ListConnectorsRequest request);
|
||||
$async.Future<$5.ListAvailableConnectorsResult> listAvailable($grpc.ServiceCall call, $5.ListAvailableConnectorsRequest request);
|
||||
}
|
||||
345
lib/connector.pbjson.dart
Normal file
345
lib/connector.pbjson.dart
Normal file
@@ -0,0 +1,345 @@
|
||||
//
|
||||
// Generated code. Do not modify.
|
||||
// source: connector.proto
|
||||
//
|
||||
// @dart = 2.12
|
||||
|
||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
||||
// 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;
|
||||
import 'dart:typed_data' as $typed_data;
|
||||
|
||||
@$core.Deprecated('Use connectorTypeDescriptor instead')
|
||||
const ConnectorType$json = {
|
||||
'1': 'ConnectorType',
|
||||
'2': [
|
||||
{'1': 'CUSTOM', '2': 0},
|
||||
{'1': 'RFX', '2': 10},
|
||||
{'1': 'TDI', '2': 20},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ConnectorType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List connectorTypeDescriptor = $convert.base64Decode(
|
||||
'Cg1Db25uZWN0b3JUeXBlEgoKBkNVU1RPTRAAEgcKA1JGWBAKEgcKA1RESRAU');
|
||||
|
||||
@$core.Deprecated('Use parameterMetadataTypeDescriptor instead')
|
||||
const ParameterMetadataType$json = {
|
||||
'1': 'ParameterMetadataType',
|
||||
'2': [
|
||||
{'1': 'STRING', '2': 0},
|
||||
{'1': 'INTEGER', '2': 10},
|
||||
{'1': 'BOOLEAN', '2': 20},
|
||||
{'1': 'FILE', '2': 30},
|
||||
{'1': 'URL', '2': 40},
|
||||
{'1': 'SET', '2': 50},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ParameterMetadataType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List parameterMetadataTypeDescriptor = $convert.base64Decode(
|
||||
'ChVQYXJhbWV0ZXJNZXRhZGF0YVR5cGUSCgoGU1RSSU5HEAASCwoHSU5URUdFUhAKEgsKB0JPT0'
|
||||
'xFQU4QFBIICgRGSUxFEB4SBwoDVVJMECgSBwoDU0VUEDI=');
|
||||
|
||||
@$core.Deprecated('Use keywordDescriptor instead')
|
||||
const Keyword$json = {
|
||||
'1': 'Keyword',
|
||||
'2': [
|
||||
{'1': 'UNKNOWN', '2': 0},
|
||||
{'1': 'ORGANISATION_ID', '2': 10},
|
||||
{'1': 'PROJECT_ID', '2': 20},
|
||||
{'1': 'PARTNER_APP_ID', '2': 30},
|
||||
{'1': 'AUTHZ_ENDPOINT', '2': 40},
|
||||
{'1': 'BUCKET_ROOT', '2': 50},
|
||||
{'1': 'GRPC_API_CORE_ENDPOINT', '2': 60},
|
||||
{'1': 'GRPC_API_GCS_ENDPOINT', '2': 70},
|
||||
{'1': 'NATS_ENDPOINT', '2': 80},
|
||||
{'1': 'NATS_ROOT_SUBJECT', '2': 90},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `Keyword`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List keywordDescriptor = $convert.base64Decode(
|
||||
'CgdLZXl3b3JkEgsKB1VOS05PV04QABITCg9PUkdBTklTQVRJT05fSUQQChIOCgpQUk9KRUNUX0'
|
||||
'lEEBQSEgoOUEFSVE5FUl9BUFBfSUQQHhISCg5BVVRIWl9FTkRQT0lOVBAoEg8KC0JVQ0tFVF9S'
|
||||
'T09UEDISGgoWR1JQQ19BUElfQ09SRV9FTkRQT0lOVBA8EhkKFUdSUENfQVBJX0dDU19FTkRQT0'
|
||||
'lOVBBGEhEKDU5BVFNfRU5EUE9JTlQQUBIVChFOQVRTX1JPT1RfU1VCSkVDVBBa');
|
||||
|
||||
@$core.Deprecated('Use connectorDescriptor instead')
|
||||
const Connector$json = {
|
||||
'1': 'Connector',
|
||||
'2': [
|
||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ID'},
|
||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'Type', '3': 3, '4': 1, '5': 14, '6': '.api.ConnectorType', '8': {}, '10': 'Type'},
|
||||
{'1': 'Description', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Description'},
|
||||
{'1': 'Version', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'Version'},
|
||||
{'1': 'RepoUrl', '3': 6, '4': 1, '5': 9, '10': 'RepoUrl'},
|
||||
{'1': 'MainClassName', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'MainClassName'},
|
||||
{'1': 'JarName', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'JarName'},
|
||||
{'1': 'SetupJson', '3': 9, '4': 1, '5': 9, '10': 'SetupJson'},
|
||||
{'1': 'MetadataJSONParameters', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'MetadataJSONParameters'},
|
||||
{'1': 'NbSlots', '3': 11, '4': 1, '5': 5, '10': 'NbSlots'},
|
||||
{'1': 'DistributionName', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'DistributionName'},
|
||||
{'1': 'Release', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'Release'},
|
||||
{'1': 'ActionsJSONParameters', '3': 14, '4': 1, '5': 9, '8': {}, '10': 'ActionsJSONParameters'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `Connector`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List connectorDescriptor = $convert.base64Decode(
|
||||
'CglDb25uZWN0b3ISOwoCSUQYASABKAlCK5JBEYoBDl4oW2EtejAtOS1dKSsk+kIUchIQATIOXi'
|
||||
'hbYS16MC05LV0pKyRSAklEEhsKBE5hbWUYAiABKAlCB/pCBHICEAFSBE5hbWUSMAoEVHlwZRgD'
|
||||
'IAEoDjISLmFwaS5Db25uZWN0b3JUeXBlQgj6QgWCAQIQAVIEVHlwZRIpCgtEZXNjcmlwdGlvbh'
|
||||
'gEIAEoCUIH+kIEcgIQAVILRGVzY3JpcHRpb24SIQoHVmVyc2lvbhgFIAEoCUIH+kIEcgIQAVIH'
|
||||
'VmVyc2lvbhIYCgdSZXBvVXJsGAYgASgJUgdSZXBvVXJsEi0KDU1haW5DbGFzc05hbWUYByABKA'
|
||||
'lCB/pCBHICEAFSDU1haW5DbGFzc05hbWUSIQoHSmFyTmFtZRgIIAEoCUIH+kIEcgIQAVIHSmFy'
|
||||
'TmFtZRIcCglTZXR1cEpzb24YCSABKAlSCVNldHVwSnNvbhI/ChZNZXRhZGF0YUpTT05QYXJhbW'
|
||||
'V0ZXJzGAogASgJQgf6QgRyAhABUhZNZXRhZGF0YUpTT05QYXJhbWV0ZXJzEhgKB05iU2xvdHMY'
|
||||
'CyABKAVSB05iU2xvdHMSMwoQRGlzdHJpYnV0aW9uTmFtZRgMIAEoCUIH+kIEcgIQAVIQRGlzdH'
|
||||
'JpYnV0aW9uTmFtZRIhCgdSZWxlYXNlGA0gASgJQgf6QgRyAhABUgdSZWxlYXNlEj0KFUFjdGlv'
|
||||
'bnNKU09OUGFyYW1ldGVycxgOIAEoCUIH+kIEcgIQAVIVQWN0aW9uc0pTT05QYXJhbWV0ZXJzOp'
|
||||
'MBkkGPAQqMAdIBAklE0gEETmFtZdIBC0Rlc2NyaXB0aW9u0gEHVmVyc2lvbtIBDU1haW5DbGFz'
|
||||
'c05hbWXSAQdKYXJOYW1l0gEWTWV0YWRhdGFKU09OUGFyYW1ldGVyc9IBEERpc3RyaWJ1dGlvbk'
|
||||
'5hbWXSAQdSZWxlYXNl0gEVQWN0aW9uc0pTT05QYXJhbWV0ZXJz');
|
||||
|
||||
@$core.Deprecated('Use parameterMetadataDescriptor instead')
|
||||
const ParameterMetadata$json = {
|
||||
'1': 'ParameterMetadata',
|
||||
'2': [
|
||||
{'1': 'name', '3': 1, '4': 1, '5': 9, '10': 'name'},
|
||||
{'1': 'label', '3': 2, '4': 1, '5': 9, '10': 'label'},
|
||||
{'1': 'help_text', '3': 3, '4': 1, '5': 9, '10': 'helpText'},
|
||||
{'1': 'mandatory', '3': 4, '4': 1, '5': 8, '10': 'mandatory'},
|
||||
{'1': 'group_id', '3': 5, '4': 1, '5': 9, '10': 'groupId'},
|
||||
{'1': 'order_id', '3': 6, '4': 1, '5': 5, '10': 'orderId'},
|
||||
{'1': 'type', '3': 7, '4': 1, '5': 9, '10': 'type'},
|
||||
{'1': 'custom_info', '3': 8, '4': 3, '5': 11, '6': '.api.ParameterMetadata.CustomInfoEntry', '10': 'customInfo'},
|
||||
],
|
||||
'3': [ParameterMetadata_CustomInfoEntry$json],
|
||||
};
|
||||
|
||||
@$core.Deprecated('Use parameterMetadataDescriptor instead')
|
||||
const ParameterMetadata_CustomInfoEntry$json = {
|
||||
'1': 'CustomInfoEntry',
|
||||
'2': [
|
||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||
{'1': 'value', '3': 2, '4': 1, '5': 9, '10': 'value'},
|
||||
],
|
||||
'7': {'7': true},
|
||||
};
|
||||
|
||||
/// Descriptor for `ParameterMetadata`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List parameterMetadataDescriptor = $convert.base64Decode(
|
||||
'ChFQYXJhbWV0ZXJNZXRhZGF0YRISCgRuYW1lGAEgASgJUgRuYW1lEhQKBWxhYmVsGAIgASgJUg'
|
||||
'VsYWJlbBIbCgloZWxwX3RleHQYAyABKAlSCGhlbHBUZXh0EhwKCW1hbmRhdG9yeRgEIAEoCFIJ'
|
||||
'bWFuZGF0b3J5EhkKCGdyb3VwX2lkGAUgASgJUgdncm91cElkEhkKCG9yZGVyX2lkGAYgASgFUg'
|
||||
'dvcmRlcklkEhIKBHR5cGUYByABKAlSBHR5cGUSRwoLY3VzdG9tX2luZm8YCCADKAsyJi5hcGku'
|
||||
'UGFyYW1ldGVyTWV0YWRhdGEuQ3VzdG9tSW5mb0VudHJ5UgpjdXN0b21JbmZvGj0KD0N1c3RvbU'
|
||||
'luZm9FbnRyeRIQCgNrZXkYASABKAlSA2tleRIUCgV2YWx1ZRgCIAEoCVIFdmFsdWU6AjgB');
|
||||
|
||||
@$core.Deprecated('Use createConnectorRequestDescriptor instead')
|
||||
const CreateConnectorRequest$json = {
|
||||
'1': 'CreateConnectorRequest',
|
||||
'2': [
|
||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
||||
{'1': 'Type', '3': 2, '4': 1, '5': 14, '6': '.api.ConnectorType', '8': {}, '10': 'Type'},
|
||||
{'1': 'Description', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Description'},
|
||||
{'1': 'Version', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Version'},
|
||||
{'1': 'RepoUrl', '3': 5, '4': 1, '5': 9, '10': 'RepoUrl'},
|
||||
{'1': 'MainClassName', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'MainClassName'},
|
||||
{'1': 'JarName', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'JarName'},
|
||||
{'1': 'SetupJson', '3': 8, '4': 1, '5': 9, '10': 'SetupJson'},
|
||||
{'1': 'MetadataJSONParameters', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'MetadataJSONParameters'},
|
||||
{'1': 'NbSlots', '3': 10, '4': 1, '5': 5, '10': 'NbSlots'},
|
||||
{'1': 'Permissions', '3': 11, '4': 3, '5': 11, '6': '.api.Permission', '10': 'Permissions'},
|
||||
{'1': 'DistributionName', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'DistributionName'},
|
||||
{'1': 'ActionsJSONParameters', '3': 13, '4': 1, '5': 9, '8': {}, '10': 'ActionsJSONParameters'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateConnectorRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createConnectorRequestDescriptor = $convert.base64Decode(
|
||||
'ChZDcmVhdGVDb25uZWN0b3JSZXF1ZXN0EkUKBE5hbWUYASABKAlCMZJBFIoBEV4oW0EtWmEtej'
|
||||
'AtOS1dKSsk+kIXchUQATIRXihbQS1aYS16MC05LV0pKyRSBE5hbWUSMAoEVHlwZRgCIAEoDjIS'
|
||||
'LmFwaS5Db25uZWN0b3JUeXBlQgj6QgWCAQIQAVIEVHlwZRIpCgtEZXNjcmlwdGlvbhgDIAEoCU'
|
||||
'IH+kIEcgIQAVILRGVzY3JpcHRpb24STQoHVmVyc2lvbhgEIAEoCUIzkkEVigESXihbQS1aYS16'
|
||||
'MC05LS5dKSsk+kIYchYQATISXihbQS1aYS16MC05LS5dKSskUgdWZXJzaW9uEhgKB1JlcG9Vcm'
|
||||
'wYBSABKAlSB1JlcG9VcmwSLQoNTWFpbkNsYXNzTmFtZRgGIAEoCUIH+kIEcgIQAVINTWFpbkNs'
|
||||
'YXNzTmFtZRIhCgdKYXJOYW1lGAcgASgJQgf6QgRyAhABUgdKYXJOYW1lEhwKCVNldHVwSnNvbh'
|
||||
'gIIAEoCVIJU2V0dXBKc29uEj8KFk1ldGFkYXRhSlNPTlBhcmFtZXRlcnMYCSABKAlCB/pCBHIC'
|
||||
'EAFSFk1ldGFkYXRhSlNPTlBhcmFtZXRlcnMSGAoHTmJTbG90cxgKIAEoBVIHTmJTbG90cxIxCg'
|
||||
'tQZXJtaXNzaW9ucxgLIAMoCzIPLmFwaS5QZXJtaXNzaW9uUgtQZXJtaXNzaW9ucxIzChBEaXN0'
|
||||
'cmlidXRpb25OYW1lGAwgASgJQgf6QgRyAhABUhBEaXN0cmlidXRpb25OYW1lEj0KFUFjdGlvbn'
|
||||
'NKU09OUGFyYW1ldGVycxgNIAEoCUIH+kIEcgIQAVIVQWN0aW9uc0pTT05QYXJhbWV0ZXJzOoIB'
|
||||
'kkF/Cn3SAQROYW1l0gELRGVzY3JpcHRpb27SAQdWZXJzaW9u0gENTWFpbkNsYXNzTmFtZdIBB0'
|
||||
'phck5hbWXSARZNZXRhZGF0YUpTT05QYXJhbWV0ZXJz0gEQRGlzdHJpYnV0aW9uTmFtZdIBFUFj'
|
||||
'dGlvbnNKU09OUGFyYW1ldGVycw==');
|
||||
|
||||
@$core.Deprecated('Use createConnectorResultDescriptor instead')
|
||||
const CreateConnectorResult$json = {
|
||||
'1': 'CreateConnectorResult',
|
||||
'2': [
|
||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.api.Connector', '10': 'Result'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `CreateConnectorResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List createConnectorResultDescriptor = $convert.base64Decode(
|
||||
'ChVDcmVhdGVDb25uZWN0b3JSZXN1bHQSJgoGUmVzdWx0GAEgASgLMg4uYXBpLkNvbm5lY3Rvcl'
|
||||
'IGUmVzdWx0');
|
||||
|
||||
@$core.Deprecated('Use updateConnectorRequestDescriptor instead')
|
||||
const UpdateConnectorRequest$json = {
|
||||
'1': 'UpdateConnectorRequest',
|
||||
'2': [
|
||||
{'1': 'ConnectorID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ConnectorID'},
|
||||
{'1': 'Description', '3': 2, '4': 1, '5': 9, '10': 'Description'},
|
||||
{'1': 'Version', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Version'},
|
||||
{'1': 'RepoUrl', '3': 4, '4': 1, '5': 9, '10': 'RepoUrl'},
|
||||
{'1': 'MainClassName', '3': 5, '4': 1, '5': 9, '10': 'MainClassName'},
|
||||
{'1': 'JarName', '3': 6, '4': 1, '5': 9, '10': 'JarName'},
|
||||
{'1': 'SetupJson', '3': 7, '4': 1, '5': 9, '10': 'SetupJson'},
|
||||
{'1': 'MetadataJSONParameters', '3': 8, '4': 1, '5': 9, '10': 'MetadataJSONParameters'},
|
||||
{'1': 'NbSlots', '3': 9, '4': 1, '5': 5, '10': 'NbSlots'},
|
||||
{'1': 'Permissions', '3': 10, '4': 3, '5': 11, '6': '.api.Permission', '10': 'Permissions'},
|
||||
{'1': 'ActionsJSONParameters', '3': 11, '4': 1, '5': 9, '10': 'ActionsJSONParameters'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateConnectorRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateConnectorRequestDescriptor = $convert.base64Decode(
|
||||
'ChZVcGRhdGVDb25uZWN0b3JSZXF1ZXN0EikKC0Nvbm5lY3RvcklEGAEgASgJQgf6QgRyAhABUg'
|
||||
'tDb25uZWN0b3JJRBIgCgtEZXNjcmlwdGlvbhgCIAEoCVILRGVzY3JpcHRpb24STQoHVmVyc2lv'
|
||||
'bhgDIAEoCUIzkkEVigESXihbQS1aYS16MC05LS5dKSsk+kIYchYQATISXihbQS1aYS16MC05LS'
|
||||
'5dKSskUgdWZXJzaW9uEhgKB1JlcG9VcmwYBCABKAlSB1JlcG9VcmwSJAoNTWFpbkNsYXNzTmFt'
|
||||
'ZRgFIAEoCVINTWFpbkNsYXNzTmFtZRIYCgdKYXJOYW1lGAYgASgJUgdKYXJOYW1lEhwKCVNldH'
|
||||
'VwSnNvbhgHIAEoCVIJU2V0dXBKc29uEjYKFk1ldGFkYXRhSlNPTlBhcmFtZXRlcnMYCCABKAlS'
|
||||
'Fk1ldGFkYXRhSlNPTlBhcmFtZXRlcnMSGAoHTmJTbG90cxgJIAEoBVIHTmJTbG90cxIxCgtQZX'
|
||||
'JtaXNzaW9ucxgKIAMoCzIPLmFwaS5QZXJtaXNzaW9uUgtQZXJtaXNzaW9ucxI0ChVBY3Rpb25z'
|
||||
'SlNPTlBhcmFtZXRlcnMYCyABKAlSFUFjdGlvbnNKU09OUGFyYW1ldGVyczodkkEaChjSAQtDb2'
|
||||
'5uZWN0b3JJRNIBB1ZlcnNpb24=');
|
||||
|
||||
@$core.Deprecated('Use updateConnectorResultDescriptor instead')
|
||||
const UpdateConnectorResult$json = {
|
||||
'1': 'UpdateConnectorResult',
|
||||
'2': [
|
||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.api.Connector', '10': 'Result'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `UpdateConnectorResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List updateConnectorResultDescriptor = $convert.base64Decode(
|
||||
'ChVVcGRhdGVDb25uZWN0b3JSZXN1bHQSJgoGUmVzdWx0GAEgASgLMg4uYXBpLkNvbm5lY3Rvcl'
|
||||
'IGUmVzdWx0');
|
||||
|
||||
@$core.Deprecated('Use getConnectorRequestDescriptor instead')
|
||||
const GetConnectorRequest$json = {
|
||||
'1': 'GetConnectorRequest',
|
||||
'2': [
|
||||
{'1': 'ConnectorID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ConnectorID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `GetConnectorRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getConnectorRequestDescriptor = $convert.base64Decode(
|
||||
'ChNHZXRDb25uZWN0b3JSZXF1ZXN0EikKC0Nvbm5lY3RvcklEGAEgASgJQgf6QgRyAhABUgtDb2'
|
||||
'5uZWN0b3JJRDoTkkEQCg7SAQtDb25uZWN0b3JJRA==');
|
||||
|
||||
@$core.Deprecated('Use getConnectorResultDescriptor instead')
|
||||
const GetConnectorResult$json = {
|
||||
'1': 'GetConnectorResult',
|
||||
'2': [
|
||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.api.Connector', '10': 'Result'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetConnectorResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getConnectorResultDescriptor = $convert.base64Decode(
|
||||
'ChJHZXRDb25uZWN0b3JSZXN1bHQSJgoGUmVzdWx0GAEgASgLMg4uYXBpLkNvbm5lY3RvclIGUm'
|
||||
'VzdWx0');
|
||||
|
||||
@$core.Deprecated('Use listConnectorsRequestDescriptor instead')
|
||||
const ListConnectorsRequest$json = {
|
||||
'1': 'ListConnectorsRequest',
|
||||
'2': [
|
||||
{'1': 'Paging', '3': 1, '4': 1, '5': 11, '6': '.api.Paging', '10': 'Paging'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectorsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectorsRequestDescriptor = $convert.base64Decode(
|
||||
'ChVMaXN0Q29ubmVjdG9yc1JlcXVlc3QSIwoGUGFnaW5nGAEgASgLMgsuYXBpLlBhZ2luZ1IGUG'
|
||||
'FnaW5n');
|
||||
|
||||
@$core.Deprecated('Use listConnectorsResultDescriptor instead')
|
||||
const ListConnectorsResult$json = {
|
||||
'1': 'ListConnectorsResult',
|
||||
'2': [
|
||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.api.Connector', '10': 'Results'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListConnectorsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listConnectorsResultDescriptor = $convert.base64Decode(
|
||||
'ChRMaXN0Q29ubmVjdG9yc1Jlc3VsdBIoCgdSZXN1bHRzGAEgAygLMg4uYXBpLkNvbm5lY3Rvcl'
|
||||
'IHUmVzdWx0cw==');
|
||||
|
||||
@$core.Deprecated('Use listAvailableConnectorsRequestDescriptor instead')
|
||||
const ListAvailableConnectorsRequest$json = {
|
||||
'1': 'ListAvailableConnectorsRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAvailableConnectorsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAvailableConnectorsRequestDescriptor = $convert.base64Decode(
|
||||
'Ch5MaXN0QXZhaWxhYmxlQ29ubmVjdG9yc1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use listAvailableConnectorsResultDescriptor instead')
|
||||
const ListAvailableConnectorsResult$json = {
|
||||
'1': 'ListAvailableConnectorsResult',
|
||||
'2': [
|
||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.api.Connector', '10': 'Results'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ListAvailableConnectorsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List listAvailableConnectorsResultDescriptor = $convert.base64Decode(
|
||||
'Ch1MaXN0QXZhaWxhYmxlQ29ubmVjdG9yc1Jlc3VsdBIoCgdSZXN1bHRzGAEgAygLMg4uYXBpLk'
|
||||
'Nvbm5lY3RvclIHUmVzdWx0cw==');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectorRequestDescriptor instead')
|
||||
const DeleteConnectorRequest$json = {
|
||||
'1': 'DeleteConnectorRequest',
|
||||
'2': [
|
||||
{'1': 'ConnectorID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ConnectorID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectorRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectorRequestDescriptor = $convert.base64Decode(
|
||||
'ChZEZWxldGVDb25uZWN0b3JSZXF1ZXN0EikKC0Nvbm5lY3RvcklEGAEgASgJQgf6QgRyAhABUg'
|
||||
'tDb25uZWN0b3JJRDoTkkEQCg7SAQtDb25uZWN0b3JJRA==');
|
||||
|
||||
@$core.Deprecated('Use deleteConnectorResultDescriptor instead')
|
||||
const DeleteConnectorResult$json = {
|
||||
'1': 'DeleteConnectorResult',
|
||||
};
|
||||
|
||||
/// Descriptor for `DeleteConnectorResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List deleteConnectorResultDescriptor = $convert.base64Decode(
|
||||
'ChVEZWxldGVDb25uZWN0b3JSZXN1bHQ=');
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user