You've already forked dart-viz-sdk
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
617149c263 | ||
|
|
d5915053c5 | ||
|
|
748d1ae38a | ||
|
|
bce826caff | ||
|
|
5892c1290a | ||
|
|
a588a4d07c | ||
|
|
546c1fb356 | ||
|
|
c32e13a2b9 | ||
|
|
21d4fdae03 | ||
|
|
f94a54a111 | ||
|
|
5cfc5300a9 | ||
|
|
8e1303b230 | ||
|
|
f71189ee89 | ||
|
|
a6d90806ef | ||
|
|
fcc8eb938a | ||
|
|
a61eda07cb | ||
|
|
26aacfb4e9 | ||
|
|
ae01a62b32 | ||
|
|
4a232a1a94 |
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.12.0-SNAPSHOT-250825131214
|
Lib version: 1.14.0-SNAPSHOT-260525130746
|
||||||
|
|||||||
70
README.md
70
README.md
@@ -1,2 +1,70 @@
|
|||||||
|
# Reflex Platform Dart SDK
|
||||||
|
|
||||||
|
This is the official **Dart SDK** for **Reflex Platform**. It provides client stubs for interacting with Reflex Platform APIs through **gRPC**.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Import the SDK and set up the gRPC client:
|
||||||
|
|
||||||
|
```dart
|
||||||
|
import 'package:dart_core_sdk/proj.pbgrpc.dart';
|
||||||
|
import 'package:grpc/grpc.dart';
|
||||||
|
|
||||||
|
class AuthInterceptor extends ClientInterceptor {
|
||||||
|
final String token;
|
||||||
|
|
||||||
|
AuthInterceptor(this.token);
|
||||||
|
|
||||||
|
@override
|
||||||
|
ResponseFuture<R> interceptUnary<Q, R>(
|
||||||
|
ClientMethod<Q, R> method, Q request, CallOptions options, invoker) {
|
||||||
|
final newOptions = options.mergedWith(CallOptions(metadata: {
|
||||||
|
'Authorization': 'Bearer ',
|
||||||
|
}));
|
||||||
|
return invoker(method, request, newOptions);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() async {
|
||||||
|
final channel = ClientChannel(
|
||||||
|
'grpc.viz.dev.reflex-platform.com',
|
||||||
|
port: 443,
|
||||||
|
options: const ChannelOptions(credentials: ChannelCredentials.secure()),
|
||||||
|
);
|
||||||
|
|
||||||
|
final client = ProjectServiceClient(
|
||||||
|
channel,
|
||||||
|
interceptors: [AuthInterceptor('YOUR_TOKEN')],
|
||||||
|
);
|
||||||
|
|
||||||
|
final request = GetMyUIContextRequest();
|
||||||
|
final response = await client.getMyUIContext(request);
|
||||||
|
|
||||||
|
print("Response: \");
|
||||||
|
|
||||||
|
await channel.shutdown();
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## gRPC Endpoint
|
||||||
|
|
||||||
|
The SDK connects to the following gRPC endpoint:
|
||||||
|
|
||||||
|
```
|
||||||
|
grpc.viz.dev.reflex-platform.com
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example Flutter Application
|
||||||
|
|
||||||
|
A more complete **Flutter** application that demonstrates how to integrate the **Reflex Platform Dart SDK** is available. This serves as a reference implementation for using the SDK in a mobile application.
|
||||||
|
|
||||||
|
Repository: [Flutter RP Example](https://git.dev.reflex-platform.com/reflex-platform/flutter-rp-example)
|
||||||
|
|
||||||
|
## Additional Resources
|
||||||
|
|
||||||
|
For more information on using the Reflex Platform SDK, please refer to the [documentation](https://docs.viz.dev.reflex-platform.com).
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This SDK is licensed under **MIT License**.
|
||||||
|
|
||||||
# dart libs from visibility model proto files
|
|
||||||
|
|||||||
@@ -22,12 +22,14 @@ class Annotations {
|
|||||||
static final openapiv2Swagger = $pb.Extension<$0.Swagger>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'openapiv2Swagger', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Swagger.getDefault, subBuilder: $0.Swagger.create);
|
static final openapiv2Swagger = $pb.Extension<$0.Swagger>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'openapiv2Swagger', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Swagger.getDefault, subBuilder: $0.Swagger.create);
|
||||||
static final openapiv2Operation = $pb.Extension<$0.Operation>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'openapiv2Operation', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Operation.getDefault, subBuilder: $0.Operation.create);
|
static final openapiv2Operation = $pb.Extension<$0.Operation>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'openapiv2Operation', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Operation.getDefault, subBuilder: $0.Operation.create);
|
||||||
static final openapiv2Schema = $pb.Extension<$0.Schema>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'openapiv2Schema', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Schema.getDefault, subBuilder: $0.Schema.create);
|
static final openapiv2Schema = $pb.Extension<$0.Schema>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'openapiv2Schema', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Schema.getDefault, subBuilder: $0.Schema.create);
|
||||||
|
static final openapiv2Enum = $pb.Extension<$0.EnumSchema>(_omitMessageNames ? '' : 'google.protobuf.EnumOptions', _omitFieldNames ? '' : 'openapiv2Enum', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.EnumSchema.getDefault, subBuilder: $0.EnumSchema.create);
|
||||||
static final openapiv2Tag = $pb.Extension<$0.Tag>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'openapiv2Tag', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Tag.getDefault, subBuilder: $0.Tag.create);
|
static final openapiv2Tag = $pb.Extension<$0.Tag>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'openapiv2Tag', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.Tag.getDefault, subBuilder: $0.Tag.create);
|
||||||
static final openapiv2Field = $pb.Extension<$0.JSONSchema>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'openapiv2Field', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.JSONSchema.getDefault, subBuilder: $0.JSONSchema.create);
|
static final openapiv2Field = $pb.Extension<$0.JSONSchema>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'openapiv2Field', 1042, $pb.PbFieldType.OM, defaultOrMaker: $0.JSONSchema.getDefault, subBuilder: $0.JSONSchema.create);
|
||||||
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
||||||
registry.add(openapiv2Swagger);
|
registry.add(openapiv2Swagger);
|
||||||
registry.add(openapiv2Operation);
|
registry.add(openapiv2Operation);
|
||||||
registry.add(openapiv2Schema);
|
registry.add(openapiv2Schema);
|
||||||
|
registry.add(openapiv2Enum);
|
||||||
registry.add(openapiv2Tag);
|
registry.add(openapiv2Tag);
|
||||||
registry.add(openapiv2Field);
|
registry.add(openapiv2Field);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -434,6 +434,7 @@ class Options {
|
|||||||
static final kpiGroups = $pb.Extension<KPIGroups>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'kpiGroups', 50008, $pb.PbFieldType.OM, protoName: 'kpiGroups', defaultOrMaker: KPIGroups.getDefault, subBuilder: KPIGroups.create);
|
static final kpiGroups = $pb.Extension<KPIGroups>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'kpiGroups', 50008, $pb.PbFieldType.OM, protoName: 'kpiGroups', defaultOrMaker: KPIGroups.getDefault, subBuilder: KPIGroups.create);
|
||||||
static final version = $pb.Extension<$core.int>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'version', 50009, $pb.PbFieldType.OU3);
|
static final version = $pb.Extension<$core.int>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'version', 50009, $pb.PbFieldType.OU3);
|
||||||
static final entityRscType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'entityRscType', 50010, $pb.PbFieldType.OS, protoName: 'entityRscType');
|
static final entityRscType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'entityRscType', 50010, $pb.PbFieldType.OS, protoName: 'entityRscType');
|
||||||
|
static final entityProjectTypes = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FileOptions', _omitFieldNames ? '' : 'entityProjectTypes', 50011, $pb.PbFieldType.OS, protoName: 'entityProjectTypes');
|
||||||
static final messageType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'messageType', 50100, $pb.PbFieldType.OS, protoName: 'messageType');
|
static final messageType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'messageType', 50100, $pb.PbFieldType.OS, protoName: 'messageType');
|
||||||
static final payload = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'payload', 50101, $pb.PbFieldType.OB);
|
static final payload = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'payload', 50101, $pb.PbFieldType.OB);
|
||||||
static final action = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'action', 50102, $pb.PbFieldType.OS);
|
static final action = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'action', 50102, $pb.PbFieldType.OS);
|
||||||
@@ -447,6 +448,8 @@ class Options {
|
|||||||
static final triggerNotEventFilters = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'triggerNotEventFilters', 50111, $pb.PbFieldType.OS, protoName: 'triggerNotEventFilters');
|
static final triggerNotEventFilters = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'triggerNotEventFilters', 50111, $pb.PbFieldType.OS, protoName: 'triggerNotEventFilters');
|
||||||
static final windowMethod = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'windowMethod', 50112, $pb.PbFieldType.OS, protoName: 'windowMethod');
|
static final windowMethod = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'windowMethod', 50112, $pb.PbFieldType.OS, protoName: 'windowMethod');
|
||||||
static final keyByExpression = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'keyByExpression', 50113, $pb.PbFieldType.OS, protoName: 'keyByExpression');
|
static final keyByExpression = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'keyByExpression', 50113, $pb.PbFieldType.OS, protoName: 'keyByExpression');
|
||||||
|
static final triggerMinStatusFilter = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'triggerMinStatusFilter', 50114, $pb.PbFieldType.OS, protoName: 'triggerMinStatusFilter');
|
||||||
|
static final triggerMaxStatusFilter = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'triggerMaxStatusFilter', 50115, $pb.PbFieldType.OS, protoName: 'triggerMaxStatusFilter');
|
||||||
static final metadata = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'metadata', 50200, $pb.PbFieldType.OB);
|
static final metadata = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'metadata', 50200, $pb.PbFieldType.OB);
|
||||||
static final mapPath = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'mapPath', 50201, $pb.PbFieldType.OS, protoName: 'mapPath');
|
static final mapPath = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'mapPath', 50201, $pb.PbFieldType.OS, protoName: 'mapPath');
|
||||||
static final language = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'language', 50202, $pb.PbFieldType.OB);
|
static final language = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'language', 50202, $pb.PbFieldType.OB);
|
||||||
@@ -469,6 +472,7 @@ class Options {
|
|||||||
static final mapTypePath = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'mapTypePath', 50220, $pb.PbFieldType.OS, protoName: 'mapTypePath');
|
static final mapTypePath = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'mapTypePath', 50220, $pb.PbFieldType.OS, protoName: 'mapTypePath');
|
||||||
static final indexationSkip = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'indexationSkip', 50221, $pb.PbFieldType.OB, protoName: 'indexationSkip');
|
static final indexationSkip = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'indexationSkip', 50221, $pb.PbFieldType.OB, protoName: 'indexationSkip');
|
||||||
static final indexationLimit = $pb.Extension<$core.int>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'indexationLimit', 50222, $pb.PbFieldType.OU3, protoName: 'indexationLimit');
|
static final indexationLimit = $pb.Extension<$core.int>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'indexationLimit', 50222, $pb.PbFieldType.OU3, protoName: 'indexationLimit');
|
||||||
|
static final enrichmentSkippedPath = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'enrichmentSkippedPath', 50223, $pb.PbFieldType.OS, protoName: 'enrichmentSkippedPath');
|
||||||
static final serviceType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'serviceType', 50300, $pb.PbFieldType.OS, protoName: 'serviceType');
|
static final serviceType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'serviceType', 50300, $pb.PbFieldType.OS, protoName: 'serviceType');
|
||||||
static final k8sService = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'k8sService', 50301, $pb.PbFieldType.OS, protoName: 'k8sService');
|
static final k8sService = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'k8sService', 50301, $pb.PbFieldType.OS, protoName: 'k8sService');
|
||||||
static final roleManager = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'roleManager', 50304, $pb.PbFieldType.OB, protoName: 'roleManager');
|
static final roleManager = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.ServiceOptions', _omitFieldNames ? '' : 'roleManager', 50304, $pb.PbFieldType.OB, protoName: 'roleManager');
|
||||||
@@ -480,6 +484,8 @@ class Options {
|
|||||||
static final moduleID = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'moduleID', 50404, $pb.PbFieldType.OS, protoName: 'moduleID');
|
static final moduleID = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'moduleID', 50404, $pb.PbFieldType.OS, protoName: 'moduleID');
|
||||||
static final tableName = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'tableName', 50405, $pb.PbFieldType.OS, protoName: 'tableName');
|
static final tableName = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'tableName', 50405, $pb.PbFieldType.OS, protoName: 'tableName');
|
||||||
static final customInput = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'customInput', 50406, $pb.PbFieldType.OB, protoName: 'customInput');
|
static final customInput = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'customInput', 50406, $pb.PbFieldType.OB, protoName: 'customInput');
|
||||||
|
static final tags = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'tags', 50407, $pb.PbFieldType.OS);
|
||||||
|
static final aliasType = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.MethodOptions', _omitFieldNames ? '' : 'aliasType', 50408, $pb.PbFieldType.OS, protoName: 'aliasType');
|
||||||
static final value = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.EnumValueOptions', _omitFieldNames ? '' : 'value', 50500, $pb.PbFieldType.OS);
|
static final value = $pb.Extension<$core.String>(_omitMessageNames ? '' : 'google.protobuf.EnumValueOptions', _omitFieldNames ? '' : 'value', 50500, $pb.PbFieldType.OS);
|
||||||
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
||||||
registry.add(entityName);
|
registry.add(entityName);
|
||||||
@@ -492,6 +498,7 @@ class Options {
|
|||||||
registry.add(kpiGroups);
|
registry.add(kpiGroups);
|
||||||
registry.add(version);
|
registry.add(version);
|
||||||
registry.add(entityRscType);
|
registry.add(entityRscType);
|
||||||
|
registry.add(entityProjectTypes);
|
||||||
registry.add(messageType);
|
registry.add(messageType);
|
||||||
registry.add(payload);
|
registry.add(payload);
|
||||||
registry.add(action);
|
registry.add(action);
|
||||||
@@ -505,6 +512,8 @@ class Options {
|
|||||||
registry.add(triggerNotEventFilters);
|
registry.add(triggerNotEventFilters);
|
||||||
registry.add(windowMethod);
|
registry.add(windowMethod);
|
||||||
registry.add(keyByExpression);
|
registry.add(keyByExpression);
|
||||||
|
registry.add(triggerMinStatusFilter);
|
||||||
|
registry.add(triggerMaxStatusFilter);
|
||||||
registry.add(metadata);
|
registry.add(metadata);
|
||||||
registry.add(mapPath);
|
registry.add(mapPath);
|
||||||
registry.add(language);
|
registry.add(language);
|
||||||
@@ -527,6 +536,7 @@ class Options {
|
|||||||
registry.add(mapTypePath);
|
registry.add(mapTypePath);
|
||||||
registry.add(indexationSkip);
|
registry.add(indexationSkip);
|
||||||
registry.add(indexationLimit);
|
registry.add(indexationLimit);
|
||||||
|
registry.add(enrichmentSkippedPath);
|
||||||
registry.add(serviceType);
|
registry.add(serviceType);
|
||||||
registry.add(k8sService);
|
registry.add(k8sService);
|
||||||
registry.add(roleManager);
|
registry.add(roleManager);
|
||||||
@@ -538,6 +548,8 @@ class Options {
|
|||||||
registry.add(moduleID);
|
registry.add(moduleID);
|
||||||
registry.add(tableName);
|
registry.add(tableName);
|
||||||
registry.add(customInput);
|
registry.add(customInput);
|
||||||
|
registry.add(tags);
|
||||||
|
registry.add(aliasType);
|
||||||
registry.add(value);
|
registry.add(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -204,79 +204,6 @@ class RequestProjectHeader extends $pb.GeneratedMessage {
|
|||||||
void clearTechnicalID() => $_clearField(4);
|
void clearTechnicalID() => $_clearField(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Header for all requests on site resources
|
|
||||||
class RequestSiteHeader extends $pb.GeneratedMessage {
|
|
||||||
factory RequestSiteHeader({
|
|
||||||
$core.String? siteID,
|
|
||||||
$core.String? correlationID,
|
|
||||||
$core.String? technicalID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (siteID != null) result.siteID = siteID;
|
|
||||||
if (correlationID != null) result.correlationID = correlationID;
|
|
||||||
if (technicalID != null) result.technicalID = technicalID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
RequestSiteHeader._();
|
|
||||||
|
|
||||||
factory RequestSiteHeader.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory RequestSiteHeader.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RequestSiteHeader', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'CorrelationID', protoName: 'CorrelationID')
|
|
||||||
..aOS(4, _omitFieldNames ? '' : 'TechnicalID', protoName: 'TechnicalID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
RequestSiteHeader clone() => RequestSiteHeader()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
RequestSiteHeader copyWith(void Function(RequestSiteHeader) updates) => super.copyWith((message) => updates(message as RequestSiteHeader)) as RequestSiteHeader;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static RequestSiteHeader create() => RequestSiteHeader._();
|
|
||||||
@$core.override
|
|
||||||
RequestSiteHeader createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<RequestSiteHeader> createRepeated() => $pb.PbList<RequestSiteHeader>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static RequestSiteHeader getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RequestSiteHeader>(create);
|
|
||||||
static RequestSiteHeader? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the site
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get siteID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set siteID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasSiteID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearSiteID() => $_clearField(1);
|
|
||||||
|
|
||||||
/// DateTime ActualDate = 2 ;
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get correlationID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set correlationID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasCorrelationID() => $_has(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearCorrelationID() => $_clearField(3);
|
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.String get technicalID => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set technicalID($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasTechnicalID() => $_has(2);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearTechnicalID() => $_clearField(4);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Header for all requests on organisation resources
|
/// Header for all requests on organisation resources
|
||||||
class RequestOrganisationHeader extends $pb.GeneratedMessage {
|
class RequestOrganisationHeader extends $pb.GeneratedMessage {
|
||||||
factory RequestOrganisationHeader({
|
factory RequestOrganisationHeader({
|
||||||
@@ -709,78 +636,6 @@ class ResponseHeader extends $pb.GeneratedMessage {
|
|||||||
void clearTechnicalID() => $_clearField(3);
|
void clearTechnicalID() => $_clearField(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Header for all site response messages
|
|
||||||
class ResponseSiteHeader extends $pb.GeneratedMessage {
|
|
||||||
factory ResponseSiteHeader({
|
|
||||||
$core.String? siteID,
|
|
||||||
$core.String? correlationID,
|
|
||||||
$core.String? technicalID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (siteID != null) result.siteID = siteID;
|
|
||||||
if (correlationID != null) result.correlationID = correlationID;
|
|
||||||
if (technicalID != null) result.technicalID = technicalID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ResponseSiteHeader._();
|
|
||||||
|
|
||||||
factory ResponseSiteHeader.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ResponseSiteHeader.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ResponseSiteHeader', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'CorrelationID', protoName: 'CorrelationID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'TechnicalID', protoName: 'TechnicalID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ResponseSiteHeader clone() => ResponseSiteHeader()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ResponseSiteHeader copyWith(void Function(ResponseSiteHeader) updates) => super.copyWith((message) => updates(message as ResponseSiteHeader)) as ResponseSiteHeader;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ResponseSiteHeader create() => ResponseSiteHeader._();
|
|
||||||
@$core.override
|
|
||||||
ResponseSiteHeader createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ResponseSiteHeader> createRepeated() => $pb.PbList<ResponseSiteHeader>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ResponseSiteHeader getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ResponseSiteHeader>(create);
|
|
||||||
static ResponseSiteHeader? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the site
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get siteID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set siteID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasSiteID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearSiteID() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get correlationID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set correlationID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasCorrelationID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearCorrelationID() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get technicalID => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set technicalID($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasTechnicalID() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearTechnicalID() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Header for all response messages
|
/// Header for all response messages
|
||||||
class AttachmentTypeResponseHeader extends $pb.GeneratedMessage {
|
class AttachmentTypeResponseHeader extends $pb.GeneratedMessage {
|
||||||
factory AttachmentTypeResponseHeader({
|
factory AttachmentTypeResponseHeader({
|
||||||
@@ -1023,93 +878,6 @@ class QueryProjectHeader extends $pb.GeneratedMessage {
|
|||||||
void clearLocalizedLabel() => $_clearField(5);
|
void clearLocalizedLabel() => $_clearField(5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Header for all query site messages
|
|
||||||
class QuerySiteHeader extends $pb.GeneratedMessage {
|
|
||||||
factory QuerySiteHeader({
|
|
||||||
$core.String? siteID,
|
|
||||||
$core.String? pagingState,
|
|
||||||
$core.String? limit,
|
|
||||||
$core.bool? localizedLabel,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (siteID != null) result.siteID = siteID;
|
|
||||||
if (pagingState != null) result.pagingState = pagingState;
|
|
||||||
if (limit != null) result.limit = limit;
|
|
||||||
if (localizedLabel != null) result.localizedLabel = localizedLabel;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
QuerySiteHeader._();
|
|
||||||
|
|
||||||
factory QuerySiteHeader.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory QuerySiteHeader.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'QuerySiteHeader', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'PagingState', protoName: 'PagingState')
|
|
||||||
..aOS(4, _omitFieldNames ? '' : 'Limit', protoName: 'Limit')
|
|
||||||
..aOB(5, _omitFieldNames ? '' : 'LocalizedLabel', protoName: 'LocalizedLabel')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
QuerySiteHeader clone() => QuerySiteHeader()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
QuerySiteHeader copyWith(void Function(QuerySiteHeader) updates) => super.copyWith((message) => updates(message as QuerySiteHeader)) as QuerySiteHeader;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static QuerySiteHeader create() => QuerySiteHeader._();
|
|
||||||
@$core.override
|
|
||||||
QuerySiteHeader createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<QuerySiteHeader> createRepeated() => $pb.PbList<QuerySiteHeader>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static QuerySiteHeader getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<QuerySiteHeader>(create);
|
|
||||||
static QuerySiteHeader? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the site
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get siteID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set siteID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasSiteID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearSiteID() => $_clearField(1);
|
|
||||||
|
|
||||||
/// Number of elements displayed
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get pagingState => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set pagingState($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasPagingState() => $_has(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearPagingState() => $_clearField(3);
|
|
||||||
|
|
||||||
/// Number of additional elements to display
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.String get limit => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set limit($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasLimit() => $_has(2);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearLimit() => $_clearField(4);
|
|
||||||
|
|
||||||
/// Return the message in the user's language
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool get localizedLabel => $_getBF(3);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
set localizedLabel($core.bool value) => $_setBool(3, value);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool hasLocalizedLabel() => $_has(3);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
void clearLocalizedLabel() => $_clearField(5);
|
|
||||||
}
|
|
||||||
|
|
||||||
class ResultHeader extends $pb.GeneratedMessage {
|
class ResultHeader extends $pb.GeneratedMessage {
|
||||||
factory ResultHeader({
|
factory ResultHeader({
|
||||||
$core.String? pagingState,
|
$core.String? pagingState,
|
||||||
@@ -1168,7 +936,6 @@ class CommandHeader extends $pb.GeneratedMessage {
|
|||||||
$core.String? fromRule,
|
$core.String? fromRule,
|
||||||
$core.String? fromEvent,
|
$core.String? fromEvent,
|
||||||
$core.String? fromAuthor,
|
$core.String? fromAuthor,
|
||||||
$core.String? site,
|
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (actionCommand != null) result.actionCommand = actionCommand;
|
if (actionCommand != null) result.actionCommand = actionCommand;
|
||||||
@@ -1179,7 +946,6 @@ class CommandHeader extends $pb.GeneratedMessage {
|
|||||||
if (fromRule != null) result.fromRule = fromRule;
|
if (fromRule != null) result.fromRule = fromRule;
|
||||||
if (fromEvent != null) result.fromEvent = fromEvent;
|
if (fromEvent != null) result.fromEvent = fromEvent;
|
||||||
if (fromAuthor != null) result.fromAuthor = fromAuthor;
|
if (fromAuthor != null) result.fromAuthor = fromAuthor;
|
||||||
if (site != null) result.site = site;
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1197,7 +963,6 @@ class CommandHeader extends $pb.GeneratedMessage {
|
|||||||
..aOS(6, _omitFieldNames ? '' : 'FromRule', protoName: 'FromRule')
|
..aOS(6, _omitFieldNames ? '' : 'FromRule', protoName: 'FromRule')
|
||||||
..aOS(7, _omitFieldNames ? '' : 'FromEvent', protoName: 'FromEvent')
|
..aOS(7, _omitFieldNames ? '' : 'FromEvent', protoName: 'FromEvent')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'FromAuthor', protoName: 'FromAuthor')
|
..aOS(8, _omitFieldNames ? '' : 'FromAuthor', protoName: 'FromAuthor')
|
||||||
..aOS(9, _omitFieldNames ? '' : 'Site', protoName: 'Site')
|
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1291,15 +1056,6 @@ class CommandHeader extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasFromAuthor() => $_has(7);
|
$core.bool hasFromAuthor() => $_has(7);
|
||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
void clearFromAuthor() => $_clearField(8);
|
void clearFromAuthor() => $_clearField(8);
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$core.String get site => $_getSZ(8);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
set site($core.String value) => $_setString(8, value);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$core.bool hasSite() => $_has(8);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
void clearSite() => $_clearField(9);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Header for all event messages
|
/// Header for all event messages
|
||||||
@@ -1312,7 +1068,6 @@ class EventHeader extends $pb.GeneratedMessage {
|
|||||||
$core.String? eventID,
|
$core.String? eventID,
|
||||||
$core.String? createdBy,
|
$core.String? createdBy,
|
||||||
$core.int? version,
|
$core.int? version,
|
||||||
$core.String? site,
|
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (inputEvent != null) result.inputEvent = inputEvent;
|
if (inputEvent != null) result.inputEvent = inputEvent;
|
||||||
@@ -1322,7 +1077,6 @@ class EventHeader extends $pb.GeneratedMessage {
|
|||||||
if (eventID != null) result.eventID = eventID;
|
if (eventID != null) result.eventID = eventID;
|
||||||
if (createdBy != null) result.createdBy = createdBy;
|
if (createdBy != null) result.createdBy = createdBy;
|
||||||
if (version != null) result.version = version;
|
if (version != null) result.version = version;
|
||||||
if (site != null) result.site = site;
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1339,7 +1093,6 @@ class EventHeader extends $pb.GeneratedMessage {
|
|||||||
..aOS(5, _omitFieldNames ? '' : 'EventID', protoName: 'EventID')
|
..aOS(5, _omitFieldNames ? '' : 'EventID', protoName: 'EventID')
|
||||||
..aOS(6, _omitFieldNames ? '' : 'CreatedBy', protoName: 'CreatedBy')
|
..aOS(6, _omitFieldNames ? '' : 'CreatedBy', protoName: 'CreatedBy')
|
||||||
..a<$core.int>(7, _omitFieldNames ? '' : 'Version', $pb.PbFieldType.OU3, protoName: 'Version')
|
..a<$core.int>(7, _omitFieldNames ? '' : 'Version', $pb.PbFieldType.OU3, protoName: 'Version')
|
||||||
..aOS(8, _omitFieldNames ? '' : 'Site', protoName: 'Site')
|
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1425,16 +1178,6 @@ class EventHeader extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasVersion() => $_has(6);
|
$core.bool hasVersion() => $_has(6);
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
void clearVersion() => $_clearField(7);
|
void clearVersion() => $_clearField(7);
|
||||||
|
|
||||||
/// Contains the ID of the parent site if entity belongs to site rscType
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$core.String get site => $_getSZ(7);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
set site($core.String value) => $_setString(7, value);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$core.bool hasSite() => $_has(7);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
void clearSite() => $_clearField(8);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Generic Object structures
|
/// Generic Object structures
|
||||||
@@ -5237,168 +4980,6 @@ class ExtractQuery extends $pb.GeneratedMessage {
|
|||||||
void clearTimeFormat() => $_clearField(13);
|
void clearTimeFormat() => $_clearField(13);
|
||||||
}
|
}
|
||||||
|
|
||||||
class ExtractSiteQuery extends $pb.GeneratedMessage {
|
|
||||||
factory ExtractSiteQuery({
|
|
||||||
QuerySiteHeader? header,
|
|
||||||
$core.String? userId,
|
|
||||||
$core.Iterable<BlockFilter>? blockFilters,
|
|
||||||
$core.Iterable<$core.String>? fields,
|
|
||||||
$core.String? listSeparator,
|
|
||||||
$core.String? decimalSeparator,
|
|
||||||
$core.Iterable<$core.String>? columnNames,
|
|
||||||
$core.Iterable<$core.MapEntry<$core.String, TranslationMap>>? columnTranslationMaps,
|
|
||||||
$core.Iterable<$core.MapEntry<$core.int, ExtractColumnFormat>>? columnFormats,
|
|
||||||
$core.String? targetTimeZone,
|
|
||||||
$core.String? dateFormat,
|
|
||||||
$core.String? numberFormat,
|
|
||||||
TimeFormat? timeFormat,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (userId != null) result.userId = userId;
|
|
||||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
|
||||||
if (fields != null) result.fields.addAll(fields);
|
|
||||||
if (listSeparator != null) result.listSeparator = listSeparator;
|
|
||||||
if (decimalSeparator != null) result.decimalSeparator = decimalSeparator;
|
|
||||||
if (columnNames != null) result.columnNames.addAll(columnNames);
|
|
||||||
if (columnTranslationMaps != null) result.columnTranslationMaps.addEntries(columnTranslationMaps);
|
|
||||||
if (columnFormats != null) result.columnFormats.addEntries(columnFormats);
|
|
||||||
if (targetTimeZone != null) result.targetTimeZone = targetTimeZone;
|
|
||||||
if (dateFormat != null) result.dateFormat = dateFormat;
|
|
||||||
if (numberFormat != null) result.numberFormat = numberFormat;
|
|
||||||
if (timeFormat != null) result.timeFormat = timeFormat;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ExtractSiteQuery._();
|
|
||||||
|
|
||||||
factory ExtractSiteQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ExtractSiteQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExtractSiteQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOM<QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: QuerySiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
||||||
..pc<BlockFilter>(3, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: BlockFilter.create)
|
|
||||||
..pPS(4, _omitFieldNames ? '' : 'Fields', protoName: 'Fields')
|
|
||||||
..aOS(5, _omitFieldNames ? '' : 'ListSeparator', protoName: 'ListSeparator')
|
|
||||||
..aOS(6, _omitFieldNames ? '' : 'DecimalSeparator', protoName: 'DecimalSeparator')
|
|
||||||
..pPS(7, _omitFieldNames ? '' : 'ColumnNames', protoName: 'ColumnNames')
|
|
||||||
..m<$core.String, TranslationMap>(8, _omitFieldNames ? '' : 'ColumnTranslationMaps', protoName: 'ColumnTranslationMaps', entryClassName: 'ExtractSiteQuery.ColumnTranslationMapsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: TranslationMap.create, valueDefaultOrMaker: TranslationMap.getDefault, packageName: const $pb.PackageName('api'))
|
|
||||||
..m<$core.int, ExtractColumnFormat>(9, _omitFieldNames ? '' : 'ColumnFormats', protoName: 'ColumnFormats', entryClassName: 'ExtractSiteQuery.ColumnFormatsEntry', keyFieldType: $pb.PbFieldType.O3, valueFieldType: $pb.PbFieldType.OM, valueCreator: ExtractColumnFormat.create, valueDefaultOrMaker: ExtractColumnFormat.getDefault, packageName: const $pb.PackageName('api'))
|
|
||||||
..aOS(10, _omitFieldNames ? '' : 'TargetTimeZone', protoName: 'TargetTimeZone')
|
|
||||||
..aOS(11, _omitFieldNames ? '' : 'DateFormat', protoName: 'DateFormat')
|
|
||||||
..aOS(12, _omitFieldNames ? '' : 'NumberFormat', protoName: 'NumberFormat')
|
|
||||||
..e<TimeFormat>(13, _omitFieldNames ? '' : 'TimeFormat', $pb.PbFieldType.OE, protoName: 'TimeFormat', defaultOrMaker: TimeFormat.H12, valueOf: TimeFormat.valueOf, enumValues: TimeFormat.values)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ExtractSiteQuery clone() => ExtractSiteQuery()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ExtractSiteQuery copyWith(void Function(ExtractSiteQuery) updates) => super.copyWith((message) => updates(message as ExtractSiteQuery)) as ExtractSiteQuery;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ExtractSiteQuery create() => ExtractSiteQuery._();
|
|
||||||
@$core.override
|
|
||||||
ExtractSiteQuery createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ExtractSiteQuery> createRepeated() => $pb.PbList<ExtractSiteQuery>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ExtractSiteQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExtractSiteQuery>(create);
|
|
||||||
static ExtractSiteQuery? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
QuerySiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header(QuerySiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
QuerySiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get userId => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set userId($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasUserId() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearUserId() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$pb.PbList<BlockFilter> get blockFilters => $_getList(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$pb.PbList<$core.String> get fields => $_getList(3);
|
|
||||||
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.String get listSeparator => $_getSZ(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
set listSeparator($core.String value) => $_setString(4, value);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool hasListSeparator() => $_has(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
void clearListSeparator() => $_clearField(5);
|
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
$core.String get decimalSeparator => $_getSZ(5);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
set decimalSeparator($core.String value) => $_setString(5, value);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
$core.bool hasDecimalSeparator() => $_has(5);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
void clearDecimalSeparator() => $_clearField(6);
|
|
||||||
|
|
||||||
@$pb.TagNumber(7)
|
|
||||||
$pb.PbList<$core.String> get columnNames => $_getList(6);
|
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$pb.PbMap<$core.String, TranslationMap> get columnTranslationMaps => $_getMap(7);
|
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$pb.PbMap<$core.int, ExtractColumnFormat> get columnFormats => $_getMap(8);
|
|
||||||
|
|
||||||
@$pb.TagNumber(10)
|
|
||||||
$core.String get targetTimeZone => $_getSZ(9);
|
|
||||||
@$pb.TagNumber(10)
|
|
||||||
set targetTimeZone($core.String value) => $_setString(9, value);
|
|
||||||
@$pb.TagNumber(10)
|
|
||||||
$core.bool hasTargetTimeZone() => $_has(9);
|
|
||||||
@$pb.TagNumber(10)
|
|
||||||
void clearTargetTimeZone() => $_clearField(10);
|
|
||||||
|
|
||||||
@$pb.TagNumber(11)
|
|
||||||
$core.String get dateFormat => $_getSZ(10);
|
|
||||||
@$pb.TagNumber(11)
|
|
||||||
set dateFormat($core.String value) => $_setString(10, value);
|
|
||||||
@$pb.TagNumber(11)
|
|
||||||
$core.bool hasDateFormat() => $_has(10);
|
|
||||||
@$pb.TagNumber(11)
|
|
||||||
void clearDateFormat() => $_clearField(11);
|
|
||||||
|
|
||||||
@$pb.TagNumber(12)
|
|
||||||
$core.String get numberFormat => $_getSZ(11);
|
|
||||||
@$pb.TagNumber(12)
|
|
||||||
set numberFormat($core.String value) => $_setString(11, value);
|
|
||||||
@$pb.TagNumber(12)
|
|
||||||
$core.bool hasNumberFormat() => $_has(11);
|
|
||||||
@$pb.TagNumber(12)
|
|
||||||
void clearNumberFormat() => $_clearField(12);
|
|
||||||
|
|
||||||
@$pb.TagNumber(13)
|
|
||||||
TimeFormat get timeFormat => $_getN(12);
|
|
||||||
@$pb.TagNumber(13)
|
|
||||||
set timeFormat(TimeFormat value) => $_setField(13, value);
|
|
||||||
@$pb.TagNumber(13)
|
|
||||||
$core.bool hasTimeFormat() => $_has(12);
|
|
||||||
@$pb.TagNumber(13)
|
|
||||||
void clearTimeFormat() => $_clearField(13);
|
|
||||||
}
|
|
||||||
|
|
||||||
class ExtractResult extends $pb.GeneratedMessage {
|
class ExtractResult extends $pb.GeneratedMessage {
|
||||||
factory ExtractResult({
|
factory ExtractResult({
|
||||||
WorkflowExecutionResult? workflowExecution,
|
WorkflowExecutionResult? workflowExecution,
|
||||||
@@ -5931,76 +5512,6 @@ class ElementByMatchQuery extends $pb.GeneratedMessage {
|
|||||||
MatchElementField ensureMatchElementField() => $_ensure(2);
|
MatchElementField ensureMatchElementField() => $_ensure(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
class ElementByMatchSiteQuery extends $pb.GeneratedMessage {
|
|
||||||
factory ElementByMatchSiteQuery({
|
|
||||||
QuerySiteHeader? header,
|
|
||||||
$core.Iterable<BlockFilter>? blockFilters,
|
|
||||||
MatchElementField? matchElementField,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
|
||||||
if (matchElementField != null) result.matchElementField = matchElementField;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ElementByMatchSiteQuery._();
|
|
||||||
|
|
||||||
factory ElementByMatchSiteQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ElementByMatchSiteQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ElementByMatchSiteQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOM<QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: QuerySiteHeader.create)
|
|
||||||
..pc<BlockFilter>(2, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: BlockFilter.create)
|
|
||||||
..aOM<MatchElementField>(3, _omitFieldNames ? '' : 'MatchElementField', protoName: 'MatchElementField', subBuilder: MatchElementField.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ElementByMatchSiteQuery clone() => ElementByMatchSiteQuery()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ElementByMatchSiteQuery copyWith(void Function(ElementByMatchSiteQuery) updates) => super.copyWith((message) => updates(message as ElementByMatchSiteQuery)) as ElementByMatchSiteQuery;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ElementByMatchSiteQuery create() => ElementByMatchSiteQuery._();
|
|
||||||
@$core.override
|
|
||||||
ElementByMatchSiteQuery createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ElementByMatchSiteQuery> createRepeated() => $pb.PbList<ElementByMatchSiteQuery>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ElementByMatchSiteQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ElementByMatchSiteQuery>(create);
|
|
||||||
static ElementByMatchSiteQuery? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
QuerySiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header(QuerySiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
QuerySiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$pb.PbList<BlockFilter> get blockFilters => $_getList(1);
|
|
||||||
|
|
||||||
/// MatchElementField structure, containing wanted match string, and the fields to get.
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
MatchElementField get matchElementField => $_getN(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set matchElementField(MatchElementField value) => $_setField(3, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasMatchElementField() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearMatchElementField() => $_clearField(3);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
MatchElementField ensureMatchElementField() => $_ensure(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class ElementByMatchResult extends $pb.GeneratedMessage {
|
class ElementByMatchResult extends $pb.GeneratedMessage {
|
||||||
factory ElementByMatchResult({
|
factory ElementByMatchResult({
|
||||||
$core.Iterable<MatchFieldElementResult>? matchResults,
|
$core.Iterable<MatchFieldElementResult>? matchResults,
|
||||||
|
|||||||
@@ -238,6 +238,9 @@ class SharePolicy extends $pb.ProtobufEnum {
|
|||||||
static const SharePolicy SHARE_POLICY_1WEEK = SharePolicy._(23, _omitEnumNames ? '' : 'SHARE_POLICY_1WEEK');
|
static const SharePolicy SHARE_POLICY_1WEEK = SharePolicy._(23, _omitEnumNames ? '' : 'SHARE_POLICY_1WEEK');
|
||||||
static const SharePolicy SHARE_POLICY_2WEEKS = SharePolicy._(24, _omitEnumNames ? '' : 'SHARE_POLICY_2WEEKS');
|
static const SharePolicy SHARE_POLICY_2WEEKS = SharePolicy._(24, _omitEnumNames ? '' : 'SHARE_POLICY_2WEEKS');
|
||||||
static const SharePolicy SHARE_POLICY_1MONTH = SharePolicy._(25, _omitEnumNames ? '' : 'SHARE_POLICY_1MONTH');
|
static const SharePolicy SHARE_POLICY_1MONTH = SharePolicy._(25, _omitEnumNames ? '' : 'SHARE_POLICY_1MONTH');
|
||||||
|
static const SharePolicy SHARE_POLICY_3MONTHS = SharePolicy._(26, _omitEnumNames ? '' : 'SHARE_POLICY_3MONTHS');
|
||||||
|
static const SharePolicy SHARE_POLICY_6MONTHS = SharePolicy._(27, _omitEnumNames ? '' : 'SHARE_POLICY_6MONTHS');
|
||||||
|
static const SharePolicy SHARE_POLICY_1YEAR = SharePolicy._(28, _omitEnumNames ? '' : 'SHARE_POLICY_1YEAR');
|
||||||
|
|
||||||
static const $core.List<SharePolicy> values = <SharePolicy> [
|
static const $core.List<SharePolicy> values = <SharePolicy> [
|
||||||
SHARE_POLICY_UNKNOWN,
|
SHARE_POLICY_UNKNOWN,
|
||||||
@@ -249,6 +252,9 @@ class SharePolicy extends $pb.ProtobufEnum {
|
|||||||
SHARE_POLICY_1WEEK,
|
SHARE_POLICY_1WEEK,
|
||||||
SHARE_POLICY_2WEEKS,
|
SHARE_POLICY_2WEEKS,
|
||||||
SHARE_POLICY_1MONTH,
|
SHARE_POLICY_1MONTH,
|
||||||
|
SHARE_POLICY_3MONTHS,
|
||||||
|
SHARE_POLICY_6MONTHS,
|
||||||
|
SHARE_POLICY_1YEAR,
|
||||||
];
|
];
|
||||||
|
|
||||||
static final $core.Map<$core.int, SharePolicy> _byValue = $pb.ProtobufEnum.initByValue(values);
|
static final $core.Map<$core.int, SharePolicy> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||||
@@ -482,7 +488,6 @@ class ResourceType extends $pb.ProtobufEnum {
|
|||||||
static const ResourceType RESOURCE_TYPE_CONNECTION = ResourceType._(50, _omitEnumNames ? '' : 'RESOURCE_TYPE_CONNECTION');
|
static const ResourceType RESOURCE_TYPE_CONNECTION = ResourceType._(50, _omitEnumNames ? '' : 'RESOURCE_TYPE_CONNECTION');
|
||||||
static const ResourceType RESOURCE_TYPE_ATTACHMENTTYPE = ResourceType._(60, _omitEnumNames ? '' : 'RESOURCE_TYPE_ATTACHMENTTYPE');
|
static const ResourceType RESOURCE_TYPE_ATTACHMENTTYPE = ResourceType._(60, _omitEnumNames ? '' : 'RESOURCE_TYPE_ATTACHMENTTYPE');
|
||||||
static const ResourceType RESOURCE_TYPE_CLAIMTYPE = ResourceType._(70, _omitEnumNames ? '' : 'RESOURCE_TYPE_CLAIMTYPE');
|
static const ResourceType RESOURCE_TYPE_CLAIMTYPE = ResourceType._(70, _omitEnumNames ? '' : 'RESOURCE_TYPE_CLAIMTYPE');
|
||||||
static const ResourceType RESOURCE_TYPE_SITE = ResourceType._(80, _omitEnumNames ? '' : 'RESOURCE_TYPE_SITE');
|
|
||||||
|
|
||||||
static const $core.List<ResourceType> values = <ResourceType> [
|
static const $core.List<ResourceType> values = <ResourceType> [
|
||||||
RESOURCE_TYPE_UNKNOWN,
|
RESOURCE_TYPE_UNKNOWN,
|
||||||
@@ -493,7 +498,6 @@ class ResourceType extends $pb.ProtobufEnum {
|
|||||||
RESOURCE_TYPE_CONNECTION,
|
RESOURCE_TYPE_CONNECTION,
|
||||||
RESOURCE_TYPE_ATTACHMENTTYPE,
|
RESOURCE_TYPE_ATTACHMENTTYPE,
|
||||||
RESOURCE_TYPE_CLAIMTYPE,
|
RESOURCE_TYPE_CLAIMTYPE,
|
||||||
RESOURCE_TYPE_SITE,
|
|
||||||
];
|
];
|
||||||
|
|
||||||
static final $core.Map<$core.int, ResourceType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
static final $core.Map<$core.int, ResourceType> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||||
|
|||||||
@@ -196,6 +196,9 @@ const SharePolicy$json = {
|
|||||||
{'1': 'SHARE_POLICY_1WEEK', '2': 23},
|
{'1': 'SHARE_POLICY_1WEEK', '2': 23},
|
||||||
{'1': 'SHARE_POLICY_2WEEKS', '2': 24},
|
{'1': 'SHARE_POLICY_2WEEKS', '2': 24},
|
||||||
{'1': 'SHARE_POLICY_1MONTH', '2': 25},
|
{'1': 'SHARE_POLICY_1MONTH', '2': 25},
|
||||||
|
{'1': 'SHARE_POLICY_3MONTHS', '2': 26},
|
||||||
|
{'1': 'SHARE_POLICY_6MONTHS', '2': 27},
|
||||||
|
{'1': 'SHARE_POLICY_1YEAR', '2': 28},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -205,7 +208,8 @@ final $typed_data.Uint8List sharePolicyDescriptor = $convert.base64Decode(
|
|||||||
'9QUklWQVRFEAoSFwoTU0hBUkVfUE9MSUNZX1BVQkxJQxALEhUKEVNIQVJFX1BPTElDWV8xREFZ'
|
'9QUklWQVRFEAoSFwoTU0hBUkVfUE9MSUNZX1BVQkxJQxALEhUKEVNIQVJFX1BPTElDWV8xREFZ'
|
||||||
'EBQSFgoSU0hBUkVfUE9MSUNZXzJEQVlTEBUSFgoSU0hBUkVfUE9MSUNZXzREQVlTEBYSFgoSU0'
|
'EBQSFgoSU0hBUkVfUE9MSUNZXzJEQVlTEBUSFgoSU0hBUkVfUE9MSUNZXzREQVlTEBYSFgoSU0'
|
||||||
'hBUkVfUE9MSUNZXzFXRUVLEBcSFwoTU0hBUkVfUE9MSUNZXzJXRUVLUxAYEhcKE1NIQVJFX1BP'
|
'hBUkVfUE9MSUNZXzFXRUVLEBcSFwoTU0hBUkVfUE9MSUNZXzJXRUVLUxAYEhcKE1NIQVJFX1BP'
|
||||||
'TElDWV8xTU9OVEgQGQ==');
|
'TElDWV8xTU9OVEgQGRIYChRTSEFSRV9QT0xJQ1lfM01PTlRIUxAaEhgKFFNIQVJFX1BPTElDWV'
|
||||||
|
'82TU9OVEhTEBsSFgoSU0hBUkVfUE9MSUNZXzFZRUFSEBw=');
|
||||||
|
|
||||||
@$core.Deprecated('Use entityTypeDescriptor instead')
|
@$core.Deprecated('Use entityTypeDescriptor instead')
|
||||||
const EntityType$json = {
|
const EntityType$json = {
|
||||||
@@ -393,7 +397,6 @@ const ResourceType$json = {
|
|||||||
{'1': 'RESOURCE_TYPE_CONNECTION', '2': 50},
|
{'1': 'RESOURCE_TYPE_CONNECTION', '2': 50},
|
||||||
{'1': 'RESOURCE_TYPE_ATTACHMENTTYPE', '2': 60},
|
{'1': 'RESOURCE_TYPE_ATTACHMENTTYPE', '2': 60},
|
||||||
{'1': 'RESOURCE_TYPE_CLAIMTYPE', '2': 70},
|
{'1': 'RESOURCE_TYPE_CLAIMTYPE', '2': 70},
|
||||||
{'1': 'RESOURCE_TYPE_SITE', '2': 80},
|
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -403,7 +406,7 @@ final $typed_data.Uint8List resourceTypeDescriptor = $convert.base64Decode(
|
|||||||
'lQRV9QTEFURk9STRAKEh4KGlJFU09VUkNFX1RZUEVfT1JHQU5JU0FUSU9OEBQSGQoVUkVTT1VS'
|
'lQRV9QTEFURk9STRAKEh4KGlJFU09VUkNFX1RZUEVfT1JHQU5JU0FUSU9OEBQSGQoVUkVTT1VS'
|
||||||
'Q0VfVFlQRV9QUk9KRUNUEB4SHAoYUkVTT1VSQ0VfVFlQRV9QQVJUTkVSQVBQECgSHAoYUkVTT1'
|
'Q0VfVFlQRV9QUk9KRUNUEB4SHAoYUkVTT1VSQ0VfVFlQRV9QQVJUTkVSQVBQECgSHAoYUkVTT1'
|
||||||
'VSQ0VfVFlQRV9DT05ORUNUSU9OEDISIAocUkVTT1VSQ0VfVFlQRV9BVFRBQ0hNRU5UVFlQRRA8'
|
'VSQ0VfVFlQRV9DT05ORUNUSU9OEDISIAocUkVTT1VSQ0VfVFlQRV9BVFRBQ0hNRU5UVFlQRRA8'
|
||||||
'EhsKF1JFU09VUkNFX1RZUEVfQ0xBSU1UWVBFEEYSFgoSUkVTT1VSQ0VfVFlQRV9TSVRFEFA=');
|
'EhsKF1JFU09VUkNFX1RZUEVfQ0xBSU1UWVBFEEY=');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestHeaderDescriptor instead')
|
@$core.Deprecated('Use requestHeaderDescriptor instead')
|
||||||
const RequestHeader$json = {
|
const RequestHeader$json = {
|
||||||
@@ -415,8 +418,8 @@ const RequestHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestHeaderDescriptor = $convert.base64Decode(
|
||||||
'Cg1SZXF1ZXN0SGVhZGVyEkMKB1Byb2plY3QYASABKAlCKZJBGzIZSWRlbnRpZmllciBvZiB0aG'
|
'Cg1SZXF1ZXN0SGVhZGVyEkQKB1Byb2plY3QYASABKAlCKpJBGzIZSWRlbnRpZmllciBvZiB0aG'
|
||||||
'UgcHJvamVjdPpCCHIGEAG6AQEgUgdQcm9qZWN0');
|
'UgcHJvamVjdLqBAQhyBhABugEBIFIHUHJvamVjdA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use timeRangeDescriptor instead')
|
@$core.Deprecated('Use timeRangeDescriptor instead')
|
||||||
const TimeRange$json = {
|
const TimeRange$json = {
|
||||||
@@ -429,9 +432,9 @@ const TimeRange$json = {
|
|||||||
|
|
||||||
/// Descriptor for `TimeRange`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `TimeRange`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List timeRangeDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List timeRangeDescriptor = $convert.base64Decode(
|
||||||
'CglUaW1lUmFuZ2USRgoJU3RhcnRUaW1lGAEgASgJQij6QiVyIzIhXig/OlswMV1bMC05XXwyWz'
|
'CglUaW1lUmFuZ2USRwoJU3RhcnRUaW1lGAEgASgJQim6gQElciMyIV4oPzpbMDFdWzAtOV18Ml'
|
||||||
'AtM10pOlswLTVdWzAtOV0kUglTdGFydFRpbWUSQgoHRW5kVGltZRgCIAEoCUIo+kIlciMyIV4o'
|
'swLTNdKTpbMC01XVswLTldJFIJU3RhcnRUaW1lEkMKB0VuZFRpbWUYAiABKAlCKbqBASVyIzIh'
|
||||||
'PzpbMDFdWzAtOV18MlswLTNdKTpbMC01XVswLTldJFIHRW5kVGltZQ==');
|
'Xig/OlswMV1bMC05XXwyWzAtM10pOlswLTVdWzAtOV0kUgdFbmRUaW1l');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestProjectHeaderDescriptor instead')
|
@$core.Deprecated('Use requestProjectHeaderDescriptor instead')
|
||||||
const RequestProjectHeader$json = {
|
const RequestProjectHeader$json = {
|
||||||
@@ -446,36 +449,14 @@ const RequestProjectHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestProjectHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestProjectHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestProjectHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestProjectHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChRSZXF1ZXN0UHJvamVjdEhlYWRlchJaCglQcm9qZWN0SUQYASABKAlCPJJBLjIZSWRlbnRpZm'
|
'ChRSZXF1ZXN0UHJvamVjdEhlYWRlchJbCglQcm9qZWN0SUQYASABKAlCPZJBLjIZSWRlbnRpZm'
|
||||||
'llciBvZiB0aGUgcHJvamVjdEoRIllvdXJfUHJvamVjdF9JRCL6QghyBhABugEBIFIJUHJvamVj'
|
'llciBvZiB0aGUgcHJvamVjdEoRIllvdXJfUHJvamVjdF9JRCK6gQEIcgYQAboBASBSCVByb2pl'
|
||||||
'dElEEpoBCg1Db3JyZWxhdGlvbklEGAMgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIG'
|
'Y3RJRBKaAQoNQ29ycmVsYXRpb25JRBgDIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjay'
|
||||||
'ludG8gdGhlIHJlc3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0'
|
'BpbnRvIHRoZSByZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxh'
|
||||||
'ZSByZXF1ZXN0IGFuZCByZXNwb25zZUoKIkNvcnJJRF9BIlINQ29ycmVsYXRpb25JRBKWAQoLVG'
|
'dGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VKCiJDb3JySURfQSJSDUNvcnJlbGF0aW9uSUQSlgEKC1'
|
||||||
'VjaG5pY2FsSUQYBCABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aGUgcmVz'
|
'RlY2huaWNhbElEGAQgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdGhlIHJl'
|
||||||
'cG9uc2UgaGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW'
|
'c3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1ZXN0IG'
|
||||||
'5kIHJlc3BvbnNlSgoiVGVjaElEX0EiUgtUZWNobmljYWxJRDoRkkEOCgzSAQlQcm9qZWN0SUQ=');
|
'FuZCByZXNwb25zZUoKIlRlY2hJRF9BIlILVGVjaG5pY2FsSUQ6EZJBDgoM0gEJUHJvamVjdElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestSiteHeaderDescriptor instead')
|
|
||||||
const RequestSiteHeader$json = {
|
|
||||||
'1': 'RequestSiteHeader',
|
|
||||||
'2': [
|
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
|
||||||
{'1': 'CorrelationID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'CorrelationID'},
|
|
||||||
{'1': 'TechnicalID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'TechnicalID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `RequestSiteHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List requestSiteHeaderDescriptor = $convert.base64Decode(
|
|
||||||
'ChFSZXF1ZXN0U2l0ZUhlYWRlchJOCgZTaXRlSUQYASABKAlCNpJBKDIWSWRlbnRpZmllciBvZi'
|
|
||||||
'B0aGUgc2l0ZUoOIllvdXJfU2l0ZV9JRCL6QghyBhABugEBIFIGU2l0ZUlEEpoBCg1Db3JyZWxh'
|
|
||||||
'dGlvbklEGAMgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdGhlIHJlc3Bvbn'
|
|
||||||
'NlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1ZXN0IGFuZCBy'
|
|
||||||
'ZXNwb25zZUoKIkNvcnJJRF9BIlINQ29ycmVsYXRpb25JRBKWAQoLVGVjaG5pY2FsSUQYBCABKA'
|
|
||||||
'lCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aGUgcmVzcG9uc2UgaGVhZGVyIGlu'
|
|
||||||
'IG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIHJlc3BvbnNlSgoiVG'
|
|
||||||
'VjaElEX0EiUgtUZWNobmljYWxJRDoOkkELCgnSAQZTaXRlSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use requestOrganisationHeaderDescriptor instead')
|
@$core.Deprecated('Use requestOrganisationHeaderDescriptor instead')
|
||||||
const RequestOrganisationHeader$json = {
|
const RequestOrganisationHeader$json = {
|
||||||
@@ -490,15 +471,15 @@ const RequestOrganisationHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestOrganisationHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestOrganisationHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestOrganisationHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestOrganisationHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChlSZXF1ZXN0T3JnYW5pc2F0aW9uSGVhZGVyElYKDk9yZ2FuaXNhdGlvbklEGAEgASgJQi6SQS'
|
'ChlSZXF1ZXN0T3JnYW5pc2F0aW9uSGVhZGVyElcKDk9yZ2FuaXNhdGlvbklEGAEgASgJQi+SQS'
|
||||||
'AyHklkZW50aWZpZXIgb2YgdGhlIG9yZ2FuaXNhdGlvbvpCCHIGEAG6AQEgUg5PcmdhbmlzYXRp'
|
'AyHklkZW50aWZpZXIgb2YgdGhlIG9yZ2FuaXNhdGlvbrqBAQhyBhABugEBIFIOT3JnYW5pc2F0'
|
||||||
'b25JRBKaAQoNQ29ycmVsYXRpb25JRBgCIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjay'
|
'aW9uSUQSmgEKDUNvcnJlbGF0aW9uSUQYAiABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2'
|
||||||
'BpbnRvIHRoZSByZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxh'
|
'sgaW50byB0aGUgcmVzcG9uc2UgaGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVs'
|
||||||
'dGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VKCiJDb3JySURfQSJSDUNvcnJlbGF0aW9uSUQSlgEKC1'
|
'YXRlIHJlcXVlc3QgYW5kIHJlc3BvbnNlSgoiQ29ycklEX0EiUg1Db3JyZWxhdGlvbklEEpYBCg'
|
||||||
'RlY2huaWNhbElEGAMgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdGhlIHJl'
|
'tUZWNobmljYWxJRBgDIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjayBpbnRvIHRoZSBy'
|
||||||
'c3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1ZXN0IG'
|
'ZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdC'
|
||||||
'FuZCByZXNwb25zZUoKIlRlY2hJRF9BIlILVGVjaG5pY2FsSUQ6FpJBEwoR0gEOT3JnYW5pc2F0'
|
'BhbmQgcmVzcG9uc2VKCiJUZWNoSURfQSJSC1RlY2huaWNhbElEOhaSQRMKEdIBDk9yZ2FuaXNh'
|
||||||
'aW9uSUQ=');
|
'dGlvbklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestBucketHeaderDescriptor instead')
|
@$core.Deprecated('Use requestBucketHeaderDescriptor instead')
|
||||||
const RequestBucketHeader$json = {
|
const RequestBucketHeader$json = {
|
||||||
@@ -513,14 +494,14 @@ const RequestBucketHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestBucketHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestBucketHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestBucketHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestBucketHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChNSZXF1ZXN0QnVja2V0SGVhZGVyEkQKCEJ1Y2tldElEGAEgASgJQiiSQRoyGElkZW50aWZpZX'
|
'ChNSZXF1ZXN0QnVja2V0SGVhZGVyEkUKCEJ1Y2tldElEGAEgASgJQimSQRoyGElkZW50aWZpZX'
|
||||||
'Igb2YgdGhlIGJ1Y2tldPpCCHIGEAG6AQEgUghCdWNrZXRJRBKaAQoNQ29ycmVsYXRpb25JRBgC'
|
'Igb2YgdGhlIGJ1Y2tldLqBAQhyBhABugEBIFIIQnVja2V0SUQSmgEKDUNvcnJlbGF0aW9uSUQY'
|
||||||
'IAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjayBpbnRvIHRoZSByZXNwb25zZSBoZWFkZX'
|
'AiABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aGUgcmVzcG9uc2UgaGVhZG'
|
||||||
'IgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VK'
|
'VyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIHJlc3BvbnNl'
|
||||||
'CiJDb3JySURfQSJSDUNvcnJlbGF0aW9uSUQSlgEKC1RlY2huaWNhbElEGAMgASgJQnSSQXEyY1'
|
'SgoiQ29ycklEX0EiUg1Db3JyZWxhdGlvbklEEpYBCgtUZWNobmljYWxJRBgDIAEoCUJ0kkFxMm'
|
||||||
'RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdGhlIHJlc3BvbnNlIGhlYWRlciBpbiBvcmRlciB0'
|
'NUaGlzIElEIGlzIHNlbnQgYmFjayBpbnRvIHRoZSByZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIg'
|
||||||
'byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1ZXN0IGFuZCByZXNwb25zZUoKIlRlY2hJRF9BIl'
|
'dG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VKCiJUZWNoSURfQS'
|
||||||
'ILVGVjaG5pY2FsSUQ6EJJBDQoL0gEIQnVja2V0SUQ=');
|
'JSC1RlY2huaWNhbElEOhCSQQ0KC9IBCEJ1Y2tldElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestPartnerAppHeaderDescriptor instead')
|
@$core.Deprecated('Use requestPartnerAppHeaderDescriptor instead')
|
||||||
const RequestPartnerAppHeader$json = {
|
const RequestPartnerAppHeader$json = {
|
||||||
@@ -535,14 +516,14 @@ const RequestPartnerAppHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestPartnerAppHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestPartnerAppHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestPartnerAppHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestPartnerAppHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChdSZXF1ZXN0UGFydG5lckFwcEhlYWRlchJQCgxQYXJ0bmVyQXBwSUQYASABKAlCLJJBHjIcSW'
|
'ChdSZXF1ZXN0UGFydG5lckFwcEhlYWRlchJRCgxQYXJ0bmVyQXBwSUQYASABKAlCLZJBHjIcSW'
|
||||||
'RlbnRpZmllciBvZiB0aGUgcGFydG5lckFwcPpCCHIGEAG6AQEgUgxQYXJ0bmVyQXBwSUQSmgEK'
|
'RlbnRpZmllciBvZiB0aGUgcGFydG5lckFwcLqBAQhyBhABugEBIFIMUGFydG5lckFwcElEEpoB'
|
||||||
'DUNvcnJlbGF0aW9uSUQYAiABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aG'
|
'Cg1Db3JyZWxhdGlvbklEGAIgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdG'
|
||||||
'UgcmVzcG9uc2UgaGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVl'
|
'hlIHJlc3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1'
|
||||||
'c3QgYW5kIHJlc3BvbnNlSgoiQ29ycklEX0EiUg1Db3JyZWxhdGlvbklEEpYBCgtUZWNobmljYW'
|
'ZXN0IGFuZCByZXNwb25zZUoKIkNvcnJJRF9BIlINQ29ycmVsYXRpb25JRBKWAQoLVGVjaG5pY2'
|
||||||
'xJRBgDIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjayBpbnRvIHRoZSByZXNwb25zZSBo'
|
'FsSUQYAyABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aGUgcmVzcG9uc2Ug'
|
||||||
'ZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG'
|
'aGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIHJlc3'
|
||||||
'9uc2VKCiJUZWNoSURfQSJSC1RlY2huaWNhbElEOhSSQREKD9IBDFBhcnRuZXJBcHBJRA==');
|
'BvbnNlSgoiVGVjaElEX0EiUgtUZWNobmljYWxJRDoUkkERCg/SAQxQYXJ0bmVyQXBwSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestConnectionHeaderDescriptor instead')
|
@$core.Deprecated('Use requestConnectionHeaderDescriptor instead')
|
||||||
const RequestConnectionHeader$json = {
|
const RequestConnectionHeader$json = {
|
||||||
@@ -557,14 +538,14 @@ const RequestConnectionHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestConnectionHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestConnectionHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestConnectionHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestConnectionHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChdSZXF1ZXN0Q29ubmVjdGlvbkhlYWRlchJQCgxDb25uZWN0aW9uSUQYASABKAlCLJJBHjIcSW'
|
'ChdSZXF1ZXN0Q29ubmVjdGlvbkhlYWRlchJRCgxDb25uZWN0aW9uSUQYASABKAlCLZJBHjIcSW'
|
||||||
'RlbnRpZmllciBvZiB0aGUgY29ubmVjdGlvbvpCCHIGEAG6AQEgUgxDb25uZWN0aW9uSUQSmgEK'
|
'RlbnRpZmllciBvZiB0aGUgY29ubmVjdGlvbrqBAQhyBhABugEBIFIMQ29ubmVjdGlvbklEEpoB'
|
||||||
'DUNvcnJlbGF0aW9uSUQYAiABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aG'
|
'Cg1Db3JyZWxhdGlvbklEGAIgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGludG8gdG'
|
||||||
'UgcmVzcG9uc2UgaGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVl'
|
'hlIHJlc3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1'
|
||||||
'c3QgYW5kIHJlc3BvbnNlSgoiQ29ycklEX0EiUg1Db3JyZWxhdGlvbklEEpYBCgtUZWNobmljYW'
|
'ZXN0IGFuZCByZXNwb25zZUoKIkNvcnJJRF9BIlINQ29ycmVsYXRpb25JRBKWAQoLVGVjaG5pY2'
|
||||||
'xJRBgDIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjayBpbnRvIHRoZSByZXNwb25zZSBo'
|
'FsSUQYAyABKAlCdJJBcTJjVGhpcyBJRCBpcyBzZW50IGJhY2sgaW50byB0aGUgcmVzcG9uc2Ug'
|
||||||
'ZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG'
|
'aGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIHJlc3'
|
||||||
'9uc2VKCiJUZWNoSURfQSJSC1RlY2huaWNhbElEOhSSQREKD9IBDENvbm5lY3Rpb25JRA==');
|
'BvbnNlSgoiVGVjaElEX0EiUgtUZWNobmljYWxJRDoUkkERCg/SAQxDb25uZWN0aW9uSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use requestAttachmentTypeHeaderDescriptor instead')
|
@$core.Deprecated('Use requestAttachmentTypeHeaderDescriptor instead')
|
||||||
const RequestAttachmentTypeHeader$json = {
|
const RequestAttachmentTypeHeader$json = {
|
||||||
@@ -578,14 +559,14 @@ const RequestAttachmentTypeHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RequestAttachmentTypeHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RequestAttachmentTypeHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List requestAttachmentTypeHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List requestAttachmentTypeHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChtSZXF1ZXN0QXR0YWNobWVudFR5cGVIZWFkZXISXQoQQXR0YWNobWVudFR5cGVJRBgBIAEoCU'
|
'ChtSZXF1ZXN0QXR0YWNobWVudFR5cGVIZWFkZXISXgoQQXR0YWNobWVudFR5cGVJRBgBIAEoCU'
|
||||||
'IxkkEjMiFJZGVudGlmaWVyIG9mIHRoZSBhdHRhY2htZW50IHR5cGX6QghyBhABugEBIFIQQXR0'
|
'IykkEjMiFJZGVudGlmaWVyIG9mIHRoZSBhdHRhY2htZW50IHR5cGW6gQEIcgYQAboBASBSEEF0'
|
||||||
'YWNobWVudFR5cGVJRBKaAQoNQ29ycmVsYXRpb25JRBgCIAEoCUJ0kkFxMmNUaGlzIElEIGlzIH'
|
'dGFjaG1lbnRUeXBlSUQSmgEKDUNvcnJlbGF0aW9uSUQYAiABKAlCdJJBcTJjVGhpcyBJRCBpcy'
|
||||||
'NlbnQgYmFjayBpbnRvIHRoZSByZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0'
|
'BzZW50IGJhY2sgaW50byB0aGUgcmVzcG9uc2UgaGVhZGVyIGluIG9yZGVyIHRvIGJlIGFibGUg'
|
||||||
'byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VKCiJDb3JySURfQSJSDUNvcnJlbGF0aW'
|
'dG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIHJlc3BvbnNlSgoiQ29ycklEX0EiUg1Db3JyZWxhdG'
|
||||||
'9uSUQSlgEKC1RlY2huaWNhbElEGAMgASgJQnSSQXEyY1RoaXMgSUQgaXMgc2VudCBiYWNrIGlu'
|
'lvbklEEpYBCgtUZWNobmljYWxJRBgDIAEoCUJ0kkFxMmNUaGlzIElEIGlzIHNlbnQgYmFjayBp'
|
||||||
'dG8gdGhlIHJlc3BvbnNlIGhlYWRlciBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZS'
|
'bnRvIHRoZSByZXNwb25zZSBoZWFkZXIgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdG'
|
||||||
'ByZXF1ZXN0IGFuZCByZXNwb25zZUoKIlRlY2hJRF9BIlILVGVjaG5pY2FsSUQ=');
|
'UgcmVxdWVzdCBhbmQgcmVzcG9uc2VKCiJUZWNoSURfQSJSC1RlY2huaWNhbElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use responseHeaderDescriptor instead')
|
@$core.Deprecated('Use responseHeaderDescriptor instead')
|
||||||
const ResponseHeader$json = {
|
const ResponseHeader$json = {
|
||||||
@@ -608,27 +589,6 @@ final $typed_data.Uint8List responseHeaderDescriptor = $convert.base64Decode(
|
|||||||
'IHByb3ZpZGVkIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIH'
|
'IHByb3ZpZGVkIGluIG9yZGVyIHRvIGJlIGFibGUgdG8gY29ycmVsYXRlIHJlcXVlc3QgYW5kIH'
|
||||||
'Jlc3BvbnNlSgoiVGVjaElEX0EiUgtUZWNobmljYWxJRA==');
|
'Jlc3BvbnNlSgoiVGVjaElEX0EiUgtUZWNobmljYWxJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use responseSiteHeaderDescriptor instead')
|
|
||||||
const ResponseSiteHeader$json = {
|
|
||||||
'1': 'ResponseSiteHeader',
|
|
||||||
'2': [
|
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
|
||||||
{'1': 'CorrelationID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'CorrelationID'},
|
|
||||||
{'1': 'TechnicalID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'TechnicalID'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ResponseSiteHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List responseSiteHeaderDescriptor = $convert.base64Decode(
|
|
||||||
'ChJSZXNwb25zZVNpdGVIZWFkZXISMwoGU2l0ZUlEGAEgASgJQhuSQRgyFklkZW50aWZpZXIgb2'
|
|
||||||
'YgdGhlIHNpdGVSBlNpdGVJRBKsAQoNQ29ycmVsYXRpb25JRBgCIAEoCUKFAZJBgQEyc1RoaXMg'
|
|
||||||
'SUQgaXMgZmlsbGVkIHVzaW5nIHRoZSByZXF1ZXN0IENvcnJlbGF0aW9uSUQgaWYgcHJvdmlkZW'
|
|
||||||
'QgaW4gb3JkZXIgdG8gYmUgYWJsZSB0byBjb3JyZWxhdGUgcmVxdWVzdCBhbmQgcmVzcG9uc2VK'
|
|
||||||
'CiJDb3JySURfQSJSDUNvcnJlbGF0aW9uSUQSpQEKC1RlY2huaWNhbElEGAMgASgJQoIBkkF/Mn'
|
|
||||||
'FUaGlzIElEIGlzIGZpbGxlZCB1c2luZyB0aGUgcmVxdWVzdCBUZWNobmljYWxJRCBpZiBwcm92'
|
|
||||||
'aWRlZCBpbiBvcmRlciB0byBiZSBhYmxlIHRvIGNvcnJlbGF0ZSByZXF1ZXN0IGFuZCByZXNwb2'
|
|
||||||
'5zZUoKIlRlY2hJRF9BIlILVGVjaG5pY2FsSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use attachmentTypeResponseHeaderDescriptor instead')
|
@$core.Deprecated('Use attachmentTypeResponseHeaderDescriptor instead')
|
||||||
const AttachmentTypeResponseHeader$json = {
|
const AttachmentTypeResponseHeader$json = {
|
||||||
'1': 'AttachmentTypeResponseHeader',
|
'1': 'AttachmentTypeResponseHeader',
|
||||||
@@ -665,10 +625,10 @@ const QueryHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `QueryHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `QueryHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List queryHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List queryHeaderDescriptor = $convert.base64Decode(
|
||||||
'CgtRdWVyeUhlYWRlchIlCgdQcm9qZWN0GAEgASgJQgv6QghyBhABugEBIFIHUHJvamVjdBIgCg'
|
'CgtRdWVyeUhlYWRlchImCgdQcm9qZWN0GAEgASgJQgy6gQEIcgYQAboBASBSB1Byb2plY3QSIA'
|
||||||
'tQYWdpbmdTdGF0ZRgDIAEoCVILUGFnaW5nU3RhdGUSFAoFTGltaXQYBCABKAlSBUxpbWl0EiYK'
|
'oLUGFnaW5nU3RhdGUYAyABKAlSC1BhZ2luZ1N0YXRlEhQKBUxpbWl0GAQgASgJUgVMaW1pdBIm'
|
||||||
'DkxvY2FsaXplZExhYmVsGAUgASgIUg5Mb2NhbGl6ZWRMYWJlbDoRkkEOCgzSAQlQcm9qZWN0SU'
|
'Cg5Mb2NhbGl6ZWRMYWJlbBgFIAEoCFIOTG9jYWxpemVkTGFiZWw6EZJBDgoM0gEJUHJvamVjdE'
|
||||||
'Q=');
|
'lE');
|
||||||
|
|
||||||
@$core.Deprecated('Use queryProjectHeaderDescriptor instead')
|
@$core.Deprecated('Use queryProjectHeaderDescriptor instead')
|
||||||
const QueryProjectHeader$json = {
|
const QueryProjectHeader$json = {
|
||||||
@@ -684,36 +644,14 @@ const QueryProjectHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `QueryProjectHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `QueryProjectHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List queryProjectHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List queryProjectHeaderDescriptor = $convert.base64Decode(
|
||||||
'ChJRdWVyeVByb2plY3RIZWFkZXISRwoJUHJvamVjdElEGAEgASgJQimSQRsyGUlkZW50aWZpZX'
|
'ChJRdWVyeVByb2plY3RIZWFkZXISSAoJUHJvamVjdElEGAEgASgJQiqSQRsyGUlkZW50aWZpZX'
|
||||||
'Igb2YgdGhlIHByb2plY3T6QghyBhABugEBIFIJUHJvamVjdElEEnkKC1BhZ2luZ1N0YXRlGAMg'
|
'Igb2YgdGhlIHByb2plY3S6gQEIcgYQAboBASBSCVByb2plY3RJRBJ5CgtQYWdpbmdTdGF0ZRgD'
|
||||||
'ASgJQleSQVQyTFN0YXJ0IHBvc2l0aW9uIG9mIHRoZSBxdWVyeSByZXN1bHQgcGFnZS4gUGFnaW'
|
'IAEoCUJXkkFUMkxTdGFydCBwb3NpdGlvbiBvZiB0aGUgcXVlcnkgcmVzdWx0IHBhZ2UuIFBhZ2'
|
||||||
'5hdGlvbiBkaXNhYmxlZCBpZiBlcXVhbCB0byAtMS5KBCI1MCJSC1BhZ2luZ1N0YXRlEkAKBUxp'
|
'luYXRpb24gZGlzYWJsZWQgaWYgZXF1YWwgdG8gLTEuSgQiNTAiUgtQYWdpbmdTdGF0ZRJACgVM'
|
||||||
'bWl0GAQgASgJQiqSQScyH0xlbmd0aCBvZiB0aGUgcXVlcnkgcmVzdWx0IHBhZ2VKBCI1MCJSBU'
|
'aW1pdBgEIAEoCUIqkkEnMh9MZW5ndGggb2YgdGhlIHF1ZXJ5IHJlc3VsdCBwYWdlSgQiNTAiUg'
|
||||||
'xpbWl0ElYKDkxvY2FsaXplZExhYmVsGAUgASgIQi6SQSsyKVJldHVybiB0aGUgbWVzc2FnZSBp'
|
'VMaW1pdBJWCg5Mb2NhbGl6ZWRMYWJlbBgFIAEoCEIukkErMilSZXR1cm4gdGhlIG1lc3NhZ2Ug'
|
||||||
'biB0aGUgdXNlcidzIGxhbmd1YWdlUg5Mb2NhbGl6ZWRMYWJlbDoRkkEOCgzSAQlQcm9qZWN0SU'
|
'aW4gdGhlIHVzZXIncyBsYW5ndWFnZVIOTG9jYWxpemVkTGFiZWw6EZJBDgoM0gEJUHJvamVjdE'
|
||||||
'Q=');
|
'lE');
|
||||||
|
|
||||||
@$core.Deprecated('Use querySiteHeaderDescriptor instead')
|
|
||||||
const QuerySiteHeader$json = {
|
|
||||||
'1': 'QuerySiteHeader',
|
|
||||||
'2': [
|
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
|
||||||
{'1': 'PagingState', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'PagingState'},
|
|
||||||
{'1': 'Limit', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Limit'},
|
|
||||||
{'1': 'LocalizedLabel', '3': 5, '4': 1, '5': 8, '8': {}, '10': 'LocalizedLabel'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `QuerySiteHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List querySiteHeaderDescriptor = $convert.base64Decode(
|
|
||||||
'Cg9RdWVyeVNpdGVIZWFkZXISPgoGU2l0ZUlEGAEgASgJQiaSQRgyFklkZW50aWZpZXIgb2YgdG'
|
|
||||||
'hlIHNpdGX6QghyBhABugEBIFIGU2l0ZUlEEnkKC1BhZ2luZ1N0YXRlGAMgASgJQleSQVQyTFN0'
|
|
||||||
'YXJ0IHBvc2l0aW9uIG9mIHRoZSBxdWVyeSByZXN1bHQgcGFnZS4gUGFnaW5hdGlvbiBkaXNhYm'
|
|
||||||
'xlZCBpZiBlcXVhbCB0byAtMS5KBCI1MCJSC1BhZ2luZ1N0YXRlEkAKBUxpbWl0GAQgASgJQiqS'
|
|
||||||
'QScyH0xlbmd0aCBvZiB0aGUgcXVlcnkgcmVzdWx0IHBhZ2VKBCI1MCJSBUxpbWl0ElYKDkxvY2'
|
|
||||||
'FsaXplZExhYmVsGAUgASgIQi6SQSsyKVJldHVybiB0aGUgbWVzc2FnZSBpbiB0aGUgdXNlcidz'
|
|
||||||
'IGxhbmd1YWdlUg5Mb2NhbGl6ZWRMYWJlbDoOkkELCgnSAQZTaXRlSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use resultHeaderDescriptor instead')
|
@$core.Deprecated('Use resultHeaderDescriptor instead')
|
||||||
const ResultHeader$json = {
|
const ResultHeader$json = {
|
||||||
@@ -735,7 +673,6 @@ const CommandHeader$json = {
|
|||||||
{'1': 'ActionCommand', '3': 1, '4': 1, '5': 9, '10': 'ActionCommand'},
|
{'1': 'ActionCommand', '3': 1, '4': 1, '5': 9, '10': 'ActionCommand'},
|
||||||
{'1': 'CommandTS', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'CommandTS'},
|
{'1': 'CommandTS', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'CommandTS'},
|
||||||
{'1': 'Project', '3': 3, '4': 1, '5': 9, '10': 'Project'},
|
{'1': 'Project', '3': 3, '4': 1, '5': 9, '10': 'Project'},
|
||||||
{'1': 'Site', '3': 9, '4': 1, '5': 9, '10': 'Site'},
|
|
||||||
{'1': 'FromDomain', '3': 4, '4': 1, '5': 9, '10': 'FromDomain'},
|
{'1': 'FromDomain', '3': 4, '4': 1, '5': 9, '10': 'FromDomain'},
|
||||||
{'1': 'FromObject', '3': 5, '4': 1, '5': 9, '10': 'FromObject'},
|
{'1': 'FromObject', '3': 5, '4': 1, '5': 9, '10': 'FromObject'},
|
||||||
{'1': 'FromRule', '3': 6, '4': 1, '5': 9, '10': 'FromRule'},
|
{'1': 'FromRule', '3': 6, '4': 1, '5': 9, '10': 'FromRule'},
|
||||||
@@ -748,10 +685,10 @@ const CommandHeader$json = {
|
|||||||
final $typed_data.Uint8List commandHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List commandHeaderDescriptor = $convert.base64Decode(
|
||||||
'Cg1Db21tYW5kSGVhZGVyEiQKDUFjdGlvbkNvbW1hbmQYASABKAlSDUFjdGlvbkNvbW1hbmQSKw'
|
'Cg1Db21tYW5kSGVhZGVyEiQKDUFjdGlvbkNvbW1hbmQYASABKAlSDUFjdGlvbkNvbW1hbmQSKw'
|
||||||
'oJQ29tbWFuZFRTGAIgASgLMg0uYXBpLkRhdGVUaW1lUglDb21tYW5kVFMSGAoHUHJvamVjdBgD'
|
'oJQ29tbWFuZFRTGAIgASgLMg0uYXBpLkRhdGVUaW1lUglDb21tYW5kVFMSGAoHUHJvamVjdBgD'
|
||||||
'IAEoCVIHUHJvamVjdBISCgRTaXRlGAkgASgJUgRTaXRlEh4KCkZyb21Eb21haW4YBCABKAlSCk'
|
'IAEoCVIHUHJvamVjdBIeCgpGcm9tRG9tYWluGAQgASgJUgpGcm9tRG9tYWluEh4KCkZyb21PYm'
|
||||||
'Zyb21Eb21haW4SHgoKRnJvbU9iamVjdBgFIAEoCVIKRnJvbU9iamVjdBIaCghGcm9tUnVsZRgG'
|
'plY3QYBSABKAlSCkZyb21PYmplY3QSGgoIRnJvbVJ1bGUYBiABKAlSCEZyb21SdWxlEhwKCUZy'
|
||||||
'IAEoCVIIRnJvbVJ1bGUSHAoJRnJvbUV2ZW50GAcgASgJUglGcm9tRXZlbnQSHgoKRnJvbUF1dG'
|
'b21FdmVudBgHIAEoCVIJRnJvbUV2ZW50Eh4KCkZyb21BdXRob3IYCCABKAlSCkZyb21BdXRob3'
|
||||||
'hvchgIIAEoCVIKRnJvbUF1dGhvcg==');
|
'I=');
|
||||||
|
|
||||||
@$core.Deprecated('Use eventHeaderDescriptor instead')
|
@$core.Deprecated('Use eventHeaderDescriptor instead')
|
||||||
const EventHeader$json = {
|
const EventHeader$json = {
|
||||||
@@ -760,7 +697,6 @@ const EventHeader$json = {
|
|||||||
{'1': 'InputEvent', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'InputEvent'},
|
{'1': 'InputEvent', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'InputEvent'},
|
||||||
{'1': 'EventTS', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '8': {}, '10': 'EventTS'},
|
{'1': 'EventTS', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '8': {}, '10': 'EventTS'},
|
||||||
{'1': 'Project', '3': 3, '4': 1, '5': 9, '10': 'Project'},
|
{'1': 'Project', '3': 3, '4': 1, '5': 9, '10': 'Project'},
|
||||||
{'1': 'Site', '3': 8, '4': 1, '5': 9, '10': 'Site'},
|
|
||||||
{'1': 'Author', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Author'},
|
{'1': 'Author', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Author'},
|
||||||
{'1': 'EventID', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'EventID'},
|
{'1': 'EventID', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'EventID'},
|
||||||
{'1': 'CreatedBy', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'CreatedBy'},
|
{'1': 'CreatedBy', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'CreatedBy'},
|
||||||
@@ -771,15 +707,14 @@ const EventHeader$json = {
|
|||||||
|
|
||||||
/// Descriptor for `EventHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `EventHeader`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List eventHeaderDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List eventHeaderDescriptor = $convert.base64Decode(
|
||||||
'CgtFdmVudEhlYWRlchInCgpJbnB1dEV2ZW50GAEgASgJQgf6QgRyAhABUgpJbnB1dEV2ZW50Ej'
|
'CgtFdmVudEhlYWRlchIoCgpJbnB1dEV2ZW50GAEgASgJQgi6gQEEcgIQAVIKSW5wdXRFdmVudB'
|
||||||
'EKB0V2ZW50VFMYAiABKAsyDS5hcGkuRGF0ZVRpbWVCCPpCBYoBAhABUgdFdmVudFRTEhgKB1By'
|
'IyCgdFdmVudFRTGAIgASgLMg0uYXBpLkRhdGVUaW1lQgm6gQEFigECEAFSB0V2ZW50VFMSGAoH'
|
||||||
'b2plY3QYAyABKAlSB1Byb2plY3QSEgoEU2l0ZRgIIAEoCVIEU2l0ZRIuCgZBdXRob3IYBCABKA'
|
'UHJvamVjdBgDIAEoCVIHUHJvamVjdBIvCgZBdXRob3IYBCABKAlCF7qBAQRyAhAB2sIYCwoJCg'
|
||||||
'lCFvpCBHICEAHawhgLCgkKASoSBHVzZXJSBkF1dGhvchIhCgdFdmVudElEGAUgASgJQgf6QgRy'
|
'EqEgR1c2VyUgZBdXRob3ISIgoHRXZlbnRJRBgFIAEoCUIIuoEBBHICEAFSB0V2ZW50SUQShgEK'
|
||||||
'AhABUgdFdmVudElEEoYBCglDcmVhdGVkQnkYBiABKAlCaMrCGAsKCQoBKhIEdGV4dNLCGEYKIA'
|
'CUNyZWF0ZWRCeRgGIAEoCUJoysIYCwoJCgEqEgR0ZXh00sIYRgogCg1FeGVjdXRpb25mbG93Eg'
|
||||||
'oNRXhlY3V0aW9uZmxvdxINZXhlY3V0aW9uZmxvdxgBChAKBU9yZGVyEgVvcmRlchgBChAKBUNs'
|
'1leGVjdXRpb25mbG93GAEKEAoFT3JkZXISBW9yZGVyGAEKEAoFQ2xhaW0SBWNsYWltGAHawhgL'
|
||||||
'YWltEgVjbGFpbRgB2sIYCwoJCgEqEgR1c2VyUglDcmVhdGVkQnkSGAoHVmVyc2lvbhgHIAEoDV'
|
'CgkKASoSBHVzZXJSCUNyZWF0ZWRCeRIYCgdWZXJzaW9uGAcgASgNUgdWZXJzaW9uOjmSQTYKNN'
|
||||||
'IHVmVyc2lvbjo5kkE2CjTSAQpJbnB1dEV2ZW500gEHRXZlbnRUU9IBB1Byb2plY3TSAQZBdXRo'
|
'IBCklucHV0RXZlbnTSAQdFdmVudFRT0gEHUHJvamVjdNIBBkF1dGhvctIBB0V2ZW50SUQ=');
|
||||||
'b3LSAQdFdmVudElE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use entityIDDescriptor instead')
|
@$core.Deprecated('Use entityIDDescriptor instead')
|
||||||
const EntityID$json = {
|
const EntityID$json = {
|
||||||
@@ -793,11 +728,11 @@ const EntityID$json = {
|
|||||||
|
|
||||||
/// Descriptor for `EntityID`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `EntityID`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List entityIDDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List entityIDDescriptor = $convert.base64Decode(
|
||||||
'CghFbnRpdHlJRBJGCgVSZWZJRBgCIAEoCUIwkkEjMg9Zb3VyIGlkZW50aWZpZXJKECJZb3VyX0'
|
'CghFbnRpdHlJRBJHCgVSZWZJRBgCIAEoCUIxkkEjMg9Zb3VyIGlkZW50aWZpZXJKECJZb3VyX0'
|
||||||
'9iamVjdF9JRCL6QgdyBRABGMABUgVSZWZJRBKcAQoHUmVmRGF0ZRgDIAEoCzINLmFwaS5EYXRl'
|
'9iamVjdF9JRCK6gQEHcgUQARjAAVIFUmVmSUQSnAEKB1JlZkRhdGUYAyABKAsyDS5hcGkuRGF0'
|
||||||
'VGltZUJzkkFwMm5Zb3VyIGVmZmVjdGl2ZSBkYXRlLiBJZiB5b3VyIGV2ZW50IHRyaWdnZXJzIG'
|
'ZVRpbWVCc5JBcDJuWW91ciBlZmZlY3RpdmUgZGF0ZS4gSWYgeW91ciBldmVudCB0cmlnZ2Vycy'
|
||||||
'Egc3RhdHVzIGNoYW5nZSwgdGhpcyBkYXRlIHdpbGwgYmUgdXNlZCBpbnRvIHRoZSBzdGF0dXMg'
|
'BhIHN0YXR1cyBjaGFuZ2UsIHRoaXMgZGF0ZSB3aWxsIGJlIHVzZWQgaW50byB0aGUgc3RhdHVz'
|
||||||
'QWN0dWFsRGF0ZVIHUmVmRGF0ZToNkkEKCgjSAQVSZWZJRA==');
|
'IEFjdHVhbERhdGVSB1JlZkRhdGU6DZJBCgoI0gEFUmVmSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use stockIDDescriptor instead')
|
@$core.Deprecated('Use stockIDDescriptor instead')
|
||||||
const StockID$json = {
|
const StockID$json = {
|
||||||
@@ -861,19 +796,19 @@ const DateTime$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DateTime`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DateTime`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List dateTimeDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List dateTimeDescriptor = $convert.base64Decode(
|
||||||
'CghEYXRlVGltZRLgAwoIRGF0ZVRpbWUYASABKAlCwwOSQW8yVVVUQyBkYXRlL3RpbWUgaW4gPG'
|
'CghEYXRlVGltZRLhAwoIRGF0ZVRpbWUYASABKAlCxAOSQW8yVVVUQyBkYXRlL3RpbWUgaW4gPG'
|
||||||
'EgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEnPklTTyA4NjAx'
|
'EgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEnPklTTyA4NjAx'
|
||||||
'PC9hPiBmb3JtYXRKFiIyMDIzLTAxLTAxVDAwOjAwOjAwWiL6QgVyA9ABAcrCGAsKCQoBKhIEZG'
|
'PC9hPiBmb3JtYXRKFiIyMDIzLTAxLTAxVDAwOjAwOjAwWiK6gQEFcgPQAQHKwhgLCgkKASoSBG'
|
||||||
'F0ZdLCGKYCChAKBUFjdG9yEgVhY3RvchgBCiAKDUV4ZWN1dGlvbmZsb3cSDWV4ZWN1dGlvbmZs'
|
'RhdGXSwhimAgoQCgVBY3RvchIFYWN0b3IYAQogCg1FeGVjdXRpb25mbG93Eg1leGVjdXRpb25m'
|
||||||
'b3cYAQoeCgxIYW5kbGluZ3VuaXQSDGhhbmRsaW5ndW5pdBgBCg4KBEl0ZW0SBGl0ZW0YAQoWCg'
|
'bG93GAEKHgoMSGFuZGxpbmd1bml0EgxoYW5kbGluZ3VuaXQYAQoOCgRJdGVtEgRpdGVtGAEKFg'
|
||||||
'hNb3ZlbWVudBIIbW92ZW1lbnQYAQoQCgVPcmRlchIFb3JkZXIYAQoUCgdQYXJ0bmVyEgdwYXJ0'
|
'oITW92ZW1lbnQSCG1vdmVtZW50GAEKEAoFT3JkZXISBW9yZGVyGAEKFAoHUGFydG5lchIHcGFy'
|
||||||
'bmVyGAEKEAoFU3RvY2sSBXN0b2NrGAEKRAoFU3RvY2sSDnN0b2NrX2V4dGVuZGVkGAEqKVNpbX'
|
'dG5lchgBChAKBVN0b2NrEgVzdG9jaxgBCkQKBVN0b2NrEg5zdG9ja19leHRlbmRlZBgBKilTaW'
|
||||||
'BsZUFnZ3JlZ2F0ZUZ1bmN0aW9uKGFueUxhc3QsRGF0ZVRpbWUpChYKCFRyYWNraW5nEgh0cmFj'
|
'1wbGVBZ2dyZWdhdGVGdW5jdGlvbihhbnlMYXN0LERhdGVUaW1lKQoWCghUcmFja2luZxIIdHJh'
|
||||||
'a2luZxgBChAKBUNsYWltEgVjbGFpbRgB2sIYCwoJCgEqEgRkYXRlUghEYXRlVGltZRLRAQoOQX'
|
'Y2tpbmcYAQoQCgVDbGFpbRIFY2xhaW0YAdrCGAsKCQoBKhIEZGF0ZVIIRGF0ZVRpbWUS0gEKDk'
|
||||||
'V0aG9yVGltZVpvbmUYAiABKAlCqAGSQZwBMokBVGltZSB6b25lIGZyb20gd2hlcmUgdGhlIGF1'
|
'F1dGhvclRpbWVab25lGAIgASgJQqkBkkGcATKJAVRpbWUgem9uZSBmcm9tIHdoZXJlIHRoZSBh'
|
||||||
'dGhvciBlbWl0cyB0aGUgZXZlbnQgaW4gdGhpcyA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZW'
|
'dXRob3IgZW1pdHMgdGhlIGV2ZW50IGluIHRoaXMgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcG'
|
||||||
'RpYS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT5K'
|
'VkaWEub3JnL3dpa2kvTGlzdF9vZl90el9kYXRhYmFzZV90aW1lX3pvbmVzJz5mb3JtYXQ8L2E+'
|
||||||
'DiJFdXJvcGUvUGFyaXMi+kIFcgPgAQFSDkF1dGhvclRpbWVab25l');
|
'Sg4iRXVyb3BlL1BhcmlzIrqBAQVyA+ABAVIOQXV0aG9yVGltZVpvbmU=');
|
||||||
|
|
||||||
@$core.Deprecated('Use valueTypeDescriptor instead')
|
@$core.Deprecated('Use valueTypeDescriptor instead')
|
||||||
const ValueType$json = {
|
const ValueType$json = {
|
||||||
@@ -910,10 +845,10 @@ const Amount$json = {
|
|||||||
/// Descriptor for `Amount`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Amount`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List amountDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List amountDescriptor = $convert.base64Decode(
|
||||||
'CgZBbW91bnQSLAoFVmFsdWUYASABKAJCFtLCGBIKEAoFQ2xhaW0SBWNsYWltGAFSBVZhbHVlEq'
|
'CgZBbW91bnQSLAoFVmFsdWUYASABKAJCFtLCGBIKEAoFQ2xhaW0SBWNsYWltGAFSBVZhbHVlEq'
|
||||||
'kBCghDdXJyZW5jeRgCIAEoDjINLmFwaS5DdXJyZW5jeUJ+kkFdMks8YSBocmVmPSdodHRwczov'
|
'oBCghDdXJyZW5jeRgCIAEoDjINLmFwaS5DdXJyZW5jeUJ/kkFdMks8YSBocmVmPSdodHRwczov'
|
||||||
'L2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fNDIxNyc+SVNPIDQyMTc8L2E+IGN1cnJlbmN5IG'
|
'L2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fNDIxNyc+SVNPIDQyMTc8L2E+IGN1cnJlbmN5IG'
|
||||||
'NvZGVKDlsiRVVSIiwgIlVTRCJd+kIFggECEAHSwhgSChAKBUNsYWltEgVjbGFpbRgBUghDdXJy'
|
'NvZGVKDlsiRVVSIiwgIlVTRCJduoEBBYIBAhAB0sIYEgoQCgVDbGFpbRIFY2xhaW0YAVIIQ3Vy'
|
||||||
'ZW5jeQ==');
|
'cmVuY3k=');
|
||||||
|
|
||||||
@$core.Deprecated('Use quantityLengthDescriptor instead')
|
@$core.Deprecated('Use quantityLengthDescriptor instead')
|
||||||
const QuantityLength$json = {
|
const QuantityLength$json = {
|
||||||
@@ -1096,13 +1031,13 @@ const SimpleFilter$json = {
|
|||||||
|
|
||||||
/// Descriptor for `SimpleFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `SimpleFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List simpleFilterDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List simpleFilterDescriptor = $convert.base64Decode(
|
||||||
'CgxTaW1wbGVGaWx0ZXISQgoJQXR0cmlidXRlGAEgASgJQiSSQRkyC0ZpbHRlciBwYXRoSgoiSU'
|
'CgxTaW1wbGVGaWx0ZXISQwoJQXR0cmlidXRlGAEgASgJQiWSQRkyC0ZpbHRlciBwYXRoSgoiSU'
|
||||||
'QuUmVmSUQi+kIFcgMY+gFSCUF0dHJpYnV0ZRJHCgVWYWx1ZRgCIAEoCUIxkkEmMiRVc2UgdGhp'
|
'QuUmVmSUQiuoEBBXIDGPoBUglBdHRyaWJ1dGUSSAoFVmFsdWUYAiABKAlCMpJBJjIkVXNlIHRo'
|
||||||
'cyBwYXJhbWV0ZXIgaWYgb25seSBvbmUgdmFsdWX6QgVyAxj6AVIFVmFsdWUSUwoGVmFsdWVzGA'
|
'aXMgcGFyYW1ldGVyIGlmIG9ubHkgb25lIHZhbHVluoEBBXIDGPoBUgVWYWx1ZRJUCgZWYWx1ZX'
|
||||||
'MgAygJQjuSQSsyKVVzZSB0aGlzIHBhcmFtZXRlciBpZiBtb3JlIHRoYW4gb25lIHZhbHVl+kIK'
|
'MYAyADKAlCPJJBKzIpVXNlIHRoaXMgcGFyYW1ldGVyIGlmIG1vcmUgdGhhbiBvbmUgdmFsdWW6'
|
||||||
'kgEHIgVyAxj6AVIGVmFsdWVzEkIKCE9wZXJhdG9yGAQgASgJQiaSQRwyGkFsbG93ZWQgdmFsdW'
|
'gQEKkgEHIgVyAxj6AVIGVmFsdWVzEkMKCE9wZXJhdG9yGAQgASgJQieSQRwyGkFsbG93ZWQgdm'
|
||||||
'VzIDogIiIsICJub3Qi+kIEcgIYMlIIT3BlcmF0b3ISOwoKQ29tYmluZWRJRBgFIAEoCUIbkkEQ'
|
'FsdWVzIDogIiIsICJub3QiuoEBBHICGDJSCE9wZXJhdG9yEjwKCkNvbWJpbmVkSUQYBSABKAlC'
|
||||||
'Mg5NZXRhZGF0YSdzIGtlefpCBXIDGPoBUgpDb21iaW5lZElE');
|
'HJJBEDIOTWV0YWRhdGEncyBrZXm6gQEFcgMY+gFSCkNvbWJpbmVkSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use combinedFilterDescriptor instead')
|
@$core.Deprecated('Use combinedFilterDescriptor instead')
|
||||||
const CombinedFilter$json = {
|
const CombinedFilter$json = {
|
||||||
@@ -1136,11 +1071,11 @@ const RangeFilter$json = {
|
|||||||
|
|
||||||
/// Descriptor for `RangeFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RangeFilter`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List rangeFilterDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List rangeFilterDescriptor = $convert.base64Decode(
|
||||||
'CgtSYW5nZUZpbHRlchJCCglBdHRyaWJ1dGUYASABKAlCJJJBGTILRmlsdGVyIHBhdGhKCiJJRC'
|
'CgtSYW5nZUZpbHRlchJDCglBdHRyaWJ1dGUYASABKAlCJZJBGTILRmlsdGVyIHBhdGhKCiJJRC'
|
||||||
'5SZWZJRCL6QgVyAxj6AVIJQXR0cmlidXRlEjQKB3ZhbHVlTHQYAiABKAlCGpJBDzINTWF4aW11'
|
'5SZWZJRCK6gQEFcgMY+gFSCUF0dHJpYnV0ZRI1Cgd2YWx1ZUx0GAIgASgJQhuSQQ8yDU1heGlt'
|
||||||
'bSB2YWx1ZfpCBXIDGPoBUgd2YWx1ZUx0EjQKB3ZhbHVlR3QYAyABKAlCGpJBDzINTWluaW11bS'
|
'dW0gdmFsdWW6gQEFcgMY+gFSB3ZhbHVlTHQSNQoHdmFsdWVHdBgDIAEoCUIbkkEPMg1NaW5pbX'
|
||||||
'B2YWx1ZfpCBXIDGPoBUgd2YWx1ZUd0EjsKCkNvbWJpbmVkSUQYBCABKAlCG5JBEDIOTWV0YWRh'
|
'VtIHZhbHVluoEBBXIDGPoBUgd2YWx1ZUd0EjwKCkNvbWJpbmVkSUQYBCABKAlCHJJBEDIOTWV0'
|
||||||
'dGEncyBrZXn6QgVyAxj6AVIKQ29tYmluZWRJRA==');
|
'YWRhdGEncyBrZXm6gQEFcgMY+gFSCkNvbWJpbmVkSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use blockFilterDescriptor instead')
|
@$core.Deprecated('Use blockFilterDescriptor instead')
|
||||||
const BlockFilter$json = {
|
const BlockFilter$json = {
|
||||||
@@ -1173,10 +1108,10 @@ const MatchField$json = {
|
|||||||
|
|
||||||
/// Descriptor for `MatchField`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `MatchField`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List matchFieldDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List matchFieldDescriptor = $convert.base64Decode(
|
||||||
'CgpNYXRjaEZpZWxkEjUKCUF0dHJpYnV0ZRgBIAEoCUIXkkENMgtGaWx0ZXIgcGF0aPpCBHICEA'
|
'CgpNYXRjaEZpZWxkEjYKCUF0dHJpYnV0ZRgBIAEoCUIYkkENMgtGaWx0ZXIgcGF0aLqBAQRyAh'
|
||||||
'FSCUF0dHJpYnV0ZRJSChFBdHRyaWJ1dGVDb21iaW5lZBgCIAEoCUIkkkEhMh9GaWx0ZXIgcGF0'
|
'ABUglBdHRyaWJ1dGUSUgoRQXR0cmlidXRlQ29tYmluZWQYAiABKAlCJJJBITIfRmlsdGVyIHBh'
|
||||||
'aCBmb3IgbWV0YWRhdGEgZmlsdGVyUhFBdHRyaWJ1dGVDb21iaW5lZBIzCgpDb21iaW5lZElEGA'
|
'dGggZm9yIG1ldGFkYXRhIGZpbHRlclIRQXR0cmlidXRlQ29tYmluZWQSMwoKQ29tYmluZWRJRB'
|
||||||
'MgASgJQhOSQRAyDk1ldGFkYXRhJ3Mga2V5UgpDb21iaW5lZElE');
|
'gDIAEoCUITkkEQMg5NZXRhZGF0YSdzIGtleVIKQ29tYmluZWRJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use matchFieldResultDescriptor instead')
|
@$core.Deprecated('Use matchFieldResultDescriptor instead')
|
||||||
const MatchFieldResult$json = {
|
const MatchFieldResult$json = {
|
||||||
@@ -1254,11 +1189,11 @@ const LabelStructure$json = {
|
|||||||
|
|
||||||
/// Descriptor for `LabelStructure`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `LabelStructure`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List labelStructureDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List labelStructureDescriptor = $convert.base64Decode(
|
||||||
'Cg5MYWJlbFN0cnVjdHVyZRJfCgRDb2RlGAEgASgJQkuSQRUyE0NvZGUgb2YgdGhlIG1lc3NhZ2'
|
'Cg5MYWJlbFN0cnVjdHVyZRJgCgRDb2RlGAEgASgJQkySQRUyE0NvZGUgb2YgdGhlIG1lc3NhZ2'
|
||||||
'X6QgRyAhABysIYFAoSCgEqEg1nZW5lcmF0ZWRUZXh02sIYEAoOCgEqEglzaG9ydFRleHRSBENv'
|
'W6gQEEcgIQAcrCGBQKEgoBKhINZ2VuZXJhdGVkVGV4dNrCGBAKDgoBKhIJc2hvcnRUZXh0UgRD'
|
||||||
'ZGUSNgoFTGFiZWwYAiABKAlCIJJBFjIUTGFiZWwgb2YgdGhlIG1lc3NhZ2X6QgRyAhABUgVMYW'
|
'b2RlEjcKBUxhYmVsGAIgASgJQiGSQRYyFExhYmVsIG9mIHRoZSBtZXNzYWdluoEBBHICEAFSBU'
|
||||||
'JlbBJLCgZQYXJhbXMYAyADKAsyES5hcGkuUGFyYW1FbGVtZW50QiCSQRYyFFBhcmFtZXRlcnMg'
|
'xhYmVsEksKBlBhcmFtcxgDIAMoCzIRLmFwaS5QYXJhbUVsZW1lbnRCIJJBFjIUUGFyYW1ldGVy'
|
||||||
'Zm9yIGxhYmVs6sEYA0tleVIGUGFyYW1zOhSSQREKD9IBBENvZGXSAQVMYWJlbA==');
|
'cyBmb3IgbGFiZWzqwRgDS2V5UgZQYXJhbXM6FJJBEQoP0gEEQ29kZdIBBUxhYmVs');
|
||||||
|
|
||||||
@$core.Deprecated('Use coreEndpointDescriptor instead')
|
@$core.Deprecated('Use coreEndpointDescriptor instead')
|
||||||
const CoreEndpoint$json = {
|
const CoreEndpoint$json = {
|
||||||
@@ -1414,10 +1349,10 @@ const StringDateObject$json = {
|
|||||||
|
|
||||||
/// Descriptor for `StringDateObject`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `StringDateObject`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List stringDateObjectDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List stringDateObjectDescriptor = $convert.base64Decode(
|
||||||
'ChBTdHJpbmdEYXRlT2JqZWN0Ep0BCghEYXRlVGltZRgKIAEoCUKAAZJBVzJVVVRDIGRhdGUvdG'
|
'ChBTdHJpbmdEYXRlT2JqZWN0Ep4BCghEYXRlVGltZRgKIAEoCUKBAZJBVzJVVVRDIGRhdGUvdG'
|
||||||
'ltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSc+'
|
'ltZSBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSc+'
|
||||||
'SVNPIDg2MDE8L2E+IGZvcm1hdPpCBXID0AEBysIYCwoJCgEqEgRkYXRl2sIYCwoJCgEqEgRkYX'
|
'SVNPIDg2MDE8L2E+IGZvcm1hdLqBAQVyA9ABAcrCGAsKCQoBKhIEZGF0ZdrCGAsKCQoBKhIEZG'
|
||||||
'RlUghEYXRlVGltZQ==');
|
'F0ZVIIRGF0ZVRpbWU=');
|
||||||
|
|
||||||
@$core.Deprecated('Use workflowExecutionResultDescriptor instead')
|
@$core.Deprecated('Use workflowExecutionResultDescriptor instead')
|
||||||
const WorkflowExecutionResult$json = {
|
const WorkflowExecutionResult$json = {
|
||||||
@@ -1431,9 +1366,9 @@ const WorkflowExecutionResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `WorkflowExecutionResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `WorkflowExecutionResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List workflowExecutionResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List workflowExecutionResultDescriptor = $convert.base64Decode(
|
||||||
'ChdXb3JrZmxvd0V4ZWN1dGlvblJlc3VsdBInCgpXb3JrZmxvd0lkGAEgASgJQgf6QgRyAhABUg'
|
'ChdXb3JrZmxvd0V4ZWN1dGlvblJlc3VsdBIoCgpXb3JrZmxvd0lkGAEgASgJQgi6gQEEcgIQAV'
|
||||||
'pXb3JrZmxvd0lkEh0KBVJ1bklkGAIgASgJQgf6QgRyAhABUgVSdW5JZBIfCgZEb21haW4YAyAB'
|
'IKV29ya2Zsb3dJZBIeCgVSdW5JZBgCIAEoCUIIuoEBBHICEAFSBVJ1bklkEiAKBkRvbWFpbhgD'
|
||||||
'KAlCB/pCBHICEAFSBkRvbWFpbg==');
|
'IAEoCUIIuoEBBHICEAFSBkRvbWFpbg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use moduleRegistrationDescriptor instead')
|
@$core.Deprecated('Use moduleRegistrationDescriptor instead')
|
||||||
const ModuleRegistration$json = {
|
const ModuleRegistration$json = {
|
||||||
@@ -1450,14 +1385,14 @@ const ModuleRegistration$json = {
|
|||||||
final $typed_data.Uint8List moduleRegistrationDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List moduleRegistrationDescriptor = $convert.base64Decode(
|
||||||
'ChJNb2R1bGVSZWdpc3RyYXRpb24SigEKDldvcmtmbG93VGFyZ2V0GAEgASgOMhUuYXBpLldvcm'
|
'ChJNb2R1bGVSZWdpc3RyYXRpb24SigEKDldvcmtmbG93VGFyZ2V0GAEgASgOMhUuYXBpLldvcm'
|
||||||
'tmbG93VHlwZUVudW1CS5JBSDJGSW50byB3aGljaCBjb3JlIHdvcmtmbG93LCB0aGUgbW9kdWxl'
|
'tmbG93VHlwZUVudW1CS5JBSDJGSW50byB3aGljaCBjb3JlIHdvcmtmbG93LCB0aGUgbW9kdWxl'
|
||||||
'IGNoaWxkIHdvcmtmbG93IHdpbGwgYmUgcmVnaXN0ZXJlZFIOV29ya2Zsb3dUYXJnZXQSXwoMV2'
|
'IGNoaWxkIHdvcmtmbG93IHdpbGwgYmUgcmVnaXN0ZXJlZFIOV29ya2Zsb3dUYXJnZXQSYAoMV2'
|
||||||
'9ya2Zsb3dQYXRoGAIgASgJQjuSQTEyL0dvIHBhdGggb2YgbW9kdWxlIGNoaWxkIHdvcmtmbG93'
|
'9ya2Zsb3dQYXRoGAIgASgJQjySQTEyL0dvIHBhdGggb2YgbW9kdWxlIGNoaWxkIHdvcmtmbG93'
|
||||||
'IGltcGxlbWVudGF0aW9u+kIEcgIQAVIMV29ya2Zsb3dQYXRoEnYKBFR5cGUYAyABKA4yGy5hcG'
|
'IGltcGxlbWVudGF0aW9uuoEBBHICEAFSDFdvcmtmbG93UGF0aBJ2CgRUeXBlGAMgASgOMhsuYX'
|
||||||
'kuTW9kdWxlV29ya2Zsb3dUeXBlRW51bUJFkkFCMkBQUkUgb3IgUE9TVCB0byBleGVjdXRlIGJl'
|
'BpLk1vZHVsZVdvcmtmbG93VHlwZUVudW1CRZJBQjJAUFJFIG9yIFBPU1QgdG8gZXhlY3V0ZSBi'
|
||||||
'Zm9yZSBvciBhZnRlciB0aGUgY29yZSB3b3JrZm93IHRhcmdldGVkUgRUeXBlEowBCgdUaW1lb3'
|
'ZWZvcmUgb3IgYWZ0ZXIgdGhlIGNvcmUgd29ya2ZvdyB0YXJnZXRlZFIEVHlwZRKNAQoHVGltZW'
|
||||||
'V0GAQgASgFQnKSQWgyZm1heCB0aW1lb3V0IGluIG1pbnV0ZXMgb2YgdGhlIG1vZHVsZSBjaGls'
|
'91dBgEIAEoBUJzkkFoMmZtYXggdGltZW91dCBpbiBtaW51dGVzIG9mIHRoZSBtb2R1bGUgY2hp'
|
||||||
'ZCB3b3JrZmxvdywgaWdub3JlZCBpZiBpdCBleGNlZWRzIHRoZSBwbGF0Zm9ybSBkZWZhdWx0IH'
|
'bGQgd29ya2Zsb3csIGlnbm9yZWQgaWYgaXQgZXhjZWVkcyB0aGUgcGxhdGZvcm0gZGVmYXVsdC'
|
||||||
'ZhbHVlLvpCBBoCIABSB1RpbWVvdXQ=');
|
'B2YWx1ZS66gQEEGgIgAFIHVGltZW91dA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use moduleDeregistrationDescriptor instead')
|
@$core.Deprecated('Use moduleDeregistrationDescriptor instead')
|
||||||
const ModuleDeregistration$json = {
|
const ModuleDeregistration$json = {
|
||||||
@@ -1473,11 +1408,11 @@ const ModuleDeregistration$json = {
|
|||||||
final $typed_data.Uint8List moduleDeregistrationDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List moduleDeregistrationDescriptor = $convert.base64Decode(
|
||||||
'ChRNb2R1bGVEZXJlZ2lzdHJhdGlvbhKKAQoOV29ya2Zsb3dUYXJnZXQYASABKA4yFS5hcGkuV2'
|
'ChRNb2R1bGVEZXJlZ2lzdHJhdGlvbhKKAQoOV29ya2Zsb3dUYXJnZXQYASABKA4yFS5hcGkuV2'
|
||||||
'9ya2Zsb3dUeXBlRW51bUJLkkFIMkZJbnRvIHdoaWNoIGNvcmUgd29ya2Zsb3csIHRoZSBtb2R1'
|
'9ya2Zsb3dUeXBlRW51bUJLkkFIMkZJbnRvIHdoaWNoIGNvcmUgd29ya2Zsb3csIHRoZSBtb2R1'
|
||||||
'bGUgY2hpbGQgd29ya2Zsb3cgd2lsbCBiZSByZWdpc3RlcmVkUg5Xb3JrZmxvd1RhcmdldBJfCg'
|
'bGUgY2hpbGQgd29ya2Zsb3cgd2lsbCBiZSByZWdpc3RlcmVkUg5Xb3JrZmxvd1RhcmdldBJgCg'
|
||||||
'xXb3JrZmxvd1BhdGgYAiABKAlCO5JBMTIvR28gcGF0aCBvZiBtb2R1bGUgY2hpbGQgd29ya2Zs'
|
'xXb3JrZmxvd1BhdGgYAiABKAlCPJJBMTIvR28gcGF0aCBvZiBtb2R1bGUgY2hpbGQgd29ya2Zs'
|
||||||
'b3cgaW1wbGVtZW50YXRpb276QgRyAhABUgxXb3JrZmxvd1BhdGgSdgoEVHlwZRgDIAEoDjIbLm'
|
'b3cgaW1wbGVtZW50YXRpb266gQEEcgIQAVIMV29ya2Zsb3dQYXRoEnYKBFR5cGUYAyABKA4yGy'
|
||||||
'FwaS5Nb2R1bGVXb3JrZmxvd1R5cGVFbnVtQkWSQUIyQFBSRSBvciBQT1NUIHRvIGV4ZWN1dGUg'
|
'5hcGkuTW9kdWxlV29ya2Zsb3dUeXBlRW51bUJFkkFCMkBQUkUgb3IgUE9TVCB0byBleGVjdXRl'
|
||||||
'YmVmb3JlIG9yIGFmdGVyIHRoZSBjb3JlIHdvcmtmb3cgdGFyZ2V0ZWRSBFR5cGU=');
|
'IGJlZm9yZSBvciBhZnRlciB0aGUgY29yZSB3b3JrZm93IHRhcmdldGVkUgRUeXBl');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimTypeDescriptor instead')
|
@$core.Deprecated('Use claimTypeDescriptor instead')
|
||||||
const ClaimType$json = {
|
const ClaimType$json = {
|
||||||
@@ -1504,22 +1439,22 @@ const ClaimType$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ClaimType`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ClaimType`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List claimTypeDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimTypeDescriptor = $convert.base64Decode(
|
||||||
'CglDbGFpbVR5cGUSFwoCSUQYASABKAlCB/pCBHICEAFSAklEEiUKCVByb2plY3RJRBgCIAEoCU'
|
'CglDbGFpbVR5cGUSGAoCSUQYASABKAlCCLqBAQRyAhABUgJJRBImCglQcm9qZWN0SUQYAiABKA'
|
||||||
'IH+kIEcgIQAVIJUHJvamVjdElEEh8KBlJlYXNvbhgDIAEoCUIH+kIEcgIQAVIGUmVhc29uEjcK'
|
'lCCLqBAQRyAhABUglQcm9qZWN0SUQSIAoGUmVhc29uGAMgASgJQgi6gQEEcgIQAVIGUmVhc29u'
|
||||||
'ClJlYXNvbkNvZGUYBCABKAlCF/pCFHISEAEyDl5bYS16QS1aMC05XSskUgpSZWFzb25Db2RlEj'
|
'EjgKClJlYXNvbkNvZGUYBCABKAlCGLqBARRyEhABMg5eW2EtekEtWjAtOV0rJFIKUmVhc29uQ2'
|
||||||
'4KCkVudGl0eVR5cGUYBSABKA4yFC5hcGkuQ2xhaW1FbnRpdHlUeXBlQgj6QgWCAQIQAVIKRW50'
|
'9kZRI/CgpFbnRpdHlUeXBlGAUgASgOMhQuYXBpLkNsYWltRW50aXR5VHlwZUIJuoEBBYIBAhAB'
|
||||||
'aXR5VHlwZRJPChJEZWZhdWx0Q3JpdGljYWxpdHkYBiABKA4yFS5hcGkuQ2xhaW1Dcml0aWNhbG'
|
'UgpFbnRpdHlUeXBlElAKEkRlZmF1bHRDcml0aWNhbGl0eRgGIAEoDjIVLmFwaS5DbGFpbUNyaX'
|
||||||
'l0eUII+kIFggECEAFSEkRlZmF1bHRDcml0aWNhbGl0eRI2CgtUcmFuc2l0aW9ucxgHIAMoCzIU'
|
'RpY2FsaXR5Qgm6gQEFggECEAFSEkRlZmF1bHRDcml0aWNhbGl0eRI2CgtUcmFuc2l0aW9ucxgH'
|
||||||
'LmFwaS5DbGFpbVRyYW5zaXRpb25SC1RyYW5zaXRpb25zEkEKEFBvc3NpYmxlQ2xvc3VyZXMYCC'
|
'IAMoCzIULmFwaS5DbGFpbVRyYW5zaXRpb25SC1RyYW5zaXRpb25zEkEKEFBvc3NpYmxlQ2xvc3'
|
||||||
'ADKAsyFS5hcGkuQ2xhaW1UeXBlQ2xvc3VyZVIQUG9zc2libGVDbG9zdXJlcxI4ChdDcml0aWNh'
|
'VyZXMYCCADKAsyFS5hcGkuQ2xhaW1UeXBlQ2xvc3VyZVIQUG9zc2libGVDbG9zdXJlcxI4ChdD'
|
||||||
'bGl0eUFsbG93ZWRSb2xlcxgJIAMoCVIXQ3JpdGljYWxpdHlBbGxvd2VkUm9sZXMSKgoQUmVhZE'
|
'cml0aWNhbGl0eUFsbG93ZWRSb2xlcxgJIAMoCVIXQ3JpdGljYWxpdHlBbGxvd2VkUm9sZXMSKg'
|
||||||
'FsbG93ZWRSb2xlcxgKIAMoCVIQUmVhZEFsbG93ZWRSb2xlcxIsChFXcml0ZUFsbG93ZWRSb2xl'
|
'oQUmVhZEFsbG93ZWRSb2xlcxgKIAMoCVIQUmVhZEFsbG93ZWRSb2xlcxIsChFXcml0ZUFsbG93'
|
||||||
'cxgLIAMoCVIRV3JpdGVBbGxvd2VkUm9sZXMSLgoSQXNzaWduQWxsb3dlZFJvbGVzGAwgAygJUh'
|
'ZWRSb2xlcxgLIAMoCVIRV3JpdGVBbGxvd2VkUm9sZXMSLgoSQXNzaWduQWxsb3dlZFJvbGVzGA'
|
||||||
'JBc3NpZ25BbGxvd2VkUm9sZXMSOgoPQWxsb3dlZFN0YXR1c2VzGA0gAygOMhAuYXBpLkNsYWlt'
|
'wgAygJUhJBc3NpZ25BbGxvd2VkUm9sZXMSOgoPQWxsb3dlZFN0YXR1c2VzGA0gAygOMhAuYXBp'
|
||||||
'U3RhdHVzUg9BbGxvd2VkU3RhdHVzZXMSQAoNRGVmYXVsdFN0YXR1cxgOIAEoDjIQLmFwaS5DbG'
|
'LkNsYWltU3RhdHVzUg9BbGxvd2VkU3RhdHVzZXMSQQoNRGVmYXVsdFN0YXR1cxgOIAEoDjIQLm'
|
||||||
'FpbVN0YXR1c0II+kIFggECEAFSDURlZmF1bHRTdGF0dXMSKAoGU2VjdG9yGA8gASgOMhAuYXBp'
|
'FwaS5DbGFpbVN0YXR1c0IJuoEBBYIBAhABUg1EZWZhdWx0U3RhdHVzEigKBlNlY3RvchgPIAEo'
|
||||||
'LkNsYWltU2VjdG9yUgZTZWN0b3ISKgoQRGVmYXVsdEFzc2lnbmVlcxgQIAMoCVIQRGVmYXVsdE'
|
'DjIQLmFwaS5DbGFpbVNlY3RvclIGU2VjdG9yEioKEERlZmF1bHRBc3NpZ25lZXMYECADKAlSEE'
|
||||||
'Fzc2lnbmVlcw==');
|
'RlZmF1bHRBc3NpZ25lZXM=');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimTransitionDescriptor instead')
|
@$core.Deprecated('Use claimTransitionDescriptor instead')
|
||||||
const ClaimTransition$json = {
|
const ClaimTransition$json = {
|
||||||
@@ -1534,10 +1469,10 @@ const ClaimTransition$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ClaimTransition`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ClaimTransition`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List claimTransitionDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimTransitionDescriptor = $convert.base64Decode(
|
||||||
'Cg9DbGFpbVRyYW5zaXRpb24SOgoKRnJvbVN0YXR1cxgBIAEoDjIQLmFwaS5DbGFpbVN0YXR1c0'
|
'Cg9DbGFpbVRyYW5zaXRpb24SOwoKRnJvbVN0YXR1cxgBIAEoDjIQLmFwaS5DbGFpbVN0YXR1c0'
|
||||||
'II+kIFggECEAFSCkZyb21TdGF0dXMSNgoIVG9TdGF0dXMYAiABKA4yEC5hcGkuQ2xhaW1TdGF0'
|
'IJuoEBBYIBAhABUgpGcm9tU3RhdHVzEjcKCFRvU3RhdHVzGAIgASgOMhAuYXBpLkNsYWltU3Rh'
|
||||||
'dXNCCPpCBYIBAhABUghUb1N0YXR1cxIiCgxBbGxvd2VkUm9sZXMYAyADKAlSDEFsbG93ZWRSb2'
|
'dHVzQgm6gQEFggECEAFSCFRvU3RhdHVzEiIKDEFsbG93ZWRSb2xlcxgDIAMoCVIMQWxsb3dlZF'
|
||||||
'xlcxIiCgxTaG91bGROb3RpZnkYBCABKAhSDFNob3VsZE5vdGlmeQ==');
|
'JvbGVzEiIKDFNob3VsZE5vdGlmeRgEIAEoCFIMU2hvdWxkTm90aWZ5');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimTypeClosureDescriptor instead')
|
@$core.Deprecated('Use claimTypeClosureDescriptor instead')
|
||||||
const ClaimTypeClosure$json = {
|
const ClaimTypeClosure$json = {
|
||||||
@@ -1550,8 +1485,8 @@ const ClaimTypeClosure$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ClaimTypeClosure`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ClaimTypeClosure`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List claimTypeClosureDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimTypeClosureDescriptor = $convert.base64Decode(
|
||||||
'ChBDbGFpbVR5cGVDbG9zdXJlEikKC1Jlc3BvbnNpYmxlGAEgASgJQgf6QgRyAhABUgtSZXNwb2'
|
'ChBDbGFpbVR5cGVDbG9zdXJlEioKC1Jlc3BvbnNpYmxlGAEgASgJQgi6gQEEcgIQAVILUmVzcG'
|
||||||
'5zaWJsZRIWCgZDYXVzZXMYAiADKAlSBkNhdXNlcw==');
|
'9uc2libGUSFgoGQ2F1c2VzGAIgAygJUgZDYXVzZXM=');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimClosureDescriptor instead')
|
@$core.Deprecated('Use claimClosureDescriptor instead')
|
||||||
const ClaimClosure$json = {
|
const ClaimClosure$json = {
|
||||||
@@ -1564,9 +1499,9 @@ const ClaimClosure$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ClaimClosure`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ClaimClosure`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List claimClosureDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimClosureDescriptor = $convert.base64Decode(
|
||||||
'CgxDbGFpbUNsb3N1cmUSPwoLUmVzcG9uc2libGUYASABKAlCHfpCBHICEAHSwhgSChAKBUNsYW'
|
'CgxDbGFpbUNsb3N1cmUSQAoLUmVzcG9uc2libGUYASABKAlCHrqBAQRyAhAB0sIYEgoQCgVDbG'
|
||||||
'ltEgVjbGFpbRgBUgtSZXNwb25zaWJsZRIzCgVDYXVzZRgCIAEoCUId+kIEcgIQAdLCGBIKEAoF'
|
'FpbRIFY2xhaW0YAVILUmVzcG9uc2libGUSNAoFQ2F1c2UYAiABKAlCHrqBAQRyAhAB0sIYEgoQ'
|
||||||
'Q2xhaW0SBWNsYWltGAFSBUNhdXNl');
|
'CgVDbGFpbRIFY2xhaW0YAVIFQ2F1c2U=');
|
||||||
|
|
||||||
@$core.Deprecated('Use claimSummaryDescriptor instead')
|
@$core.Deprecated('Use claimSummaryDescriptor instead')
|
||||||
const ClaimSummary$json = {
|
const ClaimSummary$json = {
|
||||||
@@ -1580,12 +1515,12 @@ const ClaimSummary$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ClaimSummary`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ClaimSummary`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List claimSummaryDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List claimSummaryDescriptor = $convert.base64Decode(
|
||||||
'CgxDbGFpbVN1bW1hcnkSgQEKC0NsYWltVHlwZUlEGAEgASgJQl+SQR4yHElkZW50aWZpZXIgb2'
|
'CgxDbGFpbVN1bW1hcnkSggEKC0NsYWltVHlwZUlEGAEgASgJQmCSQR4yHElkZW50aWZpZXIgb2'
|
||||||
'YgdGhlIGNsYWltIHR5cGX6QgRyAhABysIYHAoaCgEqEhVnZW5lcmF0ZWRUZXh0LGtleXdvcmTa'
|
'YgdGhlIGNsYWltIHR5cGW6gQEEcgIQAcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk'
|
||||||
'whgTChEKASoSDHNob3J0S2V5d29yZFILQ2xhaW1UeXBlSUQSTgoPQ2xhaW1UeXBlUmVhc29uGA'
|
'2sIYEwoRCgEqEgxzaG9ydEtleXdvcmRSC0NsYWltVHlwZUlEEk8KD0NsYWltVHlwZVJlYXNvbh'
|
||||||
'IgASgJQiSSQRoyGFJlYXNvbiBvZiB0aGUgY2xhaW0gdHlwZfpCBHICEAFSD0NsYWltVHlwZVJl'
|
'gCIAEoCUIlkkEaMhhSZWFzb24gb2YgdGhlIGNsYWltIHR5cGW6gQEEcgIQAVIPQ2xhaW1UeXBl'
|
||||||
'YXNvbhI8CgZOdW1iZXIYAyABKAVCJJJBITIfTnVtYmVyIG9mIGNsYWltcyB3aXRoIHRoaXMgdH'
|
'UmVhc29uEjwKBk51bWJlchgDIAEoBUIkkkEhMh9OdW1iZXIgb2YgY2xhaW1zIHdpdGggdGhpcy'
|
||||||
'lwZVIGTnVtYmVy');
|
'B0eXBlUgZOdW1iZXI=');
|
||||||
|
|
||||||
@$core.Deprecated('Use attachmentTypeDescriptor instead')
|
@$core.Deprecated('Use attachmentTypeDescriptor instead')
|
||||||
const AttachmentType$json = {
|
const AttachmentType$json = {
|
||||||
@@ -1602,11 +1537,11 @@ const AttachmentType$json = {
|
|||||||
|
|
||||||
/// Descriptor for `AttachmentType`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `AttachmentType`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List attachmentTypeDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List attachmentTypeDescriptor = $convert.base64Decode(
|
||||||
'Cg5BdHRhY2htZW50VHlwZRIXCgJJRBgBIAEoCUIH+kIEcgIQAVICSUQSJQoJUHJvamVjdElEGA'
|
'Cg5BdHRhY2htZW50VHlwZRIYCgJJRBgBIAEoCUIIuoEBBHICEAFSAklEEiYKCVByb2plY3RJRB'
|
||||||
'IgASgJQgf6QgRyAhABUglQcm9qZWN0SUQSGwoEQ29kZRgDIAEoCUIH+kIEcgIQAVIEQ29kZRIx'
|
'gCIAEoCUIIuoEBBHICEAFSCVByb2plY3RJRBIcCgRDb2RlGAMgASgJQgi6gQEEcgIQAVIEQ29k'
|
||||||
'CgZFbnRpdHkYBCABKA4yDy5hcGkuRW50aXR5VHlwZUII+kIFggECEAFSBkVudGl0eRIdCgVMYW'
|
'ZRIyCgZFbnRpdHkYBCABKA4yDy5hcGkuRW50aXR5VHlwZUIJuoEBBYIBAhABUgZFbnRpdHkSHg'
|
||||||
'JlbBgFIAEoCUIH+kIEcgIQAVIFTGFiZWwSPAoLU2hhcmVQb2xpY3kYBiABKA4yEC5hcGkuU2hh'
|
'oFTGFiZWwYBSABKAlCCLqBAQRyAhABUgVMYWJlbBI9CgtTaGFyZVBvbGljeRgGIAEoDjIQLmFw'
|
||||||
'cmVQb2xpY3lCCPpCBYIBAhABUgtTaGFyZVBvbGljeQ==');
|
'aS5TaGFyZVBvbGljeUIJuoEBBYIBAhABUgtTaGFyZVBvbGljeQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use attachmentSummaryDescriptor instead')
|
@$core.Deprecated('Use attachmentSummaryDescriptor instead')
|
||||||
const AttachmentSummary$json = {
|
const AttachmentSummary$json = {
|
||||||
@@ -1620,13 +1555,13 @@ const AttachmentSummary$json = {
|
|||||||
|
|
||||||
/// Descriptor for `AttachmentSummary`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `AttachmentSummary`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List attachmentSummaryDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List attachmentSummaryDescriptor = $convert.base64Decode(
|
||||||
'ChFBdHRhY2htZW50U3VtbWFyeRKIAQoQQXR0YWNobWVudFR5cGVJRBgBIAEoCUJckkEbMhlJRC'
|
'ChFBdHRhY2htZW50U3VtbWFyeRKJAQoQQXR0YWNobWVudFR5cGVJRBgBIAEoCUJdkkEbMhlJRC'
|
||||||
'BvZiB0aGUgYXR0YWNobWVudCB0eXBl+kIEcgIQAcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxr'
|
'BvZiB0aGUgYXR0YWNobWVudCB0eXBluoEBBHICEAHKwhgcChoKASoSFWdlbmVyYXRlZFRleHQs'
|
||||||
'ZXl3b3Jk2sIYEwoRCgEqEgxzaG9ydEtleXdvcmRSEEF0dGFjaG1lbnRUeXBlSUQSgwEKEkF0dG'
|
'a2V5d29yZNrCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUhBBdHRhY2htZW50VHlwZUlEEoQBChJBdH'
|
||||||
'FjaG1lbnRUeXBlQ29kZRgCIAEoCUJTkkEdMhtDb2RlIG9mIHRoZSBhdHRhY2htZW50IHR5cGX6'
|
'RhY2htZW50VHlwZUNvZGUYAiABKAlCVJJBHTIbQ29kZSBvZiB0aGUgYXR0YWNobWVudCB0eXBl'
|
||||||
'QgRyAhABysIYFAoSCgEqEg1nZW5lcmF0ZWRUZXh02sIYEAoOCgEqEglzaG9ydFRleHRSEkF0dG'
|
'uoEBBHICEAHKwhgUChIKASoSDWdlbmVyYXRlZFRleHTawhgQCg4KASoSCXNob3J0VGV4dFISQX'
|
||||||
'FjaG1lbnRUeXBlQ29kZRJBCgZOdW1iZXIYAyABKAVCKZJBJjIkTnVtYmVyIG9mIGF0dGFjaG1l'
|
'R0YWNobWVudFR5cGVDb2RlEkEKBk51bWJlchgDIAEoBUIpkkEmMiROdW1iZXIgb2YgYXR0YWNo'
|
||||||
'bnRzIHdpdGggdGhpcyB0eXBlUgZOdW1iZXI=');
|
'bWVudHMgd2l0aCB0aGlzIHR5cGVSBk51bWJlcg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use translationMapDescriptor instead')
|
@$core.Deprecated('Use translationMapDescriptor instead')
|
||||||
const TranslationMap$json = {
|
const TranslationMap$json = {
|
||||||
@@ -1726,99 +1661,30 @@ const ExtractQuery_ColumnFormatsEntry$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ExtractQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ExtractQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List extractQueryDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List extractQueryDescriptor = $convert.base64Decode(
|
||||||
'CgxFeHRyYWN0UXVlcnkSOQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYWRlck'
|
'CgxFeHRyYWN0UXVlcnkSOgoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvamVjdEhlYWRlck'
|
||||||
'II+kIFigECEAFSBkhlYWRlchIfCgZVc2VySWQYAiABKAlCB/pCBHICEAFSBlVzZXJJZBI0CgxC'
|
'IJuoEBBYoBAhABUgZIZWFkZXISIAoGVXNlcklkGAIgASgJQgi6gQEEcgIQAVIGVXNlcklkEjQK'
|
||||||
'bG9ja0ZpbHRlcnMYAyADKAsyEC5hcGkuQmxvY2tGaWx0ZXJSDEJsb2NrRmlsdGVycxIWCgZGaW'
|
'DEJsb2NrRmlsdGVycxgDIAMoCzIQLmFwaS5CbG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJzEhYKBk'
|
||||||
'VsZHMYBCADKAlSBkZpZWxkcxItCg1MaXN0U2VwYXJhdG9yGAUgASgJQgf6QgRyAhABUg1MaXN0'
|
'ZpZWxkcxgEIAMoCVIGRmllbGRzEi4KDUxpc3RTZXBhcmF0b3IYBSABKAlCCLqBAQRyAhABUg1M'
|
||||||
'U2VwYXJhdG9yEjMKEERlY2ltYWxTZXBhcmF0b3IYBiABKAlCB/pCBHICEAFSEERlY2ltYWxTZX'
|
'aXN0U2VwYXJhdG9yEjQKEERlY2ltYWxTZXBhcmF0b3IYBiABKAlCCLqBAQRyAhABUhBEZWNpbW'
|
||||||
'BhcmF0b3ISIAoLQ29sdW1uTmFtZXMYByADKAlSC0NvbHVtbk5hbWVzEmIKFUNvbHVtblRyYW5z'
|
'FsU2VwYXJhdG9yEiAKC0NvbHVtbk5hbWVzGAcgAygJUgtDb2x1bW5OYW1lcxJiChVDb2x1bW5U'
|
||||||
'bGF0aW9uTWFwcxgIIAMoCzIsLmFwaS5FeHRyYWN0UXVlcnkuQ29sdW1uVHJhbnNsYXRpb25NYX'
|
'cmFuc2xhdGlvbk1hcHMYCCADKAsyLC5hcGkuRXh0cmFjdFF1ZXJ5LkNvbHVtblRyYW5zbGF0aW'
|
||||||
'BzRW50cnlSFUNvbHVtblRyYW5zbGF0aW9uTWFwcxJKCg1Db2x1bW5Gb3JtYXRzGAkgAygLMiQu'
|
'9uTWFwc0VudHJ5UhVDb2x1bW5UcmFuc2xhdGlvbk1hcHMSSgoNQ29sdW1uRm9ybWF0cxgJIAMo'
|
||||||
'YXBpLkV4dHJhY3RRdWVyeS5Db2x1bW5Gb3JtYXRzRW50cnlSDUNvbHVtbkZvcm1hdHMSsAEKDl'
|
'CzIkLmFwaS5FeHRyYWN0UXVlcnkuQ29sdW1uRm9ybWF0c0VudHJ5Ug1Db2x1bW5Gb3JtYXRzEr'
|
||||||
'RhcmdldFRpbWVab25lGAogASgJQocBkkF6MmhUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhy'
|
'EBCg5UYXJnZXRUaW1lWm9uZRgKIAEoCUKIAZJBejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8'
|
||||||
'ZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdG'
|
'YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYX'
|
||||||
'ltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRU'
|
'NlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT5KDiJFdXJvcGUvUGFyaXMiuoEBB3IFEAHgAQFSDlRh'
|
||||||
'aW1lWm9uZRKHAQoKRGF0ZUZvcm1hdBgLIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm'
|
'cmdldFRpbWVab25lEocBCgpEYXRlRm9ybWF0GAsgASgJQmeSQWQyWUxhbmd1YWdlIGNvZGUgdG'
|
||||||
'1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYz'
|
'8gZm9ybWF0IGRhdGVzICA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9J'
|
||||||
'OSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAwgAS'
|
'U09fNjM5Jz5mb3JtYXQ8L2E+SgciZW4tVVMiUgpEYXRlRm9ybWF0EowBCgxOdW1iZXJGb3JtYX'
|
||||||
'gJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6'
|
'QYDCABKAlCaJJBZTJaTGFuZ3VhZ2UgY29kZSB0byBmb3JtYXQgbnVtYmVycyA8YSBocmVmPSdo'
|
||||||
'Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTn'
|
'dHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fNjM5Jz5mb3JtYXQ8L2E+SgciZW4tVV'
|
||||||
'VtYmVyRm9ybWF0EkwKClRpbWVGb3JtYXQYDSABKA4yDy5hcGkuVGltZUZvcm1hdEIbkkEYMhZI'
|
'MiUgxOdW1iZXJGb3JtYXQSTAoKVGltZUZvcm1hdBgNIAEoDjIPLmFwaS5UaW1lRm9ybWF0QhuS'
|
||||||
'b3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpUaW1lRm9ybWF0Gl0KGkNvbHVtblRyYW5zbGF0aW9uTW'
|
'QRgyFkhvdXIgY2xvY2sgdGltZSBmb3JtYXRSClRpbWVGb3JtYXQaXQoaQ29sdW1uVHJhbnNsYX'
|
||||||
'Fwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EikKBXZhbHVlGAIgASgLMhMuYXBpLlRyYW5zbGF0'
|
'Rpb25NYXBzRW50cnkSEAoDa2V5GAEgASgJUgNrZXkSKQoFdmFsdWUYAiABKAsyEy5hcGkuVHJh'
|
||||||
'aW9uTWFwUgV2YWx1ZToCOAEaWgoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2'
|
'bnNsYXRpb25NYXBSBXZhbHVlOgI4ARpaChJDb2x1bW5Gb3JtYXRzRW50cnkSEAoDa2V5GAEgAS'
|
||||||
'V5Ei4KBXZhbHVlGAIgASgLMhguYXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4ATpQ'
|
'gFUgNrZXkSLgoFdmFsdWUYAiABKAsyGC5hcGkuRXh0cmFjdENvbHVtbkZvcm1hdFIFdmFsdWU6'
|
||||||
'kkFNCkvSAQZIZWFkZXLSAQZVc2VySWTSAQZGaWVsZHPSAQ1MaXN0U2VwYXJhdG9y0gEQRGVjaW'
|
'AjgBOlCSQU0KS9IBBkhlYWRlctIBBlVzZXJJZNIBBkZpZWxkc9IBDUxpc3RTZXBhcmF0b3LSAR'
|
||||||
'1hbFNlcGFyYXRvctIBCkNvbHVtbk5hbWU=');
|
'BEZWNpbWFsU2VwYXJhdG9y0gEKQ29sdW1uTmFtZQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteQueryDescriptor instead')
|
|
||||||
const ExtractSiteQuery$json = {
|
|
||||||
'1': 'ExtractSiteQuery',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QuerySiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'UserId', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'UserId'},
|
|
||||||
{'1': 'BlockFilters', '3': 3, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
|
||||||
{'1': 'Fields', '3': 4, '4': 3, '5': 9, '10': 'Fields'},
|
|
||||||
{'1': 'ListSeparator', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'ListSeparator'},
|
|
||||||
{'1': 'DecimalSeparator', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'DecimalSeparator'},
|
|
||||||
{'1': 'ColumnNames', '3': 7, '4': 3, '5': 9, '10': 'ColumnNames'},
|
|
||||||
{'1': 'ColumnTranslationMaps', '3': 8, '4': 3, '5': 11, '6': '.api.ExtractSiteQuery.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
|
||||||
{'1': 'ColumnFormats', '3': 9, '4': 3, '5': 11, '6': '.api.ExtractSiteQuery.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
|
||||||
{'1': 'TargetTimeZone', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
|
||||||
{'1': 'DateFormat', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
|
||||||
{'1': 'NumberFormat', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
|
||||||
{'1': 'TimeFormat', '3': 13, '4': 1, '5': 14, '6': '.api.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
|
||||||
],
|
|
||||||
'3': [ExtractSiteQuery_ColumnTranslationMapsEntry$json, ExtractSiteQuery_ColumnFormatsEntry$json],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteQueryDescriptor instead')
|
|
||||||
const ExtractSiteQuery_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 extractSiteQueryDescriptor instead')
|
|
||||||
const ExtractSiteQuery_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 `ExtractSiteQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List extractSiteQueryDescriptor = $convert.base64Decode(
|
|
||||||
'ChBFeHRyYWN0U2l0ZVF1ZXJ5EjYKBkhlYWRlchgBIAEoCzIULmFwaS5RdWVyeVNpdGVIZWFkZX'
|
|
||||||
'JCCPpCBYoBAhABUgZIZWFkZXISHwoGVXNlcklkGAIgASgJQgf6QgRyAhABUgZVc2VySWQSNAoM'
|
|
||||||
'QmxvY2tGaWx0ZXJzGAMgAygLMhAuYXBpLkJsb2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSFgoGRm'
|
|
||||||
'llbGRzGAQgAygJUgZGaWVsZHMSLQoNTGlzdFNlcGFyYXRvchgFIAEoCUIH+kIEcgIQAVINTGlz'
|
|
||||||
'dFNlcGFyYXRvchIzChBEZWNpbWFsU2VwYXJhdG9yGAYgASgJQgf6QgRyAhABUhBEZWNpbWFsU2'
|
|
||||||
'VwYXJhdG9yEiAKC0NvbHVtbk5hbWVzGAcgAygJUgtDb2x1bW5OYW1lcxJmChVDb2x1bW5UcmFu'
|
|
||||||
'c2xhdGlvbk1hcHMYCCADKAsyMC5hcGkuRXh0cmFjdFNpdGVRdWVyeS5Db2x1bW5UcmFuc2xhdG'
|
|
||||||
'lvbk1hcHNFbnRyeVIVQ29sdW1uVHJhbnNsYXRpb25NYXBzEk4KDUNvbHVtbkZvcm1hdHMYCSAD'
|
|
||||||
'KAsyKC5hcGkuRXh0cmFjdFNpdGVRdWVyeS5Db2x1bW5Gb3JtYXRzRW50cnlSDUNvbHVtbkZvcm'
|
|
||||||
'1hdHMSsAEKDlRhcmdldFRpbWVab25lGAogASgJQocBkkF6MmhUYXJnZXQgdXNlciB0aW1lIHpv'
|
|
||||||
'bmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0xpc3Rfb2ZfdHpfZG'
|
|
||||||
'F0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm9wZS9QYXJpcyL6QgdyBRAB4AEB'
|
|
||||||
'Ug5UYXJnZXRUaW1lWm9uZRKHAQoKRGF0ZUZvcm1hdBgLIAEoCUJnkkFkMllMYW5ndWFnZSBjb2'
|
|
||||||
'RlIHRvIGZvcm1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dp'
|
|
||||||
'a2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm'
|
|
||||||
'9ybWF0GAwgASgJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJl'
|
|
||||||
'Zj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHIm'
|
|
||||||
'VuLVVTIlIMTnVtYmVyRm9ybWF0EkwKClRpbWVGb3JtYXQYDSABKA4yDy5hcGkuVGltZUZvcm1h'
|
|
||||||
'dEIbkkEYMhZIb3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpUaW1lRm9ybWF0Gl0KGkNvbHVtblRyYW'
|
|
||||||
'5zbGF0aW9uTWFwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EikKBXZhbHVlGAIgASgLMhMuYXBp'
|
|
||||||
'LlRyYW5zbGF0aW9uTWFwUgV2YWx1ZToCOAEaWgoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleR'
|
|
||||||
'gBIAEoBVIDa2V5Ei4KBXZhbHVlGAIgASgLMhguYXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZh'
|
|
||||||
'bHVlOgI4ATpQkkFNCkvSAQZIZWFkZXLSAQZVc2VySWTSAQZGaWVsZHPSAQ1MaXN0U2VwYXJhdG'
|
|
||||||
'9y0gEQRGVjaW1hbFNlcGFyYXRvctIBCkNvbHVtbk5hbWU=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractResultDescriptor instead')
|
@$core.Deprecated('Use extractResultDescriptor instead')
|
||||||
const ExtractResult$json = {
|
const ExtractResult$json = {
|
||||||
@@ -1845,9 +1711,9 @@ const CountLinesQuery$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CountLinesQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CountLinesQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List countLinesQueryDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List countLinesQueryDescriptor = $convert.base64Decode(
|
||||||
'Cg9Db3VudExpbmVzUXVlcnkSJQoJUHJvamVjdElEGAEgASgJQgf6QgRyAhABUglQcm9qZWN0SU'
|
'Cg9Db3VudExpbmVzUXVlcnkSJgoJUHJvamVjdElEGAEgASgJQgi6gQEEcgIQAVIJUHJvamVjdE'
|
||||||
'QSJQoJUGFydGl0aW9uGAIgASgFQgf6QgQaAigAUglQYXJ0aXRpb246EZJBDgoM0gEJUHJvamVj'
|
'lEEiYKCVBhcnRpdGlvbhgCIAEoBUIIuoEBBBoCKABSCVBhcnRpdGlvbjoRkkEOCgzSAQlQcm9q'
|
||||||
'dElE');
|
'ZWN0SUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use countLinesResultDescriptor instead')
|
@$core.Deprecated('Use countLinesResultDescriptor instead')
|
||||||
const CountLinesResult$json = {
|
const CountLinesResult$json = {
|
||||||
@@ -1880,13 +1746,13 @@ const Scope$json = {
|
|||||||
|
|
||||||
/// Descriptor for `Scope`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Scope`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List scopeDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List scopeDescriptor = $convert.base64Decode(
|
||||||
'CgVTY29wZRIhCgdTZXJ2aWNlGAEgASgJQgf6QgRyAhABUgdTZXJ2aWNlEhYKBk1ldGhvZBgCIA'
|
'CgVTY29wZRIiCgdTZXJ2aWNlGAEgASgJQgi6gQEEcgIQAVIHU2VydmljZRIWCgZNZXRob2QYAi'
|
||||||
'EoCVIGTWV0aG9kEisKB1JzY1R5cGUYAyABKA4yES5hcGkuUmVzb3VyY2VUeXBlUgdSc2NUeXBl'
|
'ABKAlSBk1ldGhvZBIrCgdSc2NUeXBlGAMgASgOMhEuYXBpLlJlc291cmNlVHlwZVIHUnNjVHlw'
|
||||||
'EioKEFBsYXRmb3JtUmVzZXJ2ZWQYBCABKAhSEFBsYXRmb3JtUmVzZXJ2ZWQSQwoUVHJhbnNpZW'
|
'ZRIqChBQbGF0Zm9ybVJlc2VydmVkGAQgASgIUhBQbGF0Zm9ybVJlc2VydmVkEkMKFFRyYW5zaW'
|
||||||
'50UGVybWlzc2lvbnMYBSADKAsyDy5hcGkuUGVybWlzc2lvblIUVHJhbnNpZW50UGVybWlzc2lv'
|
'VudFBlcm1pc3Npb25zGAUgAygLMg8uYXBpLlBlcm1pc3Npb25SFFRyYW5zaWVudFBlcm1pc3Np'
|
||||||
'bnMSFAoFUnNjSUQYBiABKAlSBVJzY0lEEiIKDEFwcGxpZXNPbklEcxgHIAMoCVIMQXBwbGllc0'
|
'b25zEhQKBVJzY0lEGAYgASgJUgVSc2NJRBIiCgxBcHBsaWVzT25JRHMYByADKAlSDEFwcGxpZX'
|
||||||
'9uSURzEhoKCE1vZHVsZUlEGAggASgJUghNb2R1bGVJRBIcCglNYW5kYXRvcnkYCSABKAhSCU1h'
|
'NPbklEcxIaCghNb2R1bGVJRBgIIAEoCVIITW9kdWxlSUQSHAoJTWFuZGF0b3J5GAkgASgIUglN'
|
||||||
'bmRhdG9yeToPkkEMCgrSAQdTZXJ2aWNl');
|
'YW5kYXRvcnk6D5JBDAoK0gEHU2VydmljZQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use clientAPIDescriptor instead')
|
@$core.Deprecated('Use clientAPIDescriptor instead')
|
||||||
const ClientAPI$json = {
|
const ClientAPI$json = {
|
||||||
@@ -1915,9 +1781,9 @@ const Permission$json = {
|
|||||||
|
|
||||||
/// Descriptor for `Permission`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Permission`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List permissionDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List permissionDescriptor = $convert.base64Decode(
|
||||||
'CgpQZXJtaXNzaW9uEh8KBkNsaWVudBgBIAEoCUIH+kIEcgIQAVIGQ2xpZW50EiwKBlNjb3Blcx'
|
'CgpQZXJtaXNzaW9uEiAKBkNsaWVudBgBIAEoCUIIuoEBBHICEAFSBkNsaWVudBItCgZTY29wZX'
|
||||||
'gCIAMoCzIKLmFwaS5TY29wZUII+kIFkgECCAFSBlNjb3BlczoXkkEUChLSAQZDbGllbnTSAQZT'
|
'MYAiADKAsyCi5hcGkuU2NvcGVCCbqBAQWSAQIIAVIGU2NvcGVzOheSQRQKEtIBBkNsaWVudNIB'
|
||||||
'Y29wZXM=');
|
'BlNjb3Blcw==');
|
||||||
|
|
||||||
@$core.Deprecated('Use userUIPermissionsDescriptor instead')
|
@$core.Deprecated('Use userUIPermissionsDescriptor instead')
|
||||||
const UserUIPermissions$json = {
|
const UserUIPermissions$json = {
|
||||||
@@ -1948,30 +1814,11 @@ const ElementByMatchQuery$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ElementByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ElementByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List elementByMatchQueryDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List elementByMatchQueryDescriptor = $convert.base64Decode(
|
||||||
'ChNFbGVtZW50QnlNYXRjaFF1ZXJ5EjkKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3'
|
'ChNFbGVtZW50QnlNYXRjaFF1ZXJ5EjoKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3'
|
||||||
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISNAoMQmxvY2tGaWx0ZXJzGAIgAygLMhAuYXBpLkJs'
|
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgCIAMoCzIQLmFwaS5C'
|
||||||
'b2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSTgoRTWF0Y2hFbGVtZW50RmllbGQYAyABKAsyFi5hcG'
|
'bG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJzEk8KEU1hdGNoRWxlbWVudEZpZWxkGAMgASgLMhYuYX'
|
||||||
'kuTWF0Y2hFbGVtZW50RmllbGRCCPpCBYoBAhABUhFNYXRjaEVsZW1lbnRGaWVsZDoOkkELCgnS'
|
'BpLk1hdGNoRWxlbWVudEZpZWxkQgm6gQEFigECEAFSEU1hdGNoRWxlbWVudEZpZWxkOg6SQQsK'
|
||||||
'AQZIZWFkZXI=');
|
'CdIBBkhlYWRlcg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use elementByMatchSiteQueryDescriptor instead')
|
|
||||||
const ElementByMatchSiteQuery$json = {
|
|
||||||
'1': 'ElementByMatchSiteQuery',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QuerySiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'BlockFilters', '3': 2, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
|
||||||
{'1': 'MatchElementField', '3': 3, '4': 1, '5': 11, '6': '.api.MatchElementField', '8': {}, '10': 'MatchElementField'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ElementByMatchSiteQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List elementByMatchSiteQueryDescriptor = $convert.base64Decode(
|
|
||||||
'ChdFbGVtZW50QnlNYXRjaFNpdGVRdWVyeRI2CgZIZWFkZXIYASABKAsyFC5hcGkuUXVlcnlTaX'
|
|
||||||
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgCIAMoCzIQLmFwaS5C'
|
|
||||||
'bG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJzEk4KEU1hdGNoRWxlbWVudEZpZWxkGAMgASgLMhYuYX'
|
|
||||||
'BpLk1hdGNoRWxlbWVudEZpZWxkQgj6QgWKAQIQAVIRTWF0Y2hFbGVtZW50RmllbGQ6DpJBCwoJ'
|
|
||||||
'0gEGSGVhZGVy');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use elementByMatchResultDescriptor instead')
|
@$core.Deprecated('Use elementByMatchResultDescriptor instead')
|
||||||
const ElementByMatchResult$json = {
|
const ElementByMatchResult$json = {
|
||||||
@@ -1997,10 +1844,10 @@ const MatchElementField$json = {
|
|||||||
|
|
||||||
/// Descriptor for `MatchElementField`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `MatchElementField`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List matchElementFieldDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List matchElementFieldDescriptor = $convert.base64Decode(
|
||||||
'ChFNYXRjaEVsZW1lbnRGaWVsZBJLCgVNYXRjaBgBIAEoCUI1kkErMh1WYWx1ZSByZXF1aXJlZC'
|
'ChFNYXRjaEVsZW1lbnRGaWVsZBJMCgVNYXRjaBgBIAEoCUI2kkErMh1WYWx1ZSByZXF1aXJlZC'
|
||||||
'Bmb3IgdGhlIHNlYXJjaEoKIk9iamVjdElEIvpCBHICEAFSBU1hdGNoEnEKC01hdGNoRmllbGRz'
|
'Bmb3IgdGhlIHNlYXJjaEoKIk9iamVjdElEIrqBAQRyAhABUgVNYXRjaBJyCgtNYXRjaEZpZWxk'
|
||||||
'GAIgAygLMg8uYXBpLk1hdGNoRmllbGRCPpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZS'
|
'cxgCIAMoCzIPLmFwaS5NYXRjaEZpZWxkQj+SQTMyMU1hdGNoRmllbGQgbGlzdCBzdHJ1Y3R1cm'
|
||||||
'wgZm9yIEZpbmRNYXRjaGluZyBxdWVyefpCBZIBAggBUgtNYXRjaEZpZWxkcw==');
|
'UsIGZvciBGaW5kTWF0Y2hpbmcgcXVlcnm6gQEFkgECCAFSC01hdGNoRmllbGRz');
|
||||||
|
|
||||||
@$core.Deprecated('Use matchFieldElementResultDescriptor instead')
|
@$core.Deprecated('Use matchFieldElementResultDescriptor instead')
|
||||||
const MatchFieldElementResult$json = {
|
const MatchFieldElementResult$json = {
|
||||||
@@ -2039,8 +1886,8 @@ const LabelByLanguage$json = {
|
|||||||
|
|
||||||
/// Descriptor for `LabelByLanguage`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `LabelByLanguage`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List labelByLanguageDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List labelByLanguageDescriptor = $convert.base64Decode(
|
||||||
'Cg9MYWJlbEJ5TGFuZ3VhZ2USFAoFVmFsdWUYASABKAlSBVZhbHVlErEBChNMYW5ndWFnZUNvZG'
|
'Cg9MYWJlbEJ5TGFuZ3VhZ2USFAoFVmFsdWUYASABKAlSBVZhbHVlErMBChNMYW5ndWFnZUNvZG'
|
||||||
'VJU082MzkxGAIgASgJQn+SQXAyaDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93'
|
'VJU082MzkxGAIgASgJQoABkkFwMmg8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcv'
|
||||||
'aWtpL0xpc3Rfb2ZfSVNPXzYzOV9sYW5ndWFnZV9jb2Rlcyc+SVNPIDYzOSBjb2RlPC9hPiBtZX'
|
'd2lraS9MaXN0X29mX0lTT182MzlfbGFuZ3VhZ2VfY29kZXMnPklTTyA2MzkgY29kZTwvYT4gbW'
|
||||||
'NzYWdlIGxhbmd1YWdlSgQiZW4i+kIJcgcQAhgDgAIBUhNMYW5ndWFnZUNvZGVJU082Mzkx');
|
'Vzc2FnZSBsYW5ndWFnZUoEImVuIrqBAQlyBxACGAOAAgFSE0xhbmd1YWdlQ29kZUlTTzYzOTE=');
|
||||||
|
|
||||||
|
|||||||
@@ -125,66 +125,6 @@ class NextCounterResult extends $pb.GeneratedMessage {
|
|||||||
void clearValue() => $_clearField(1);
|
void clearValue() => $_clearField(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
class NextSiteCounterRequest extends $pb.GeneratedMessage {
|
|
||||||
factory NextSiteCounterRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? key,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (key != null) result.key = key;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
NextSiteCounterRequest._();
|
|
||||||
|
|
||||||
factory NextSiteCounterRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory NextSiteCounterRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'NextSiteCounterRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Key', protoName: 'Key')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
NextSiteCounterRequest clone() => NextSiteCounterRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
NextSiteCounterRequest copyWith(void Function(NextSiteCounterRequest) updates) => super.copyWith((message) => updates(message as NextSiteCounterRequest)) as NextSiteCounterRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static NextSiteCounterRequest create() => NextSiteCounterRequest._();
|
|
||||||
@$core.override
|
|
||||||
NextSiteCounterRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<NextSiteCounterRequest> createRepeated() => $pb.PbList<NextSiteCounterRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static NextSiteCounterRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<NextSiteCounterRequest>(create);
|
|
||||||
static NextSiteCounterRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get key => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set key($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasKey() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearKey() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||||
|
|||||||
@@ -65,48 +65,3 @@ abstract class ProjectCountersServiceBase extends $grpc.Service {
|
|||||||
$async.Future<$0.NextCounterResult> next($grpc.ServiceCall call, $0.NextProjectCounterRequest request);
|
$async.Future<$0.NextCounterResult> next($grpc.ServiceCall call, $0.NextProjectCounterRequest request);
|
||||||
|
|
||||||
}
|
}
|
||||||
@$pb.GrpcServiceName('vizapi.SiteCountersService')
|
|
||||||
class SiteCountersServiceClient extends $grpc.Client {
|
|
||||||
/// The hostname for this service.
|
|
||||||
static const $core.String defaultHost = '';
|
|
||||||
|
|
||||||
/// OAuth scopes needed for the client.
|
|
||||||
static const $core.List<$core.String> oauthScopes = [
|
|
||||||
'',
|
|
||||||
];
|
|
||||||
|
|
||||||
SiteCountersServiceClient(super.channel, {super.options, super.interceptors});
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.NextCounterResult> next($0.NextSiteCounterRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$next, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
// method descriptors
|
|
||||||
|
|
||||||
static final _$next = $grpc.ClientMethod<$0.NextSiteCounterRequest, $0.NextCounterResult>(
|
|
||||||
'/vizapi.SiteCountersService/Next',
|
|
||||||
($0.NextSiteCounterRequest value) => value.writeToBuffer(),
|
|
||||||
$0.NextCounterResult.fromBuffer);
|
|
||||||
}
|
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.SiteCountersService')
|
|
||||||
abstract class SiteCountersServiceBase extends $grpc.Service {
|
|
||||||
$core.String get $name => 'vizapi.SiteCountersService';
|
|
||||||
|
|
||||||
SiteCountersServiceBase() {
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.NextSiteCounterRequest, $0.NextCounterResult>(
|
|
||||||
'Next',
|
|
||||||
next_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.NextSiteCounterRequest.fromBuffer(value),
|
|
||||||
($0.NextCounterResult value) => value.writeToBuffer()));
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.NextCounterResult> next_Pre($grpc.ServiceCall $call, $async.Future<$0.NextSiteCounterRequest> $request) async {
|
|
||||||
return next($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.NextCounterResult> next($grpc.ServiceCall call, $0.NextSiteCounterRequest request);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -26,9 +26,9 @@ const NextProjectCounterRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `NextProjectCounterRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `NextProjectCounterRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List nextProjectCounterRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List nextProjectCounterRequestDescriptor = $convert.base64Decode(
|
||||||
'ChlOZXh0UHJvamVjdENvdW50ZXJSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
'ChlOZXh0UHJvamVjdENvdW50ZXJSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
||||||
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchImCgNLZXkYAiABKAlCFJJBCkoIImNs'
|
'N0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISJwoDS2V5GAIgASgJQhWSQQpKCCJj'
|
||||||
'YWltcyL6QgRyAhABUgNLZXk6FJJBEQoP0gEGSGVhZGVy0gEDS2V5');
|
'bGFpbXMiuoEBBHICEAFSA0tleToUkkERCg/SAQZIZWFkZXLSAQNLZXk=');
|
||||||
|
|
||||||
@$core.Deprecated('Use nextCounterResultDescriptor instead')
|
@$core.Deprecated('Use nextCounterResultDescriptor instead')
|
||||||
const NextCounterResult$json = {
|
const NextCounterResult$json = {
|
||||||
@@ -42,19 +42,3 @@ const NextCounterResult$json = {
|
|||||||
final $typed_data.Uint8List nextCounterResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List nextCounterResultDescriptor = $convert.base64Decode(
|
||||||
'ChFOZXh0Q291bnRlclJlc3VsdBIUCgVWYWx1ZRgBIAEoA1IFVmFsdWU=');
|
'ChFOZXh0Q291bnRlclJlc3VsdBIUCgVWYWx1ZRgBIAEoA1IFVmFsdWU=');
|
||||||
|
|
||||||
@$core.Deprecated('Use nextSiteCounterRequestDescriptor instead')
|
|
||||||
const NextSiteCounterRequest$json = {
|
|
||||||
'1': 'NextSiteCounterRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Key', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Key'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `NextSiteCounterRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List nextSiteCounterRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChZOZXh0U2l0ZUNvdW50ZXJSZXF1ZXN0EjgKBkhlYWRlchgBIAEoCzIWLmFwaS5SZXF1ZXN0U2'
|
|
||||||
'l0ZUhlYWRlckII+kIFigECEAFSBkhlYWRlchIrCgNLZXkYAiABKAlCGZJBD0oNImFwcG9pbnRt'
|
|
||||||
'ZW50IvpCBHICEAFSA0tleToUkkERCg/SAQZIZWFkZXLSAQNLZXk=');
|
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
export 'field_behavior.pbenum.dart';
|
export 'field_behavior.pbenum.dart';
|
||||||
|
|
||||||
class Field_behavior {
|
class Field_behavior {
|
||||||
static final fieldBehavior = $pb.Extension<FieldBehavior>.repeated(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'fieldBehavior', 1052, $pb.PbFieldType.KE, check: $pb.getCheckFunction($pb.PbFieldType.KE), valueOf: FieldBehavior.valueOf, enumValues: FieldBehavior.values);
|
static final fieldBehavior = $pb.Extension<FieldBehavior>.repeated(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'fieldBehavior', 1052, $pb.PbFieldType.PE, check: $pb.getCheckFunction($pb.PbFieldType.PE), valueOf: FieldBehavior.valueOf, enumValues: FieldBehavior.values);
|
||||||
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
||||||
registry.add(fieldBehavior);
|
registry.add(fieldBehavior);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,6 +44,29 @@ class FieldBehavior extends $pb.ProtobufEnum {
|
|||||||
/// This indicates that the field may be set once in a request to create a
|
/// This indicates that the field may be set once in a request to create a
|
||||||
/// resource, but may not be changed thereafter.
|
/// resource, but may not be changed thereafter.
|
||||||
static const FieldBehavior IMMUTABLE = FieldBehavior._(5, _omitEnumNames ? '' : 'IMMUTABLE');
|
static const FieldBehavior IMMUTABLE = FieldBehavior._(5, _omitEnumNames ? '' : 'IMMUTABLE');
|
||||||
|
/// Denotes that a (repeated) field is an unordered list.
|
||||||
|
/// This indicates that the service may provide the elements of the list
|
||||||
|
/// in any arbitrary order, rather than the order the user originally
|
||||||
|
/// provided. Additionally, the list's order may or may not be stable.
|
||||||
|
static const FieldBehavior UNORDERED_LIST = FieldBehavior._(6, _omitEnumNames ? '' : 'UNORDERED_LIST');
|
||||||
|
/// Denotes that this field returns a non-empty default value if not set.
|
||||||
|
/// This indicates that if the user provides the empty value in a request,
|
||||||
|
/// a non-empty value will be returned. The user will not be aware of what
|
||||||
|
/// non-empty value to expect.
|
||||||
|
static const FieldBehavior NON_EMPTY_DEFAULT = FieldBehavior._(7, _omitEnumNames ? '' : 'NON_EMPTY_DEFAULT');
|
||||||
|
/// Denotes that the field in a resource (a message annotated with
|
||||||
|
/// google.api.resource) is used in the resource name to uniquely identify the
|
||||||
|
/// resource. For AIP-compliant APIs, this should only be applied to the
|
||||||
|
/// `name` field on the resource.
|
||||||
|
///
|
||||||
|
/// This behavior should not be applied to references to other resources within
|
||||||
|
/// the message.
|
||||||
|
///
|
||||||
|
/// The identifier field of resources often have different field behavior
|
||||||
|
/// depending on the request it is embedded in (e.g. for Create methods name
|
||||||
|
/// is optional and unused, while for Update methods it is required). Instead
|
||||||
|
/// of method-specific annotations, only `IDENTIFIER` is required.
|
||||||
|
static const FieldBehavior IDENTIFIER = FieldBehavior._(8, _omitEnumNames ? '' : 'IDENTIFIER');
|
||||||
|
|
||||||
static const $core.List<FieldBehavior> values = <FieldBehavior> [
|
static const $core.List<FieldBehavior> values = <FieldBehavior> [
|
||||||
FIELD_BEHAVIOR_UNSPECIFIED,
|
FIELD_BEHAVIOR_UNSPECIFIED,
|
||||||
@@ -52,9 +75,12 @@ class FieldBehavior extends $pb.ProtobufEnum {
|
|||||||
OUTPUT_ONLY,
|
OUTPUT_ONLY,
|
||||||
INPUT_ONLY,
|
INPUT_ONLY,
|
||||||
IMMUTABLE,
|
IMMUTABLE,
|
||||||
|
UNORDERED_LIST,
|
||||||
|
NON_EMPTY_DEFAULT,
|
||||||
|
IDENTIFIER,
|
||||||
];
|
];
|
||||||
|
|
||||||
static final $core.List<FieldBehavior?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 5);
|
static final $core.List<FieldBehavior?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 8);
|
||||||
static FieldBehavior? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
static FieldBehavior? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
const FieldBehavior._(super.value, super.name);
|
const FieldBehavior._(super.value, super.name);
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ const FieldBehavior$json = {
|
|||||||
{'1': 'OUTPUT_ONLY', '2': 3},
|
{'1': 'OUTPUT_ONLY', '2': 3},
|
||||||
{'1': 'INPUT_ONLY', '2': 4},
|
{'1': 'INPUT_ONLY', '2': 4},
|
||||||
{'1': 'IMMUTABLE', '2': 5},
|
{'1': 'IMMUTABLE', '2': 5},
|
||||||
|
{'1': 'UNORDERED_LIST', '2': 6},
|
||||||
|
{'1': 'NON_EMPTY_DEFAULT', '2': 7},
|
||||||
|
{'1': 'IDENTIFIER', '2': 8},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -31,5 +34,6 @@ const FieldBehavior$json = {
|
|||||||
final $typed_data.Uint8List fieldBehaviorDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List fieldBehaviorDescriptor = $convert.base64Decode(
|
||||||
'Cg1GaWVsZEJlaGF2aW9yEh4KGkZJRUxEX0JFSEFWSU9SX1VOU1BFQ0lGSUVEEAASDAoIT1BUSU'
|
'Cg1GaWVsZEJlaGF2aW9yEh4KGkZJRUxEX0JFSEFWSU9SX1VOU1BFQ0lGSUVEEAASDAoIT1BUSU'
|
||||||
'9OQUwQARIMCghSRVFVSVJFRBACEg8KC09VVFBVVF9PTkxZEAMSDgoKSU5QVVRfT05MWRAEEg0K'
|
'9OQUwQARIMCghSRVFVSVJFRBACEg8KC09VVFBVVF9PTkxZEAMSDgoKSU5QVVRfT05MWRAEEg0K'
|
||||||
'CUlNTVVUQUJMRRAF');
|
'CUlNTVVUQUJMRRAFEhIKDlVOT1JERVJFRF9MSVNUEAYSFQoRTk9OX0VNUFRZX0RFRkFVTFQQBx'
|
||||||
|
'IOCgpJREVOVElGSUVSEAg=');
|
||||||
|
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ enum HttpRule_Pattern {
|
|||||||
notSet
|
notSet
|
||||||
}
|
}
|
||||||
|
|
||||||
/// # gRPC Transcoding
|
/// gRPC Transcoding
|
||||||
///
|
///
|
||||||
/// gRPC Transcoding is a feature for mapping between a gRPC method and one or
|
/// gRPC Transcoding is a feature for mapping between a gRPC method and one or
|
||||||
/// more HTTP REST endpoints. It allows developers to build a single API service
|
/// more HTTP REST endpoints. It allows developers to build a single API service
|
||||||
@@ -131,9 +131,8 @@ enum HttpRule_Pattern {
|
|||||||
///
|
///
|
||||||
/// This enables an HTTP REST to gRPC mapping as below:
|
/// This enables an HTTP REST to gRPC mapping as below:
|
||||||
///
|
///
|
||||||
/// HTTP | gRPC
|
/// - HTTP: `GET /v1/messages/123456`
|
||||||
/// -----|-----
|
/// - gRPC: `GetMessage(name: "messages/123456")`
|
||||||
/// `GET /v1/messages/123456` | `GetMessage(name: "messages/123456")`
|
|
||||||
///
|
///
|
||||||
/// Any fields in the request message which are not bound by the path template
|
/// Any fields in the request message which are not bound by the path template
|
||||||
/// automatically become HTTP query parameters if there is no HTTP request body.
|
/// automatically become HTTP query parameters if there is no HTTP request body.
|
||||||
@@ -157,11 +156,9 @@ enum HttpRule_Pattern {
|
|||||||
///
|
///
|
||||||
/// This enables a HTTP JSON to RPC mapping as below:
|
/// This enables a HTTP JSON to RPC mapping as below:
|
||||||
///
|
///
|
||||||
/// HTTP | gRPC
|
/// - HTTP: `GET /v1/messages/123456?revision=2&sub.subfield=foo`
|
||||||
/// -----|-----
|
/// - gRPC: `GetMessage(message_id: "123456" revision: 2 sub:
|
||||||
/// `GET /v1/messages/123456?revision=2&sub.subfield=foo` |
|
/// SubMessage(subfield: "foo"))`
|
||||||
/// `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield:
|
|
||||||
/// "foo"))`
|
|
||||||
///
|
///
|
||||||
/// Note that fields which are mapped to URL query parameters must have a
|
/// Note that fields which are mapped to URL query parameters must have a
|
||||||
/// primitive type or a repeated primitive type or a non-repeated message type.
|
/// primitive type or a repeated primitive type or a non-repeated message type.
|
||||||
@@ -191,10 +188,8 @@ enum HttpRule_Pattern {
|
|||||||
/// representation of the JSON in the request body is determined by
|
/// representation of the JSON in the request body is determined by
|
||||||
/// protos JSON encoding:
|
/// protos JSON encoding:
|
||||||
///
|
///
|
||||||
/// HTTP | gRPC
|
/// - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }`
|
||||||
/// -----|-----
|
/// - gRPC: `UpdateMessage(message_id: "123456" message { text: "Hi!" })`
|
||||||
/// `PATCH /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id:
|
|
||||||
/// "123456" message { text: "Hi!" })`
|
|
||||||
///
|
///
|
||||||
/// The special name `*` can be used in the body mapping to define that
|
/// The special name `*` can be used in the body mapping to define that
|
||||||
/// every field not bound by the path template should be mapped to the
|
/// every field not bound by the path template should be mapped to the
|
||||||
@@ -217,10 +212,8 @@ enum HttpRule_Pattern {
|
|||||||
///
|
///
|
||||||
/// The following HTTP JSON to RPC mapping is enabled:
|
/// The following HTTP JSON to RPC mapping is enabled:
|
||||||
///
|
///
|
||||||
/// HTTP | gRPC
|
/// - HTTP: `PATCH /v1/messages/123456 { "text": "Hi!" }`
|
||||||
/// -----|-----
|
/// - gRPC: `UpdateMessage(message_id: "123456" text: "Hi!")`
|
||||||
/// `PATCH /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id:
|
|
||||||
/// "123456" text: "Hi!")`
|
|
||||||
///
|
///
|
||||||
/// Note that when using `*` in the body mapping, it is not possible to
|
/// Note that when using `*` in the body mapping, it is not possible to
|
||||||
/// have HTTP parameters, as all fields not bound by the path end in
|
/// have HTTP parameters, as all fields not bound by the path end in
|
||||||
@@ -248,29 +241,32 @@ enum HttpRule_Pattern {
|
|||||||
///
|
///
|
||||||
/// This enables the following two alternative HTTP JSON to RPC mappings:
|
/// This enables the following two alternative HTTP JSON to RPC mappings:
|
||||||
///
|
///
|
||||||
/// HTTP | gRPC
|
/// - HTTP: `GET /v1/messages/123456`
|
||||||
/// -----|-----
|
/// - gRPC: `GetMessage(message_id: "123456")`
|
||||||
/// `GET /v1/messages/123456` | `GetMessage(message_id: "123456")`
|
|
||||||
/// `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id:
|
|
||||||
/// "123456")`
|
|
||||||
///
|
///
|
||||||
/// ## Rules for HTTP mapping
|
/// - HTTP: `GET /v1/users/me/messages/123456`
|
||||||
|
/// - gRPC: `GetMessage(user_id: "me" message_id: "123456")`
|
||||||
|
///
|
||||||
|
/// Rules for HTTP mapping
|
||||||
///
|
///
|
||||||
/// 1. Leaf request fields (recursive expansion nested messages in the request
|
/// 1. Leaf request fields (recursive expansion nested messages in the request
|
||||||
/// message) are classified into three categories:
|
/// message) are classified into three categories:
|
||||||
/// - Fields referred by the path template. They are passed via the URL path.
|
/// - Fields referred by the path template. They are passed via the URL path.
|
||||||
/// - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They are passed via the HTTP
|
/// - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They
|
||||||
|
/// are passed via the HTTP
|
||||||
/// request body.
|
/// request body.
|
||||||
/// - All other fields are passed via the URL query parameters, and the
|
/// - All other fields are passed via the URL query parameters, and the
|
||||||
/// parameter name is the field path in the request message. A repeated
|
/// parameter name is the field path in the request message. A repeated
|
||||||
/// field can be represented as multiple query parameters under the same
|
/// field can be represented as multiple query parameters under the same
|
||||||
/// name.
|
/// name.
|
||||||
/// 2. If [HttpRule.body][google.api.HttpRule.body] is "*", there is no URL query parameter, all fields
|
/// 2. If [HttpRule.body][google.api.HttpRule.body] is "*", there is no URL
|
||||||
|
/// query parameter, all fields
|
||||||
/// are passed via URL path and HTTP request body.
|
/// are passed via URL path and HTTP request body.
|
||||||
/// 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP request body, all
|
/// 3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP
|
||||||
|
/// request body, all
|
||||||
/// fields are passed via URL path and URL query parameters.
|
/// fields are passed via URL path and URL query parameters.
|
||||||
///
|
///
|
||||||
/// ### Path template syntax
|
/// Path template syntax
|
||||||
///
|
///
|
||||||
/// Template = "/" Segments [ Verb ] ;
|
/// Template = "/" Segments [ Verb ] ;
|
||||||
/// Segments = Segment { "/" Segment } ;
|
/// Segments = Segment { "/" Segment } ;
|
||||||
@@ -309,7 +305,7 @@ enum HttpRule_Pattern {
|
|||||||
/// Document](https://developers.google.com/discovery/v1/reference/apis) as
|
/// Document](https://developers.google.com/discovery/v1/reference/apis) as
|
||||||
/// `{+var}`.
|
/// `{+var}`.
|
||||||
///
|
///
|
||||||
/// ## Using gRPC API Service Configuration
|
/// Using gRPC API Service Configuration
|
||||||
///
|
///
|
||||||
/// gRPC API Service Configuration (service config) is a configuration language
|
/// gRPC API Service Configuration (service config) is a configuration language
|
||||||
/// for configuring a gRPC service to become a user-facing product. The
|
/// for configuring a gRPC service to become a user-facing product. The
|
||||||
@@ -324,15 +320,14 @@ enum HttpRule_Pattern {
|
|||||||
/// specified in the service config will override any matching transcoding
|
/// specified in the service config will override any matching transcoding
|
||||||
/// configuration in the proto.
|
/// configuration in the proto.
|
||||||
///
|
///
|
||||||
/// Example:
|
/// The following example selects a gRPC method and applies an `HttpRule` to it:
|
||||||
///
|
///
|
||||||
/// http:
|
/// http:
|
||||||
/// rules:
|
/// rules:
|
||||||
/// # Selects a gRPC method and applies HttpRule to it.
|
|
||||||
/// - selector: example.v1.Messaging.GetMessage
|
/// - selector: example.v1.Messaging.GetMessage
|
||||||
/// get: /v1/messages/{message_id}/{sub.subfield}
|
/// get: /v1/messages/{message_id}/{sub.subfield}
|
||||||
///
|
///
|
||||||
/// ## Special notes
|
/// Special notes
|
||||||
///
|
///
|
||||||
/// When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the
|
/// When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the
|
||||||
/// proto to JSON conversion must follow the [proto3
|
/// proto to JSON conversion must follow the [proto3
|
||||||
@@ -437,7 +432,8 @@ class HttpRule extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
/// Selects a method to which this rule applies.
|
/// Selects a method to which this rule applies.
|
||||||
///
|
///
|
||||||
/// Refer to [selector][google.api.DocumentationRule.selector] for syntax details.
|
/// Refer to [selector][google.api.DocumentationRule.selector] for syntax
|
||||||
|
/// details.
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.String get selector => $_getSZ(0);
|
$core.String get selector => $_getSZ(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
|
|||||||
@@ -38,12 +38,15 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
///
|
///
|
||||||
/// // The raw HTTP body is bound to this field.
|
/// // The raw HTTP body is bound to this field.
|
||||||
/// google.api.HttpBody http_body = 2;
|
/// google.api.HttpBody http_body = 2;
|
||||||
|
///
|
||||||
/// }
|
/// }
|
||||||
///
|
///
|
||||||
/// service ResourceService {
|
/// service ResourceService {
|
||||||
/// rpc GetResource(GetResourceRequest) returns (google.api.HttpBody);
|
/// rpc GetResource(GetResourceRequest)
|
||||||
/// rpc UpdateResource(google.api.HttpBody) returns
|
/// returns (google.api.HttpBody);
|
||||||
/// (google.protobuf.Empty);
|
/// rpc UpdateResource(google.api.HttpBody)
|
||||||
|
/// returns (google.protobuf.Empty);
|
||||||
|
///
|
||||||
/// }
|
/// }
|
||||||
///
|
///
|
||||||
/// Example with streaming methods:
|
/// Example with streaming methods:
|
||||||
@@ -53,6 +56,7 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// returns (stream google.api.HttpBody);
|
/// returns (stream google.api.HttpBody);
|
||||||
/// rpc UpdateCalendar(stream google.api.HttpBody)
|
/// rpc UpdateCalendar(stream google.api.HttpBody)
|
||||||
/// returns (stream google.api.HttpBody);
|
/// returns (stream google.api.HttpBody);
|
||||||
|
///
|
||||||
/// }
|
/// }
|
||||||
///
|
///
|
||||||
/// Use of this type only changes how the request and response bodies are
|
/// Use of this type only changes how the request and response bodies are
|
||||||
|
|||||||
@@ -42,6 +42,10 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// if (any.is(Foo.class)) {
|
/// if (any.is(Foo.class)) {
|
||||||
/// foo = any.unpack(Foo.class);
|
/// foo = any.unpack(Foo.class);
|
||||||
/// }
|
/// }
|
||||||
|
/// // or ...
|
||||||
|
/// if (any.isSameTypeAs(Foo.getDefaultInstance())) {
|
||||||
|
/// foo = any.unpack(Foo.getDefaultInstance());
|
||||||
|
/// }
|
||||||
///
|
///
|
||||||
/// Example 3: Pack and unpack a message in Python.
|
/// Example 3: Pack and unpack a message in Python.
|
||||||
///
|
///
|
||||||
@@ -56,10 +60,13 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// Example 4: Pack and unpack a message in Go
|
/// Example 4: Pack and unpack a message in Go
|
||||||
///
|
///
|
||||||
/// foo := &pb.Foo{...}
|
/// foo := &pb.Foo{...}
|
||||||
/// any, err := ptypes.MarshalAny(foo)
|
/// any, err := anypb.New(foo)
|
||||||
|
/// if err != nil {
|
||||||
|
/// ...
|
||||||
|
/// }
|
||||||
/// ...
|
/// ...
|
||||||
/// foo := &pb.Foo{}
|
/// foo := &pb.Foo{}
|
||||||
/// if err := ptypes.UnmarshalAny(any, foo); err != nil {
|
/// if err := any.UnmarshalTo(foo); err != nil {
|
||||||
/// ...
|
/// ...
|
||||||
/// }
|
/// }
|
||||||
///
|
///
|
||||||
@@ -69,7 +76,6 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
/// in the type URL, for example "foo.bar.com/x/y.z" will yield type
|
||||||
/// name "y.z".
|
/// name "y.z".
|
||||||
///
|
///
|
||||||
///
|
|
||||||
/// JSON
|
/// JSON
|
||||||
/// ====
|
/// ====
|
||||||
/// The JSON representation of an `Any` value uses the regular
|
/// The JSON representation of an `Any` value uses the regular
|
||||||
@@ -159,7 +165,8 @@ class Any extends $pb.GeneratedMessage with $mixin.AnyMixin {
|
|||||||
///
|
///
|
||||||
/// Note: this functionality is not currently available in the official
|
/// Note: this functionality is not currently available in the official
|
||||||
/// protobuf release, and it is not used for type URLs beginning with
|
/// protobuf release, and it is not used for type URLs beginning with
|
||||||
/// type.googleapis.com.
|
/// type.googleapis.com. As of May 2023, there are no widely used type server
|
||||||
|
/// implementations and no plans to implement one.
|
||||||
///
|
///
|
||||||
/// Schemes other than `http`, `https` (or the empty scheme) might be
|
/// Schemes other than `http`, `https` (or the empty scheme) might be
|
||||||
/// used with implementation specific semantics.
|
/// used with implementation specific semantics.
|
||||||
|
|||||||
@@ -28,6 +28,11 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// sometimes simply referred to as "APIs" in other contexts, such as the name of
|
/// sometimes simply referred to as "APIs" in other contexts, such as the name of
|
||||||
/// this message itself. See https://cloud.google.com/apis/design/glossary for
|
/// this message itself. See https://cloud.google.com/apis/design/glossary for
|
||||||
/// detailed terminology.
|
/// detailed terminology.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to ServiceDescriptorProto are
|
||||||
|
/// strongly discouraged. This message does not reliability preserve all
|
||||||
|
/// information necessary to model the schema and preserve semantics. Instead
|
||||||
|
/// make use of FileDescriptorSet which preserves the necessary information.
|
||||||
class Api extends $pb.GeneratedMessage {
|
class Api extends $pb.GeneratedMessage {
|
||||||
factory Api({
|
factory Api({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
@@ -37,6 +42,7 @@ class Api extends $pb.GeneratedMessage {
|
|||||||
$1.SourceContext? sourceContext,
|
$1.SourceContext? sourceContext,
|
||||||
$core.Iterable<Mixin>? mixins,
|
$core.Iterable<Mixin>? mixins,
|
||||||
$0.Syntax? syntax,
|
$0.Syntax? syntax,
|
||||||
|
$core.String? edition,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (name != null) result.name = name;
|
if (name != null) result.name = name;
|
||||||
@@ -46,6 +52,7 @@ class Api extends $pb.GeneratedMessage {
|
|||||||
if (sourceContext != null) result.sourceContext = sourceContext;
|
if (sourceContext != null) result.sourceContext = sourceContext;
|
||||||
if (mixins != null) result.mixins.addAll(mixins);
|
if (mixins != null) result.mixins.addAll(mixins);
|
||||||
if (syntax != null) result.syntax = syntax;
|
if (syntax != null) result.syntax = syntax;
|
||||||
|
if (edition != null) result.edition = edition;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,6 +69,7 @@ class Api extends $pb.GeneratedMessage {
|
|||||||
..aOM<$1.SourceContext>(5, _omitFieldNames ? '' : 'sourceContext', subBuilder: $1.SourceContext.create)
|
..aOM<$1.SourceContext>(5, _omitFieldNames ? '' : 'sourceContext', subBuilder: $1.SourceContext.create)
|
||||||
..pc<Mixin>(6, _omitFieldNames ? '' : 'mixins', $pb.PbFieldType.PM, subBuilder: Mixin.create)
|
..pc<Mixin>(6, _omitFieldNames ? '' : 'mixins', $pb.PbFieldType.PM, subBuilder: Mixin.create)
|
||||||
..e<$0.Syntax>(7, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: $0.Syntax.SYNTAX_PROTO2, valueOf: $0.Syntax.valueOf, enumValues: $0.Syntax.values)
|
..e<$0.Syntax>(7, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: $0.Syntax.SYNTAX_PROTO2, valueOf: $0.Syntax.valueOf, enumValues: $0.Syntax.values)
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'edition')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -155,9 +163,24 @@ class Api extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasSyntax() => $_has(6);
|
$core.bool hasSyntax() => $_has(6);
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
void clearSyntax() => $_clearField(7);
|
void clearSyntax() => $_clearField(7);
|
||||||
|
|
||||||
|
/// The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get edition => $_getSZ(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set edition($core.String value) => $_setString(7, value);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasEdition() => $_has(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearEdition() => $_clearField(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Method represents a method of an API interface.
|
/// Method represents a method of an API interface.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to MethodDescriptorProto are
|
||||||
|
/// strongly discouraged. This message does not reliability preserve all
|
||||||
|
/// information necessary to model the schema and preserve semantics. Instead
|
||||||
|
/// make use of FileDescriptorSet which preserves the necessary information.
|
||||||
class Method extends $pb.GeneratedMessage {
|
class Method extends $pb.GeneratedMessage {
|
||||||
factory Method({
|
factory Method({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
@@ -166,7 +189,10 @@ class Method extends $pb.GeneratedMessage {
|
|||||||
$core.String? responseTypeUrl,
|
$core.String? responseTypeUrl,
|
||||||
$core.bool? responseStreaming,
|
$core.bool? responseStreaming,
|
||||||
$core.Iterable<$0.Option>? options,
|
$core.Iterable<$0.Option>? options,
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
$0.Syntax? syntax,
|
$0.Syntax? syntax,
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
|
$core.String? edition,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (name != null) result.name = name;
|
if (name != null) result.name = name;
|
||||||
@@ -176,6 +202,7 @@ class Method extends $pb.GeneratedMessage {
|
|||||||
if (responseStreaming != null) result.responseStreaming = responseStreaming;
|
if (responseStreaming != null) result.responseStreaming = responseStreaming;
|
||||||
if (options != null) result.options.addAll(options);
|
if (options != null) result.options.addAll(options);
|
||||||
if (syntax != null) result.syntax = syntax;
|
if (syntax != null) result.syntax = syntax;
|
||||||
|
if (edition != null) result.edition = edition;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,6 +219,7 @@ class Method extends $pb.GeneratedMessage {
|
|||||||
..aOB(5, _omitFieldNames ? '' : 'responseStreaming')
|
..aOB(5, _omitFieldNames ? '' : 'responseStreaming')
|
||||||
..pc<$0.Option>(6, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: $0.Option.create)
|
..pc<$0.Option>(6, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: $0.Option.create)
|
||||||
..e<$0.Syntax>(7, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: $0.Syntax.SYNTAX_PROTO2, valueOf: $0.Syntax.valueOf, enumValues: $0.Syntax.values)
|
..e<$0.Syntax>(7, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: $0.Syntax.SYNTAX_PROTO2, valueOf: $0.Syntax.valueOf, enumValues: $0.Syntax.values)
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'edition')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -267,14 +295,38 @@ class Method extends $pb.GeneratedMessage {
|
|||||||
$pb.PbList<$0.Option> get options => $_getList(5);
|
$pb.PbList<$0.Option> get options => $_getList(5);
|
||||||
|
|
||||||
/// The source syntax of this method.
|
/// The source syntax of this method.
|
||||||
|
///
|
||||||
|
/// This field should be ignored, instead the syntax should be inherited from
|
||||||
|
/// Api. This is similar to Field and EnumValue.
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$0.Syntax get syntax => $_getN(6);
|
$0.Syntax get syntax => $_getN(6);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
set syntax($0.Syntax value) => $_setField(7, value);
|
set syntax($0.Syntax value) => $_setField(7, value);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$core.bool hasSyntax() => $_has(6);
|
$core.bool hasSyntax() => $_has(6);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
void clearSyntax() => $_clearField(7);
|
void clearSyntax() => $_clearField(7);
|
||||||
|
|
||||||
|
/// The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
||||||
|
///
|
||||||
|
/// This field should be ignored, instead the edition should be inherited from
|
||||||
|
/// Api. This is similar to Field and EnumValue.
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get edition => $_getSZ(7);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set edition($core.String value) => $_setString(7, value);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasEdition() => $_has(7);
|
||||||
|
@$core.Deprecated('This field is deprecated.')
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearEdition() => $_clearField(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Declares an API Interface to be included in this interface. The including
|
/// Declares an API Interface to be included in this interface. The including
|
||||||
@@ -324,7 +376,7 @@ class Method extends $pb.GeneratedMessage {
|
|||||||
/// The mixin construct implies that all methods in `AccessControl` are
|
/// The mixin construct implies that all methods in `AccessControl` are
|
||||||
/// also declared with same name and request/response types in
|
/// also declared with same name and request/response types in
|
||||||
/// `Storage`. A documentation generator or annotation processor will
|
/// `Storage`. A documentation generator or annotation processor will
|
||||||
/// see the effective `Storage.GetAcl` method after inherting
|
/// see the effective `Storage.GetAcl` method after inheriting
|
||||||
/// documentation and annotations as follows:
|
/// documentation and annotations as follows:
|
||||||
///
|
///
|
||||||
/// service Storage {
|
/// service Storage {
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ const Api$json = {
|
|||||||
{'1': 'source_context', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
{'1': 'source_context', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
||||||
{'1': 'mixins', '3': 6, '4': 3, '5': 11, '6': '.google.protobuf.Mixin', '10': 'mixins'},
|
{'1': 'mixins', '3': 6, '4': 3, '5': 11, '6': '.google.protobuf.Mixin', '10': 'mixins'},
|
||||||
{'1': 'syntax', '3': 7, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
{'1': 'syntax', '3': 7, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
||||||
|
{'1': 'edition', '3': 8, '4': 1, '5': 9, '10': 'edition'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -35,7 +36,8 @@ final $typed_data.Uint8List apiDescriptor = $convert.base64Decode(
|
|||||||
'Lk9wdGlvblIHb3B0aW9ucxIYCgd2ZXJzaW9uGAQgASgJUgd2ZXJzaW9uEkUKDnNvdXJjZV9jb2'
|
'Lk9wdGlvblIHb3B0aW9ucxIYCgd2ZXJzaW9uGAQgASgJUgd2ZXJzaW9uEkUKDnNvdXJjZV9jb2'
|
||||||
'50ZXh0GAUgASgLMh4uZ29vZ2xlLnByb3RvYnVmLlNvdXJjZUNvbnRleHRSDXNvdXJjZUNvbnRl'
|
'50ZXh0GAUgASgLMh4uZ29vZ2xlLnByb3RvYnVmLlNvdXJjZUNvbnRleHRSDXNvdXJjZUNvbnRl'
|
||||||
'eHQSLgoGbWl4aW5zGAYgAygLMhYuZ29vZ2xlLnByb3RvYnVmLk1peGluUgZtaXhpbnMSLwoGc3'
|
'eHQSLgoGbWl4aW5zGAYgAygLMhYuZ29vZ2xlLnByb3RvYnVmLk1peGluUgZtaXhpbnMSLwoGc3'
|
||||||
'ludGF4GAcgASgOMhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheFIGc3ludGF4');
|
'ludGF4GAcgASgOMhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheFIGc3ludGF4EhgKB2VkaXRpb24Y'
|
||||||
|
'CCABKAlSB2VkaXRpb24=');
|
||||||
|
|
||||||
@$core.Deprecated('Use methodDescriptor instead')
|
@$core.Deprecated('Use methodDescriptor instead')
|
||||||
const Method$json = {
|
const Method$json = {
|
||||||
@@ -47,7 +49,23 @@ const Method$json = {
|
|||||||
{'1': 'response_type_url', '3': 4, '4': 1, '5': 9, '10': 'responseTypeUrl'},
|
{'1': 'response_type_url', '3': 4, '4': 1, '5': 9, '10': 'responseTypeUrl'},
|
||||||
{'1': 'response_streaming', '3': 5, '4': 1, '5': 8, '10': 'responseStreaming'},
|
{'1': 'response_streaming', '3': 5, '4': 1, '5': 8, '10': 'responseStreaming'},
|
||||||
{'1': 'options', '3': 6, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
{'1': 'options', '3': 6, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
||||||
{'1': 'syntax', '3': 7, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
{
|
||||||
|
'1': 'syntax',
|
||||||
|
'3': 7,
|
||||||
|
'4': 1,
|
||||||
|
'5': 14,
|
||||||
|
'6': '.google.protobuf.Syntax',
|
||||||
|
'8': {'3': true},
|
||||||
|
'10': 'syntax',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'1': 'edition',
|
||||||
|
'3': 8,
|
||||||
|
'4': 1,
|
||||||
|
'5': 9,
|
||||||
|
'8': {'3': true},
|
||||||
|
'10': 'edition',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -57,8 +75,9 @@ final $typed_data.Uint8List methodDescriptor = $convert.base64Decode(
|
|||||||
'5yZXF1ZXN0VHlwZVVybBIrChFyZXF1ZXN0X3N0cmVhbWluZxgDIAEoCFIQcmVxdWVzdFN0cmVh'
|
'5yZXF1ZXN0VHlwZVVybBIrChFyZXF1ZXN0X3N0cmVhbWluZxgDIAEoCFIQcmVxdWVzdFN0cmVh'
|
||||||
'bWluZxIqChFyZXNwb25zZV90eXBlX3VybBgEIAEoCVIPcmVzcG9uc2VUeXBlVXJsEi0KEnJlc3'
|
'bWluZxIqChFyZXNwb25zZV90eXBlX3VybBgEIAEoCVIPcmVzcG9uc2VUeXBlVXJsEi0KEnJlc3'
|
||||||
'BvbnNlX3N0cmVhbWluZxgFIAEoCFIRcmVzcG9uc2VTdHJlYW1pbmcSMQoHb3B0aW9ucxgGIAMo'
|
'BvbnNlX3N0cmVhbWluZxgFIAEoCFIRcmVzcG9uc2VTdHJlYW1pbmcSMQoHb3B0aW9ucxgGIAMo'
|
||||||
'CzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb25SB29wdGlvbnMSLwoGc3ludGF4GAcgASgOMhcuZ2'
|
'CzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb25SB29wdGlvbnMSMwoGc3ludGF4GAcgASgOMhcuZ2'
|
||||||
'9vZ2xlLnByb3RvYnVmLlN5bnRheFIGc3ludGF4');
|
'9vZ2xlLnByb3RvYnVmLlN5bnRheEICGAFSBnN5bnRheBIcCgdlZGl0aW9uGAggASgJQgIYAVIH'
|
||||||
|
'ZWRpdGlvbg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use mixinDescriptor instead')
|
@$core.Deprecated('Use mixinDescriptor instead')
|
||||||
const Mixin$json = {
|
const Mixin$json = {
|
||||||
|
|||||||
@@ -12,12 +12,15 @@
|
|||||||
|
|
||||||
import 'dart:core' as $core;
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:fixnum/fixnum.dart' as $fixnum;
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
import '../descriptor.pb.dart' as $0;
|
import '../descriptor.pb.dart' as $0;
|
||||||
|
|
||||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||||
|
|
||||||
|
export 'plugin.pbenum.dart';
|
||||||
|
|
||||||
/// The version number of protocol compiler.
|
/// The version number of protocol compiler.
|
||||||
class Version extends $pb.GeneratedMessage {
|
class Version extends $pb.GeneratedMessage {
|
||||||
factory Version({
|
factory Version({
|
||||||
@@ -110,12 +113,14 @@ class CodeGeneratorRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? parameter,
|
$core.String? parameter,
|
||||||
Version? compilerVersion,
|
Version? compilerVersion,
|
||||||
$core.Iterable<$0.FileDescriptorProto>? protoFile,
|
$core.Iterable<$0.FileDescriptorProto>? protoFile,
|
||||||
|
$core.Iterable<$0.FileDescriptorProto>? sourceFileDescriptors,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (fileToGenerate != null) result.fileToGenerate.addAll(fileToGenerate);
|
if (fileToGenerate != null) result.fileToGenerate.addAll(fileToGenerate);
|
||||||
if (parameter != null) result.parameter = parameter;
|
if (parameter != null) result.parameter = parameter;
|
||||||
if (compilerVersion != null) result.compilerVersion = compilerVersion;
|
if (compilerVersion != null) result.compilerVersion = compilerVersion;
|
||||||
if (protoFile != null) result.protoFile.addAll(protoFile);
|
if (protoFile != null) result.protoFile.addAll(protoFile);
|
||||||
|
if (sourceFileDescriptors != null) result.sourceFileDescriptors.addAll(sourceFileDescriptors);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,6 +134,7 @@ class CodeGeneratorRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(2, _omitFieldNames ? '' : 'parameter')
|
..aOS(2, _omitFieldNames ? '' : 'parameter')
|
||||||
..aOM<Version>(3, _omitFieldNames ? '' : 'compilerVersion', subBuilder: Version.create)
|
..aOM<Version>(3, _omitFieldNames ? '' : 'compilerVersion', subBuilder: Version.create)
|
||||||
..pc<$0.FileDescriptorProto>(15, _omitFieldNames ? '' : 'protoFile', $pb.PbFieldType.PM, subBuilder: $0.FileDescriptorProto.create)
|
..pc<$0.FileDescriptorProto>(15, _omitFieldNames ? '' : 'protoFile', $pb.PbFieldType.PM, subBuilder: $0.FileDescriptorProto.create)
|
||||||
|
..pc<$0.FileDescriptorProto>(17, _omitFieldNames ? '' : 'sourceFileDescriptors', $pb.PbFieldType.PM, subBuilder: $0.FileDescriptorProto.create)
|
||||||
;
|
;
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
@@ -180,6 +186,11 @@ class CodeGeneratorRequest extends $pb.GeneratedMessage {
|
|||||||
/// they import. The files will appear in topological order, so each file
|
/// they import. The files will appear in topological order, so each file
|
||||||
/// appears before any file that imports it.
|
/// appears before any file that imports it.
|
||||||
///
|
///
|
||||||
|
/// Note: the files listed in files_to_generate will include runtime-retention
|
||||||
|
/// options only, but all other files will include source-retention options.
|
||||||
|
/// The source_file_descriptors field below is available in case you need
|
||||||
|
/// source-retention options for files_to_generate.
|
||||||
|
///
|
||||||
/// protoc guarantees that all proto_files will be written after
|
/// protoc guarantees that all proto_files will be written after
|
||||||
/// the fields above, even though this is not technically guaranteed by the
|
/// the fields above, even though this is not technically guaranteed by the
|
||||||
/// protobuf wire format. This theoretically could allow a plugin to stream
|
/// protobuf wire format. This theoretically could allow a plugin to stream
|
||||||
@@ -192,6 +203,12 @@ class CodeGeneratorRequest extends $pb.GeneratedMessage {
|
|||||||
/// fully qualified.
|
/// fully qualified.
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$pb.PbList<$0.FileDescriptorProto> get protoFile => $_getList(3);
|
$pb.PbList<$0.FileDescriptorProto> get protoFile => $_getList(3);
|
||||||
|
|
||||||
|
/// File descriptors with all options, including source-retention options.
|
||||||
|
/// These descriptors are only provided for the files listed in
|
||||||
|
/// files_to_generate.
|
||||||
|
@$pb.TagNumber(17)
|
||||||
|
$pb.PbList<$0.FileDescriptorProto> get sourceFileDescriptors => $_getList(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Represents a single generated file.
|
/// Represents a single generated file.
|
||||||
@@ -200,11 +217,13 @@ class CodeGeneratorResponse_File extends $pb.GeneratedMessage {
|
|||||||
$core.String? name,
|
$core.String? name,
|
||||||
$core.String? insertionPoint,
|
$core.String? insertionPoint,
|
||||||
$core.String? content,
|
$core.String? content,
|
||||||
|
$0.GeneratedCodeInfo? generatedCodeInfo,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (name != null) result.name = name;
|
if (name != null) result.name = name;
|
||||||
if (insertionPoint != null) result.insertionPoint = insertionPoint;
|
if (insertionPoint != null) result.insertionPoint = insertionPoint;
|
||||||
if (content != null) result.content = content;
|
if (content != null) result.content = content;
|
||||||
|
if (generatedCodeInfo != null) result.generatedCodeInfo = generatedCodeInfo;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -217,6 +236,7 @@ class CodeGeneratorResponse_File extends $pb.GeneratedMessage {
|
|||||||
..aOS(1, _omitFieldNames ? '' : 'name')
|
..aOS(1, _omitFieldNames ? '' : 'name')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'insertionPoint')
|
..aOS(2, _omitFieldNames ? '' : 'insertionPoint')
|
||||||
..aOS(15, _omitFieldNames ? '' : 'content')
|
..aOS(15, _omitFieldNames ? '' : 'content')
|
||||||
|
..aOM<$0.GeneratedCodeInfo>(16, _omitFieldNames ? '' : 'generatedCodeInfo', subBuilder: $0.GeneratedCodeInfo.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -312,16 +332,36 @@ class CodeGeneratorResponse_File extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasContent() => $_has(2);
|
$core.bool hasContent() => $_has(2);
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
void clearContent() => $_clearField(15);
|
void clearContent() => $_clearField(15);
|
||||||
|
|
||||||
|
/// Information describing the file content being inserted. If an insertion
|
||||||
|
/// point is used, this information will be appropriately offset and inserted
|
||||||
|
/// into the code generation metadata for the generated files.
|
||||||
|
@$pb.TagNumber(16)
|
||||||
|
$0.GeneratedCodeInfo get generatedCodeInfo => $_getN(3);
|
||||||
|
@$pb.TagNumber(16)
|
||||||
|
set generatedCodeInfo($0.GeneratedCodeInfo value) => $_setField(16, value);
|
||||||
|
@$pb.TagNumber(16)
|
||||||
|
$core.bool hasGeneratedCodeInfo() => $_has(3);
|
||||||
|
@$pb.TagNumber(16)
|
||||||
|
void clearGeneratedCodeInfo() => $_clearField(16);
|
||||||
|
@$pb.TagNumber(16)
|
||||||
|
$0.GeneratedCodeInfo ensureGeneratedCodeInfo() => $_ensure(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The plugin writes an encoded CodeGeneratorResponse to stdout.
|
/// The plugin writes an encoded CodeGeneratorResponse to stdout.
|
||||||
class CodeGeneratorResponse extends $pb.GeneratedMessage {
|
class CodeGeneratorResponse extends $pb.GeneratedMessage {
|
||||||
factory CodeGeneratorResponse({
|
factory CodeGeneratorResponse({
|
||||||
$core.String? error,
|
$core.String? error,
|
||||||
|
$fixnum.Int64? supportedFeatures,
|
||||||
|
$core.int? minimumEdition,
|
||||||
|
$core.int? maximumEdition,
|
||||||
$core.Iterable<CodeGeneratorResponse_File>? file,
|
$core.Iterable<CodeGeneratorResponse_File>? file,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (error != null) result.error = error;
|
if (error != null) result.error = error;
|
||||||
|
if (supportedFeatures != null) result.supportedFeatures = supportedFeatures;
|
||||||
|
if (minimumEdition != null) result.minimumEdition = minimumEdition;
|
||||||
|
if (maximumEdition != null) result.maximumEdition = maximumEdition;
|
||||||
if (file != null) result.file.addAll(file);
|
if (file != null) result.file.addAll(file);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@@ -333,6 +373,9 @@ class CodeGeneratorResponse extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CodeGeneratorResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf.compiler'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CodeGeneratorResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'google.protobuf.compiler'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'error')
|
..aOS(1, _omitFieldNames ? '' : 'error')
|
||||||
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'supportedFeatures', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
|
..a<$core.int>(3, _omitFieldNames ? '' : 'minimumEdition', $pb.PbFieldType.O3)
|
||||||
|
..a<$core.int>(4, _omitFieldNames ? '' : 'maximumEdition', $pb.PbFieldType.O3)
|
||||||
..pc<CodeGeneratorResponse_File>(15, _omitFieldNames ? '' : 'file', $pb.PbFieldType.PM, subBuilder: CodeGeneratorResponse_File.create)
|
..pc<CodeGeneratorResponse_File>(15, _omitFieldNames ? '' : 'file', $pb.PbFieldType.PM, subBuilder: CodeGeneratorResponse_File.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
@@ -371,8 +414,45 @@ class CodeGeneratorResponse extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearError() => $_clearField(1);
|
void clearError() => $_clearField(1);
|
||||||
|
|
||||||
|
/// A bitmask of supported features that the code generator supports.
|
||||||
|
/// This is a bitwise "or" of values from the Feature enum.
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$fixnum.Int64 get supportedFeatures => $_getI64(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set supportedFeatures($fixnum.Int64 value) => $_setInt64(1, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasSupportedFeatures() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearSupportedFeatures() => $_clearField(2);
|
||||||
|
|
||||||
|
/// The minimum edition this plugin supports. This will be treated as an
|
||||||
|
/// Edition enum, but we want to allow unknown values. It should be specified
|
||||||
|
/// according the edition enum value, *not* the edition number. Only takes
|
||||||
|
/// effect for plugins that have FEATURE_SUPPORTS_EDITIONS set.
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.int get minimumEdition => $_getIZ(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set minimumEdition($core.int value) => $_setSignedInt32(2, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasMinimumEdition() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearMinimumEdition() => $_clearField(3);
|
||||||
|
|
||||||
|
/// The maximum edition this plugin supports. This will be treated as an
|
||||||
|
/// Edition enum, but we want to allow unknown values. It should be specified
|
||||||
|
/// according the edition enum value, *not* the edition number. Only takes
|
||||||
|
/// effect for plugins that have FEATURE_SUPPORTS_EDITIONS set.
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.int get maximumEdition => $_getIZ(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set maximumEdition($core.int value) => $_setSignedInt32(3, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasMaximumEdition() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearMaximumEdition() => $_clearField(4);
|
||||||
|
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$pb.PbList<CodeGeneratorResponse_File> get file => $_getList(1);
|
$pb.PbList<CodeGeneratorResponse_File> get file => $_getList(4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,3 +10,27 @@
|
|||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||||
// ignore_for_file: non_constant_identifier_names
|
// ignore_for_file: non_constant_identifier_names
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
/// Sync with code_generator.h.
|
||||||
|
class CodeGeneratorResponse_Feature extends $pb.ProtobufEnum {
|
||||||
|
static const CodeGeneratorResponse_Feature FEATURE_NONE = CodeGeneratorResponse_Feature._(0, _omitEnumNames ? '' : 'FEATURE_NONE');
|
||||||
|
static const CodeGeneratorResponse_Feature FEATURE_PROTO3_OPTIONAL = CodeGeneratorResponse_Feature._(1, _omitEnumNames ? '' : 'FEATURE_PROTO3_OPTIONAL');
|
||||||
|
static const CodeGeneratorResponse_Feature FEATURE_SUPPORTS_EDITIONS = CodeGeneratorResponse_Feature._(2, _omitEnumNames ? '' : 'FEATURE_SUPPORTS_EDITIONS');
|
||||||
|
|
||||||
|
static const $core.List<CodeGeneratorResponse_Feature> values = <CodeGeneratorResponse_Feature> [
|
||||||
|
FEATURE_NONE,
|
||||||
|
FEATURE_PROTO3_OPTIONAL,
|
||||||
|
FEATURE_SUPPORTS_EDITIONS,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<CodeGeneratorResponse_Feature?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static CodeGeneratorResponse_Feature? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const CodeGeneratorResponse_Feature._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ const CodeGeneratorRequest$json = {
|
|||||||
{'1': 'file_to_generate', '3': 1, '4': 3, '5': 9, '10': 'fileToGenerate'},
|
{'1': 'file_to_generate', '3': 1, '4': 3, '5': 9, '10': 'fileToGenerate'},
|
||||||
{'1': 'parameter', '3': 2, '4': 1, '5': 9, '10': 'parameter'},
|
{'1': 'parameter', '3': 2, '4': 1, '5': 9, '10': 'parameter'},
|
||||||
{'1': 'proto_file', '3': 15, '4': 3, '5': 11, '6': '.google.protobuf.FileDescriptorProto', '10': 'protoFile'},
|
{'1': 'proto_file', '3': 15, '4': 3, '5': 11, '6': '.google.protobuf.FileDescriptorProto', '10': 'protoFile'},
|
||||||
|
{'1': 'source_file_descriptors', '3': 17, '4': 3, '5': 11, '6': '.google.protobuf.FileDescriptorProto', '10': 'sourceFileDescriptors'},
|
||||||
{'1': 'compiler_version', '3': 3, '4': 1, '5': 11, '6': '.google.protobuf.compiler.Version', '10': 'compilerVersion'},
|
{'1': 'compiler_version', '3': 3, '4': 1, '5': 11, '6': '.google.protobuf.compiler.Version', '10': 'compilerVersion'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@@ -45,18 +46,24 @@ const CodeGeneratorRequest$json = {
|
|||||||
final $typed_data.Uint8List codeGeneratorRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List codeGeneratorRequestDescriptor = $convert.base64Decode(
|
||||||
'ChRDb2RlR2VuZXJhdG9yUmVxdWVzdBIoChBmaWxlX3RvX2dlbmVyYXRlGAEgAygJUg5maWxlVG'
|
'ChRDb2RlR2VuZXJhdG9yUmVxdWVzdBIoChBmaWxlX3RvX2dlbmVyYXRlGAEgAygJUg5maWxlVG'
|
||||||
'9HZW5lcmF0ZRIcCglwYXJhbWV0ZXIYAiABKAlSCXBhcmFtZXRlchJDCgpwcm90b19maWxlGA8g'
|
'9HZW5lcmF0ZRIcCglwYXJhbWV0ZXIYAiABKAlSCXBhcmFtZXRlchJDCgpwcm90b19maWxlGA8g'
|
||||||
'AygLMiQuZ29vZ2xlLnByb3RvYnVmLkZpbGVEZXNjcmlwdG9yUHJvdG9SCXByb3RvRmlsZRJMCh'
|
'AygLMiQuZ29vZ2xlLnByb3RvYnVmLkZpbGVEZXNjcmlwdG9yUHJvdG9SCXByb3RvRmlsZRJcCh'
|
||||||
'Bjb21waWxlcl92ZXJzaW9uGAMgASgLMiEuZ29vZ2xlLnByb3RvYnVmLmNvbXBpbGVyLlZlcnNp'
|
'dzb3VyY2VfZmlsZV9kZXNjcmlwdG9ycxgRIAMoCzIkLmdvb2dsZS5wcm90b2J1Zi5GaWxlRGVz'
|
||||||
'b25SD2NvbXBpbGVyVmVyc2lvbg==');
|
'Y3JpcHRvclByb3RvUhVzb3VyY2VGaWxlRGVzY3JpcHRvcnMSTAoQY29tcGlsZXJfdmVyc2lvbh'
|
||||||
|
'gDIAEoCzIhLmdvb2dsZS5wcm90b2J1Zi5jb21waWxlci5WZXJzaW9uUg9jb21waWxlclZlcnNp'
|
||||||
|
'b24=');
|
||||||
|
|
||||||
@$core.Deprecated('Use codeGeneratorResponseDescriptor instead')
|
@$core.Deprecated('Use codeGeneratorResponseDescriptor instead')
|
||||||
const CodeGeneratorResponse$json = {
|
const CodeGeneratorResponse$json = {
|
||||||
'1': 'CodeGeneratorResponse',
|
'1': 'CodeGeneratorResponse',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'error', '3': 1, '4': 1, '5': 9, '10': 'error'},
|
{'1': 'error', '3': 1, '4': 1, '5': 9, '10': 'error'},
|
||||||
|
{'1': 'supported_features', '3': 2, '4': 1, '5': 4, '10': 'supportedFeatures'},
|
||||||
|
{'1': 'minimum_edition', '3': 3, '4': 1, '5': 5, '10': 'minimumEdition'},
|
||||||
|
{'1': 'maximum_edition', '3': 4, '4': 1, '5': 5, '10': 'maximumEdition'},
|
||||||
{'1': 'file', '3': 15, '4': 3, '5': 11, '6': '.google.protobuf.compiler.CodeGeneratorResponse.File', '10': 'file'},
|
{'1': 'file', '3': 15, '4': 3, '5': 11, '6': '.google.protobuf.compiler.CodeGeneratorResponse.File', '10': 'file'},
|
||||||
],
|
],
|
||||||
'3': [CodeGeneratorResponse_File$json],
|
'3': [CodeGeneratorResponse_File$json],
|
||||||
|
'4': [CodeGeneratorResponse_Feature$json],
|
||||||
};
|
};
|
||||||
|
|
||||||
@$core.Deprecated('Use codeGeneratorResponseDescriptor instead')
|
@$core.Deprecated('Use codeGeneratorResponseDescriptor instead')
|
||||||
@@ -66,13 +73,30 @@ const CodeGeneratorResponse_File$json = {
|
|||||||
{'1': 'name', '3': 1, '4': 1, '5': 9, '10': 'name'},
|
{'1': 'name', '3': 1, '4': 1, '5': 9, '10': 'name'},
|
||||||
{'1': 'insertion_point', '3': 2, '4': 1, '5': 9, '10': 'insertionPoint'},
|
{'1': 'insertion_point', '3': 2, '4': 1, '5': 9, '10': 'insertionPoint'},
|
||||||
{'1': 'content', '3': 15, '4': 1, '5': 9, '10': 'content'},
|
{'1': 'content', '3': 15, '4': 1, '5': 9, '10': 'content'},
|
||||||
|
{'1': 'generated_code_info', '3': 16, '4': 1, '5': 11, '6': '.google.protobuf.GeneratedCodeInfo', '10': 'generatedCodeInfo'},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use codeGeneratorResponseDescriptor instead')
|
||||||
|
const CodeGeneratorResponse_Feature$json = {
|
||||||
|
'1': 'Feature',
|
||||||
|
'2': [
|
||||||
|
{'1': 'FEATURE_NONE', '2': 0},
|
||||||
|
{'1': 'FEATURE_PROTO3_OPTIONAL', '2': 1},
|
||||||
|
{'1': 'FEATURE_SUPPORTS_EDITIONS', '2': 2},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `CodeGeneratorResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CodeGeneratorResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List codeGeneratorResponseDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List codeGeneratorResponseDescriptor = $convert.base64Decode(
|
||||||
'ChVDb2RlR2VuZXJhdG9yUmVzcG9uc2USFAoFZXJyb3IYASABKAlSBWVycm9yEkgKBGZpbGUYDy'
|
'ChVDb2RlR2VuZXJhdG9yUmVzcG9uc2USFAoFZXJyb3IYASABKAlSBWVycm9yEi0KEnN1cHBvcn'
|
||||||
'ADKAsyNC5nb29nbGUucHJvdG9idWYuY29tcGlsZXIuQ29kZUdlbmVyYXRvclJlc3BvbnNlLkZp'
|
'RlZF9mZWF0dXJlcxgCIAEoBFIRc3VwcG9ydGVkRmVhdHVyZXMSJwoPbWluaW11bV9lZGl0aW9u'
|
||||||
'bGVSBGZpbGUaXQoERmlsZRISCgRuYW1lGAEgASgJUgRuYW1lEicKD2luc2VydGlvbl9wb2ludB'
|
'GAMgASgFUg5taW5pbXVtRWRpdGlvbhInCg9tYXhpbXVtX2VkaXRpb24YBCABKAVSDm1heGltdW'
|
||||||
'gCIAEoCVIOaW5zZXJ0aW9uUG9pbnQSGAoHY29udGVudBgPIAEoCVIHY29udGVudA==');
|
'1FZGl0aW9uEkgKBGZpbGUYDyADKAsyNC5nb29nbGUucHJvdG9idWYuY29tcGlsZXIuQ29kZUdl'
|
||||||
|
'bmVyYXRvclJlc3BvbnNlLkZpbGVSBGZpbGUasQEKBEZpbGUSEgoEbmFtZRgBIAEoCVIEbmFtZR'
|
||||||
|
'InCg9pbnNlcnRpb25fcG9pbnQYAiABKAlSDmluc2VydGlvblBvaW50EhgKB2NvbnRlbnQYDyAB'
|
||||||
|
'KAlSB2NvbnRlbnQSUgoTZ2VuZXJhdGVkX2NvZGVfaW5mbxgQIAEoCzIiLmdvb2dsZS5wcm90b2'
|
||||||
|
'J1Zi5HZW5lcmF0ZWRDb2RlSW5mb1IRZ2VuZXJhdGVkQ29kZUluZm8iVwoHRmVhdHVyZRIQCgxG'
|
||||||
|
'RUFUVVJFX05PTkUQABIbChdGRUFUVVJFX1BST1RPM19PUFRJT05BTBABEh0KGUZFQVRVUkVfU1'
|
||||||
|
'VQUE9SVFNfRURJVElPTlMQAg==');
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -14,6 +14,99 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
/// The full set of known editions.
|
||||||
|
class Edition extends $pb.ProtobufEnum {
|
||||||
|
/// A placeholder for an unknown edition value.
|
||||||
|
static const Edition EDITION_UNKNOWN = Edition._(0, _omitEnumNames ? '' : 'EDITION_UNKNOWN');
|
||||||
|
/// A placeholder edition for specifying default behaviors *before* a feature
|
||||||
|
/// was first introduced. This is effectively an "infinite past".
|
||||||
|
static const Edition EDITION_LEGACY = Edition._(900, _omitEnumNames ? '' : 'EDITION_LEGACY');
|
||||||
|
/// Legacy syntax "editions". These pre-date editions, but behave much like
|
||||||
|
/// distinct editions. These can't be used to specify the edition of proto
|
||||||
|
/// files, but feature definitions must supply proto2/proto3 defaults for
|
||||||
|
/// backwards compatibility.
|
||||||
|
static const Edition EDITION_PROTO2 = Edition._(998, _omitEnumNames ? '' : 'EDITION_PROTO2');
|
||||||
|
static const Edition EDITION_PROTO3 = Edition._(999, _omitEnumNames ? '' : 'EDITION_PROTO3');
|
||||||
|
/// Editions that have been released. The specific values are arbitrary and
|
||||||
|
/// should not be depended on, but they will always be time-ordered for easy
|
||||||
|
/// comparison.
|
||||||
|
static const Edition EDITION_2023 = Edition._(1000, _omitEnumNames ? '' : 'EDITION_2023');
|
||||||
|
static const Edition EDITION_2024 = Edition._(1001, _omitEnumNames ? '' : 'EDITION_2024');
|
||||||
|
/// A placeholder edition for developing and testing unscheduled features.
|
||||||
|
static const Edition EDITION_UNSTABLE = Edition._(9999, _omitEnumNames ? '' : 'EDITION_UNSTABLE');
|
||||||
|
/// Placeholder editions for testing feature resolution. These should not be
|
||||||
|
/// used or relied on outside of tests.
|
||||||
|
static const Edition EDITION_1_TEST_ONLY = Edition._(1, _omitEnumNames ? '' : 'EDITION_1_TEST_ONLY');
|
||||||
|
static const Edition EDITION_2_TEST_ONLY = Edition._(2, _omitEnumNames ? '' : 'EDITION_2_TEST_ONLY');
|
||||||
|
static const Edition EDITION_99997_TEST_ONLY = Edition._(99997, _omitEnumNames ? '' : 'EDITION_99997_TEST_ONLY');
|
||||||
|
static const Edition EDITION_99998_TEST_ONLY = Edition._(99998, _omitEnumNames ? '' : 'EDITION_99998_TEST_ONLY');
|
||||||
|
static const Edition EDITION_99999_TEST_ONLY = Edition._(99999, _omitEnumNames ? '' : 'EDITION_99999_TEST_ONLY');
|
||||||
|
/// Placeholder for specifying unbounded edition support. This should only
|
||||||
|
/// ever be used by plugins that can expect to never require any changes to
|
||||||
|
/// support a new edition.
|
||||||
|
static const Edition EDITION_MAX = Edition._(2147483647, _omitEnumNames ? '' : 'EDITION_MAX');
|
||||||
|
|
||||||
|
static const $core.List<Edition> values = <Edition> [
|
||||||
|
EDITION_UNKNOWN,
|
||||||
|
EDITION_LEGACY,
|
||||||
|
EDITION_PROTO2,
|
||||||
|
EDITION_PROTO3,
|
||||||
|
EDITION_2023,
|
||||||
|
EDITION_2024,
|
||||||
|
EDITION_UNSTABLE,
|
||||||
|
EDITION_1_TEST_ONLY,
|
||||||
|
EDITION_2_TEST_ONLY,
|
||||||
|
EDITION_99997_TEST_ONLY,
|
||||||
|
EDITION_99998_TEST_ONLY,
|
||||||
|
EDITION_99999_TEST_ONLY,
|
||||||
|
EDITION_MAX,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.Map<$core.int, Edition> _byValue = $pb.ProtobufEnum.initByValue(values);
|
||||||
|
static Edition? valueOf($core.int value) => _byValue[value];
|
||||||
|
|
||||||
|
const Edition._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Describes the 'visibility' of a symbol with respect to the proto import
|
||||||
|
/// system. Symbols can only be imported when the visibility rules do not prevent
|
||||||
|
/// it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
||||||
|
/// on `message` and `enum` as they are the only types available to be referenced
|
||||||
|
/// from other files.
|
||||||
|
class SymbolVisibility extends $pb.ProtobufEnum {
|
||||||
|
static const SymbolVisibility VISIBILITY_UNSET = SymbolVisibility._(0, _omitEnumNames ? '' : 'VISIBILITY_UNSET');
|
||||||
|
static const SymbolVisibility VISIBILITY_LOCAL = SymbolVisibility._(1, _omitEnumNames ? '' : 'VISIBILITY_LOCAL');
|
||||||
|
static const SymbolVisibility VISIBILITY_EXPORT = SymbolVisibility._(2, _omitEnumNames ? '' : 'VISIBILITY_EXPORT');
|
||||||
|
|
||||||
|
static const $core.List<SymbolVisibility> values = <SymbolVisibility> [
|
||||||
|
VISIBILITY_UNSET,
|
||||||
|
VISIBILITY_LOCAL,
|
||||||
|
VISIBILITY_EXPORT,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<SymbolVisibility?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static SymbolVisibility? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const SymbolVisibility._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The verification state of the extension range.
|
||||||
|
class ExtensionRangeOptions_VerificationState extends $pb.ProtobufEnum {
|
||||||
|
/// All the extensions of the range must be declared.
|
||||||
|
static const ExtensionRangeOptions_VerificationState DECLARATION = ExtensionRangeOptions_VerificationState._(0, _omitEnumNames ? '' : 'DECLARATION');
|
||||||
|
static const ExtensionRangeOptions_VerificationState UNVERIFIED = ExtensionRangeOptions_VerificationState._(1, _omitEnumNames ? '' : 'UNVERIFIED');
|
||||||
|
|
||||||
|
static const $core.List<ExtensionRangeOptions_VerificationState> values = <ExtensionRangeOptions_VerificationState> [
|
||||||
|
DECLARATION,
|
||||||
|
UNVERIFIED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<ExtensionRangeOptions_VerificationState?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
|
||||||
|
static ExtensionRangeOptions_VerificationState? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const ExtensionRangeOptions_VerificationState._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
class FieldDescriptorProto_Type extends $pb.ProtobufEnum {
|
class FieldDescriptorProto_Type extends $pb.ProtobufEnum {
|
||||||
/// 0 is reserved for errors.
|
/// 0 is reserved for errors.
|
||||||
/// Order is weird for historical reasons.
|
/// Order is weird for historical reasons.
|
||||||
@@ -31,9 +124,10 @@ class FieldDescriptorProto_Type extends $pb.ProtobufEnum {
|
|||||||
static const FieldDescriptorProto_Type TYPE_BOOL = FieldDescriptorProto_Type._(8, _omitEnumNames ? '' : 'TYPE_BOOL');
|
static const FieldDescriptorProto_Type TYPE_BOOL = FieldDescriptorProto_Type._(8, _omitEnumNames ? '' : 'TYPE_BOOL');
|
||||||
static const FieldDescriptorProto_Type TYPE_STRING = FieldDescriptorProto_Type._(9, _omitEnumNames ? '' : 'TYPE_STRING');
|
static const FieldDescriptorProto_Type TYPE_STRING = FieldDescriptorProto_Type._(9, _omitEnumNames ? '' : 'TYPE_STRING');
|
||||||
/// Tag-delimited aggregate.
|
/// Tag-delimited aggregate.
|
||||||
/// Group type is deprecated and not supported in proto3. However, Proto3
|
/// Group type is deprecated and not supported after google.protobuf. However, Proto3
|
||||||
/// implementations should still be able to parse the group wire format and
|
/// implementations should still be able to parse the group wire format and
|
||||||
/// treat group fields as unknown fields.
|
/// treat group fields as unknown fields. In Editions, the group wire format
|
||||||
|
/// can be enabled via the `message_encoding` feature.
|
||||||
static const FieldDescriptorProto_Type TYPE_GROUP = FieldDescriptorProto_Type._(10, _omitEnumNames ? '' : 'TYPE_GROUP');
|
static const FieldDescriptorProto_Type TYPE_GROUP = FieldDescriptorProto_Type._(10, _omitEnumNames ? '' : 'TYPE_GROUP');
|
||||||
static const FieldDescriptorProto_Type TYPE_MESSAGE = FieldDescriptorProto_Type._(11, _omitEnumNames ? '' : 'TYPE_MESSAGE');
|
static const FieldDescriptorProto_Type TYPE_MESSAGE = FieldDescriptorProto_Type._(11, _omitEnumNames ? '' : 'TYPE_MESSAGE');
|
||||||
/// New in version 2.
|
/// New in version 2.
|
||||||
@@ -75,13 +169,16 @@ class FieldDescriptorProto_Type extends $pb.ProtobufEnum {
|
|||||||
class FieldDescriptorProto_Label extends $pb.ProtobufEnum {
|
class FieldDescriptorProto_Label extends $pb.ProtobufEnum {
|
||||||
/// 0 is reserved for errors
|
/// 0 is reserved for errors
|
||||||
static const FieldDescriptorProto_Label LABEL_OPTIONAL = FieldDescriptorProto_Label._(1, _omitEnumNames ? '' : 'LABEL_OPTIONAL');
|
static const FieldDescriptorProto_Label LABEL_OPTIONAL = FieldDescriptorProto_Label._(1, _omitEnumNames ? '' : 'LABEL_OPTIONAL');
|
||||||
static const FieldDescriptorProto_Label LABEL_REQUIRED = FieldDescriptorProto_Label._(2, _omitEnumNames ? '' : 'LABEL_REQUIRED');
|
|
||||||
static const FieldDescriptorProto_Label LABEL_REPEATED = FieldDescriptorProto_Label._(3, _omitEnumNames ? '' : 'LABEL_REPEATED');
|
static const FieldDescriptorProto_Label LABEL_REPEATED = FieldDescriptorProto_Label._(3, _omitEnumNames ? '' : 'LABEL_REPEATED');
|
||||||
|
/// The required label is only allowed in google.protobuf. In proto3 and Editions
|
||||||
|
/// it's explicitly prohibited. In Editions, the `field_presence` feature
|
||||||
|
/// can be used to get this behavior.
|
||||||
|
static const FieldDescriptorProto_Label LABEL_REQUIRED = FieldDescriptorProto_Label._(2, _omitEnumNames ? '' : 'LABEL_REQUIRED');
|
||||||
|
|
||||||
static const $core.List<FieldDescriptorProto_Label> values = <FieldDescriptorProto_Label> [
|
static const $core.List<FieldDescriptorProto_Label> values = <FieldDescriptorProto_Label> [
|
||||||
LABEL_OPTIONAL,
|
LABEL_OPTIONAL,
|
||||||
LABEL_REQUIRED,
|
|
||||||
LABEL_REPEATED,
|
LABEL_REPEATED,
|
||||||
|
LABEL_REQUIRED,
|
||||||
];
|
];
|
||||||
|
|
||||||
static final $core.List<FieldDescriptorProto_Label?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
static final $core.List<FieldDescriptorProto_Label?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||||
@@ -112,6 +209,12 @@ class FileOptions_OptimizeMode extends $pb.ProtobufEnum {
|
|||||||
class FieldOptions_CType extends $pb.ProtobufEnum {
|
class FieldOptions_CType extends $pb.ProtobufEnum {
|
||||||
/// Default mode.
|
/// Default mode.
|
||||||
static const FieldOptions_CType STRING = FieldOptions_CType._(0, _omitEnumNames ? '' : 'STRING');
|
static const FieldOptions_CType STRING = FieldOptions_CType._(0, _omitEnumNames ? '' : 'STRING');
|
||||||
|
/// The option [ctype=CORD] may be applied to a non-repeated field of type
|
||||||
|
/// "bytes". It indicates that in C++, the data should be stored in a Cord
|
||||||
|
/// instead of a string. For very large strings, this may reduce memory
|
||||||
|
/// fragmentation. It may also allow better performance when parsing from a
|
||||||
|
/// Cord, or when parsing with aliasing enabled, as the parsed Cord may then
|
||||||
|
/// alias the original buffer.
|
||||||
static const FieldOptions_CType CORD = FieldOptions_CType._(1, _omitEnumNames ? '' : 'CORD');
|
static const FieldOptions_CType CORD = FieldOptions_CType._(1, _omitEnumNames ? '' : 'CORD');
|
||||||
static const FieldOptions_CType STRING_PIECE = FieldOptions_CType._(2, _omitEnumNames ? '' : 'STRING_PIECE');
|
static const FieldOptions_CType STRING_PIECE = FieldOptions_CType._(2, _omitEnumNames ? '' : 'STRING_PIECE');
|
||||||
|
|
||||||
@@ -147,6 +250,58 @@ class FieldOptions_JSType extends $pb.ProtobufEnum {
|
|||||||
const FieldOptions_JSType._(super.value, super.name);
|
const FieldOptions_JSType._(super.value, super.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
||||||
|
class FieldOptions_OptionRetention extends $pb.ProtobufEnum {
|
||||||
|
static const FieldOptions_OptionRetention RETENTION_UNKNOWN = FieldOptions_OptionRetention._(0, _omitEnumNames ? '' : 'RETENTION_UNKNOWN');
|
||||||
|
static const FieldOptions_OptionRetention RETENTION_RUNTIME = FieldOptions_OptionRetention._(1, _omitEnumNames ? '' : 'RETENTION_RUNTIME');
|
||||||
|
static const FieldOptions_OptionRetention RETENTION_SOURCE = FieldOptions_OptionRetention._(2, _omitEnumNames ? '' : 'RETENTION_SOURCE');
|
||||||
|
|
||||||
|
static const $core.List<FieldOptions_OptionRetention> values = <FieldOptions_OptionRetention> [
|
||||||
|
RETENTION_UNKNOWN,
|
||||||
|
RETENTION_RUNTIME,
|
||||||
|
RETENTION_SOURCE,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FieldOptions_OptionRetention?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FieldOptions_OptionRetention? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FieldOptions_OptionRetention._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// This indicates the types of entities that the field may apply to when used
|
||||||
|
/// as an option. If it is unset, then the field may be freely used as an
|
||||||
|
/// option on any kind of entity.
|
||||||
|
class FieldOptions_OptionTargetType extends $pb.ProtobufEnum {
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_UNKNOWN = FieldOptions_OptionTargetType._(0, _omitEnumNames ? '' : 'TARGET_TYPE_UNKNOWN');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_FILE = FieldOptions_OptionTargetType._(1, _omitEnumNames ? '' : 'TARGET_TYPE_FILE');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_EXTENSION_RANGE = FieldOptions_OptionTargetType._(2, _omitEnumNames ? '' : 'TARGET_TYPE_EXTENSION_RANGE');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_MESSAGE = FieldOptions_OptionTargetType._(3, _omitEnumNames ? '' : 'TARGET_TYPE_MESSAGE');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_FIELD = FieldOptions_OptionTargetType._(4, _omitEnumNames ? '' : 'TARGET_TYPE_FIELD');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_ONEOF = FieldOptions_OptionTargetType._(5, _omitEnumNames ? '' : 'TARGET_TYPE_ONEOF');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_ENUM = FieldOptions_OptionTargetType._(6, _omitEnumNames ? '' : 'TARGET_TYPE_ENUM');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_ENUM_ENTRY = FieldOptions_OptionTargetType._(7, _omitEnumNames ? '' : 'TARGET_TYPE_ENUM_ENTRY');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_SERVICE = FieldOptions_OptionTargetType._(8, _omitEnumNames ? '' : 'TARGET_TYPE_SERVICE');
|
||||||
|
static const FieldOptions_OptionTargetType TARGET_TYPE_METHOD = FieldOptions_OptionTargetType._(9, _omitEnumNames ? '' : 'TARGET_TYPE_METHOD');
|
||||||
|
|
||||||
|
static const $core.List<FieldOptions_OptionTargetType> values = <FieldOptions_OptionTargetType> [
|
||||||
|
TARGET_TYPE_UNKNOWN,
|
||||||
|
TARGET_TYPE_FILE,
|
||||||
|
TARGET_TYPE_EXTENSION_RANGE,
|
||||||
|
TARGET_TYPE_MESSAGE,
|
||||||
|
TARGET_TYPE_FIELD,
|
||||||
|
TARGET_TYPE_ONEOF,
|
||||||
|
TARGET_TYPE_ENUM,
|
||||||
|
TARGET_TYPE_ENUM_ENTRY,
|
||||||
|
TARGET_TYPE_SERVICE,
|
||||||
|
TARGET_TYPE_METHOD,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FieldOptions_OptionTargetType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 9);
|
||||||
|
static FieldOptions_OptionTargetType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FieldOptions_OptionTargetType._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
/// Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
|
/// Is this method side-effect-free (or safe in HTTP parlance), or idempotent,
|
||||||
/// or neither? HTTP based RPC implementation may choose GET verb for safe
|
/// or neither? HTTP based RPC implementation may choose GET verb for safe
|
||||||
/// methods, and PUT verb for idempotent methods instead of the default POST.
|
/// methods, and PUT verb for idempotent methods instead of the default POST.
|
||||||
@@ -167,5 +322,175 @@ class MethodOptions_IdempotencyLevel extends $pb.ProtobufEnum {
|
|||||||
const MethodOptions_IdempotencyLevel._(super.value, super.name);
|
const MethodOptions_IdempotencyLevel._(super.value, super.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class FeatureSet_FieldPresence extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_FieldPresence FIELD_PRESENCE_UNKNOWN = FeatureSet_FieldPresence._(0, _omitEnumNames ? '' : 'FIELD_PRESENCE_UNKNOWN');
|
||||||
|
static const FeatureSet_FieldPresence EXPLICIT = FeatureSet_FieldPresence._(1, _omitEnumNames ? '' : 'EXPLICIT');
|
||||||
|
static const FeatureSet_FieldPresence IMPLICIT = FeatureSet_FieldPresence._(2, _omitEnumNames ? '' : 'IMPLICIT');
|
||||||
|
static const FeatureSet_FieldPresence LEGACY_REQUIRED = FeatureSet_FieldPresence._(3, _omitEnumNames ? '' : 'LEGACY_REQUIRED');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_FieldPresence> values = <FeatureSet_FieldPresence> [
|
||||||
|
FIELD_PRESENCE_UNKNOWN,
|
||||||
|
EXPLICIT,
|
||||||
|
IMPLICIT,
|
||||||
|
LEGACY_REQUIRED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_FieldPresence?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||||
|
static FeatureSet_FieldPresence? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_FieldPresence._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_EnumType extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_EnumType ENUM_TYPE_UNKNOWN = FeatureSet_EnumType._(0, _omitEnumNames ? '' : 'ENUM_TYPE_UNKNOWN');
|
||||||
|
static const FeatureSet_EnumType OPEN = FeatureSet_EnumType._(1, _omitEnumNames ? '' : 'OPEN');
|
||||||
|
static const FeatureSet_EnumType CLOSED = FeatureSet_EnumType._(2, _omitEnumNames ? '' : 'CLOSED');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_EnumType> values = <FeatureSet_EnumType> [
|
||||||
|
ENUM_TYPE_UNKNOWN,
|
||||||
|
OPEN,
|
||||||
|
CLOSED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_EnumType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FeatureSet_EnumType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_EnumType._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_RepeatedFieldEncoding extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_RepeatedFieldEncoding REPEATED_FIELD_ENCODING_UNKNOWN = FeatureSet_RepeatedFieldEncoding._(0, _omitEnumNames ? '' : 'REPEATED_FIELD_ENCODING_UNKNOWN');
|
||||||
|
static const FeatureSet_RepeatedFieldEncoding PACKED = FeatureSet_RepeatedFieldEncoding._(1, _omitEnumNames ? '' : 'PACKED');
|
||||||
|
static const FeatureSet_RepeatedFieldEncoding EXPANDED = FeatureSet_RepeatedFieldEncoding._(2, _omitEnumNames ? '' : 'EXPANDED');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_RepeatedFieldEncoding> values = <FeatureSet_RepeatedFieldEncoding> [
|
||||||
|
REPEATED_FIELD_ENCODING_UNKNOWN,
|
||||||
|
PACKED,
|
||||||
|
EXPANDED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_RepeatedFieldEncoding?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FeatureSet_RepeatedFieldEncoding? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_RepeatedFieldEncoding._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_Utf8Validation extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_Utf8Validation UTF8_VALIDATION_UNKNOWN = FeatureSet_Utf8Validation._(0, _omitEnumNames ? '' : 'UTF8_VALIDATION_UNKNOWN');
|
||||||
|
static const FeatureSet_Utf8Validation VERIFY = FeatureSet_Utf8Validation._(2, _omitEnumNames ? '' : 'VERIFY');
|
||||||
|
static const FeatureSet_Utf8Validation NONE = FeatureSet_Utf8Validation._(3, _omitEnumNames ? '' : 'NONE');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_Utf8Validation> values = <FeatureSet_Utf8Validation> [
|
||||||
|
UTF8_VALIDATION_UNKNOWN,
|
||||||
|
VERIFY,
|
||||||
|
NONE,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_Utf8Validation?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 3);
|
||||||
|
static FeatureSet_Utf8Validation? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_Utf8Validation._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_MessageEncoding extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_MessageEncoding MESSAGE_ENCODING_UNKNOWN = FeatureSet_MessageEncoding._(0, _omitEnumNames ? '' : 'MESSAGE_ENCODING_UNKNOWN');
|
||||||
|
static const FeatureSet_MessageEncoding LENGTH_PREFIXED = FeatureSet_MessageEncoding._(1, _omitEnumNames ? '' : 'LENGTH_PREFIXED');
|
||||||
|
static const FeatureSet_MessageEncoding DELIMITED = FeatureSet_MessageEncoding._(2, _omitEnumNames ? '' : 'DELIMITED');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_MessageEncoding> values = <FeatureSet_MessageEncoding> [
|
||||||
|
MESSAGE_ENCODING_UNKNOWN,
|
||||||
|
LENGTH_PREFIXED,
|
||||||
|
DELIMITED,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_MessageEncoding?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FeatureSet_MessageEncoding? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_MessageEncoding._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_JsonFormat extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_JsonFormat JSON_FORMAT_UNKNOWN = FeatureSet_JsonFormat._(0, _omitEnumNames ? '' : 'JSON_FORMAT_UNKNOWN');
|
||||||
|
static const FeatureSet_JsonFormat ALLOW = FeatureSet_JsonFormat._(1, _omitEnumNames ? '' : 'ALLOW');
|
||||||
|
static const FeatureSet_JsonFormat LEGACY_BEST_EFFORT = FeatureSet_JsonFormat._(2, _omitEnumNames ? '' : 'LEGACY_BEST_EFFORT');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_JsonFormat> values = <FeatureSet_JsonFormat> [
|
||||||
|
JSON_FORMAT_UNKNOWN,
|
||||||
|
ALLOW,
|
||||||
|
LEGACY_BEST_EFFORT,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_JsonFormat?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FeatureSet_JsonFormat? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_JsonFormat._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_EnforceNamingStyle extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_EnforceNamingStyle ENFORCE_NAMING_STYLE_UNKNOWN = FeatureSet_EnforceNamingStyle._(0, _omitEnumNames ? '' : 'ENFORCE_NAMING_STYLE_UNKNOWN');
|
||||||
|
static const FeatureSet_EnforceNamingStyle STYLE2024 = FeatureSet_EnforceNamingStyle._(1, _omitEnumNames ? '' : 'STYLE2024');
|
||||||
|
static const FeatureSet_EnforceNamingStyle STYLE_LEGACY = FeatureSet_EnforceNamingStyle._(2, _omitEnumNames ? '' : 'STYLE_LEGACY');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_EnforceNamingStyle> values = <FeatureSet_EnforceNamingStyle> [
|
||||||
|
ENFORCE_NAMING_STYLE_UNKNOWN,
|
||||||
|
STYLE2024,
|
||||||
|
STYLE_LEGACY,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_EnforceNamingStyle?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static FeatureSet_EnforceNamingStyle? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_EnforceNamingStyle._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
class FeatureSet_VisibilityFeature_DefaultSymbolVisibility extends $pb.ProtobufEnum {
|
||||||
|
static const FeatureSet_VisibilityFeature_DefaultSymbolVisibility DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(0, _omitEnumNames ? '' : 'DEFAULT_SYMBOL_VISIBILITY_UNKNOWN');
|
||||||
|
/// Default pre-EDITION_2024, all UNSET visibility are export.
|
||||||
|
static const FeatureSet_VisibilityFeature_DefaultSymbolVisibility EXPORT_ALL = FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(1, _omitEnumNames ? '' : 'EXPORT_ALL');
|
||||||
|
/// All top-level symbols default to export, nested default to local.
|
||||||
|
static const FeatureSet_VisibilityFeature_DefaultSymbolVisibility EXPORT_TOP_LEVEL = FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(2, _omitEnumNames ? '' : 'EXPORT_TOP_LEVEL');
|
||||||
|
/// All symbols default to local.
|
||||||
|
static const FeatureSet_VisibilityFeature_DefaultSymbolVisibility LOCAL_ALL = FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(3, _omitEnumNames ? '' : 'LOCAL_ALL');
|
||||||
|
/// All symbols local by default. Nested types cannot be exported.
|
||||||
|
/// With special case caveat for message { enum {} reserved 1 to max; }
|
||||||
|
/// This is the recommended setting for new protos.
|
||||||
|
static const FeatureSet_VisibilityFeature_DefaultSymbolVisibility STRICT = FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(4, _omitEnumNames ? '' : 'STRICT');
|
||||||
|
|
||||||
|
static const $core.List<FeatureSet_VisibilityFeature_DefaultSymbolVisibility> values = <FeatureSet_VisibilityFeature_DefaultSymbolVisibility> [
|
||||||
|
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN,
|
||||||
|
EXPORT_ALL,
|
||||||
|
EXPORT_TOP_LEVEL,
|
||||||
|
LOCAL_ALL,
|
||||||
|
STRICT,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<FeatureSet_VisibilityFeature_DefaultSymbolVisibility?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4);
|
||||||
|
static FeatureSet_VisibilityFeature_DefaultSymbolVisibility? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const FeatureSet_VisibilityFeature_DefaultSymbolVisibility._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Represents the identified object's effect on the element in the original
|
||||||
|
/// .proto file.
|
||||||
|
class GeneratedCodeInfo_Annotation_Semantic extends $pb.ProtobufEnum {
|
||||||
|
/// There is no effect or the effect is indescribable.
|
||||||
|
static const GeneratedCodeInfo_Annotation_Semantic NONE = GeneratedCodeInfo_Annotation_Semantic._(0, _omitEnumNames ? '' : 'NONE');
|
||||||
|
/// The element is set or otherwise mutated.
|
||||||
|
static const GeneratedCodeInfo_Annotation_Semantic SET = GeneratedCodeInfo_Annotation_Semantic._(1, _omitEnumNames ? '' : 'SET');
|
||||||
|
/// An alias to the element is returned.
|
||||||
|
static const GeneratedCodeInfo_Annotation_Semantic ALIAS = GeneratedCodeInfo_Annotation_Semantic._(2, _omitEnumNames ? '' : 'ALIAS');
|
||||||
|
|
||||||
|
static const $core.List<GeneratedCodeInfo_Annotation_Semantic> values = <GeneratedCodeInfo_Annotation_Semantic> [
|
||||||
|
NONE,
|
||||||
|
SET,
|
||||||
|
ALIAS,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<GeneratedCodeInfo_Annotation_Semantic?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static GeneratedCodeInfo_Annotation_Semantic? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const GeneratedCodeInfo_Annotation_Semantic._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -23,8 +23,6 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// service Foo {
|
/// service Foo {
|
||||||
/// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
/// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
||||||
/// }
|
/// }
|
||||||
///
|
|
||||||
/// The JSON representation for `Empty` is empty JSON object `{}`.
|
|
||||||
class Empty extends $pb.GeneratedMessage {
|
class Empty extends $pb.GeneratedMessage {
|
||||||
factory Empty() => create();
|
factory Empty() => create();
|
||||||
|
|
||||||
|
|||||||
@@ -83,8 +83,8 @@ enum Value_Kind {
|
|||||||
|
|
||||||
/// `Value` represents a dynamically typed value which can be either
|
/// `Value` represents a dynamically typed value which can be either
|
||||||
/// null, a number, a string, a boolean, a recursive struct value, or a
|
/// null, a number, a string, a boolean, a recursive struct value, or a
|
||||||
/// list of values. A producer of value is expected to set one of that
|
/// list of values. A producer of value is expected to set one of these
|
||||||
/// variants, absence of any variant indicates an error.
|
/// variants. Absence of any variant indicates an error.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `Value` is JSON value.
|
/// The JSON representation for `Value` is JSON value.
|
||||||
class Value extends $pb.GeneratedMessage with $mixin.ValueMixin {
|
class Value extends $pb.GeneratedMessage with $mixin.ValueMixin {
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ import 'package:protobuf/protobuf.dart' as $pb;
|
|||||||
/// `NullValue` is a singleton enumeration to represent the null value for the
|
/// `NullValue` is a singleton enumeration to represent the null value for the
|
||||||
/// `Value` type union.
|
/// `Value` type union.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `NullValue` is JSON `null`.
|
/// The JSON representation for `NullValue` is JSON `null`.
|
||||||
class NullValue extends $pb.ProtobufEnum {
|
class NullValue extends $pb.ProtobufEnum {
|
||||||
/// Null value.
|
/// Null value.
|
||||||
static const NullValue NULL_VALUE = NullValue._(0, _omitEnumNames ? '' : 'NULL_VALUE');
|
static const NullValue NULL_VALUE = NullValue._(0, _omitEnumNames ? '' : 'NULL_VALUE');
|
||||||
|
|||||||
@@ -69,8 +69,15 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
/// Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
||||||
/// .setNanos((int) ((millis % 1000) * 1000000)).build();
|
/// .setNanos((int) ((millis % 1000) * 1000000)).build();
|
||||||
///
|
///
|
||||||
|
/// Example 5: Compute Timestamp from Java `Instant.now()`.
|
||||||
///
|
///
|
||||||
/// Example 5: Compute Timestamp from current time in Python.
|
/// Instant now = Instant.now();
|
||||||
|
///
|
||||||
|
/// Timestamp timestamp =
|
||||||
|
/// Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
||||||
|
/// .setNanos(now.getNano()).build();
|
||||||
|
///
|
||||||
|
/// Example 6: Compute Timestamp from current time in Python.
|
||||||
///
|
///
|
||||||
/// timestamp = Timestamp()
|
/// timestamp = Timestamp()
|
||||||
/// timestamp.GetCurrentTime()
|
/// timestamp.GetCurrentTime()
|
||||||
@@ -84,8 +91,8 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
/// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
||||||
/// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
/// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
||||||
/// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
/// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
||||||
/// is required. A proto3 JSON serializer should always use UTC (as indicated by
|
/// is required. A ProtoJSON serializer should always use UTC (as indicated by
|
||||||
/// "Z") when printing the Timestamp type and a proto3 JSON parser should be
|
/// "Z") when printing the Timestamp type and a ProtoJSON parser should be
|
||||||
/// able to accept both UTC and other timezones (as indicated by an offset).
|
/// able to accept both UTC and other timezones (as indicated by an offset).
|
||||||
///
|
///
|
||||||
/// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
/// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
||||||
@@ -99,7 +106,7 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
/// [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
||||||
/// the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
/// the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
||||||
/// the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
/// the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
||||||
/// http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
|
/// http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
||||||
/// ) to obtain a formatter capable of generating timestamps in this format.
|
/// ) to obtain a formatter capable of generating timestamps in this format.
|
||||||
class Timestamp extends $pb.GeneratedMessage with $mixin.TimestampMixin {
|
class Timestamp extends $pb.GeneratedMessage with $mixin.TimestampMixin {
|
||||||
factory Timestamp({
|
factory Timestamp({
|
||||||
@@ -140,9 +147,9 @@ class Timestamp extends $pb.GeneratedMessage with $mixin.TimestampMixin {
|
|||||||
static Timestamp getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Timestamp>(create);
|
static Timestamp getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Timestamp>(create);
|
||||||
static Timestamp? _defaultInstance;
|
static Timestamp? _defaultInstance;
|
||||||
|
|
||||||
/// Represents seconds of UTC time since Unix epoch
|
/// Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must
|
||||||
/// 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
|
/// be between -62135596800 and 253402300799 inclusive (which corresponds to
|
||||||
/// 9999-12-31T23:59:59Z inclusive.
|
/// 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z).
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$fixnum.Int64 get seconds => $_getI64(0);
|
$fixnum.Int64 get seconds => $_getI64(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
@@ -152,9 +159,10 @@ class Timestamp extends $pb.GeneratedMessage with $mixin.TimestampMixin {
|
|||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearSeconds() => $_clearField(1);
|
void clearSeconds() => $_clearField(1);
|
||||||
|
|
||||||
/// Non-negative fractions of a second at nanosecond resolution. Negative
|
/// Non-negative fractions of a second at nanosecond resolution. This field is
|
||||||
/// second values with fractions must still have non-negative nanos values
|
/// the nanosecond portion of the duration, not an alternative to seconds.
|
||||||
/// that count forward in time. Must be from 0 to 999,999,999
|
/// Negative second values with fractions must still have non-negative nanos
|
||||||
|
/// values that count forward in time. Must be between 0 and 999,999,999
|
||||||
/// inclusive.
|
/// inclusive.
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$core.int get nanos => $_getIZ(1);
|
$core.int get nanos => $_getIZ(1);
|
||||||
|
|||||||
@@ -23,6 +23,11 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
export 'type.pbenum.dart';
|
export 'type.pbenum.dart';
|
||||||
|
|
||||||
/// A protocol buffer message type.
|
/// A protocol buffer message type.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to DescriptorProto are strongly
|
||||||
|
/// discouraged. This message does not reliability preserve all information
|
||||||
|
/// necessary to model the schema and preserve semantics. Instead make use of
|
||||||
|
/// FileDescriptorSet which preserves the necessary information.
|
||||||
class Type extends $pb.GeneratedMessage {
|
class Type extends $pb.GeneratedMessage {
|
||||||
factory Type({
|
factory Type({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
@@ -31,6 +36,7 @@ class Type extends $pb.GeneratedMessage {
|
|||||||
$core.Iterable<Option>? options,
|
$core.Iterable<Option>? options,
|
||||||
$0.SourceContext? sourceContext,
|
$0.SourceContext? sourceContext,
|
||||||
Syntax? syntax,
|
Syntax? syntax,
|
||||||
|
$core.String? edition,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (name != null) result.name = name;
|
if (name != null) result.name = name;
|
||||||
@@ -39,6 +45,7 @@ class Type extends $pb.GeneratedMessage {
|
|||||||
if (options != null) result.options.addAll(options);
|
if (options != null) result.options.addAll(options);
|
||||||
if (sourceContext != null) result.sourceContext = sourceContext;
|
if (sourceContext != null) result.sourceContext = sourceContext;
|
||||||
if (syntax != null) result.syntax = syntax;
|
if (syntax != null) result.syntax = syntax;
|
||||||
|
if (edition != null) result.edition = edition;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -54,6 +61,7 @@ class Type extends $pb.GeneratedMessage {
|
|||||||
..pc<Option>(4, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: Option.create)
|
..pc<Option>(4, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: Option.create)
|
||||||
..aOM<$0.SourceContext>(5, _omitFieldNames ? '' : 'sourceContext', subBuilder: $0.SourceContext.create)
|
..aOM<$0.SourceContext>(5, _omitFieldNames ? '' : 'sourceContext', subBuilder: $0.SourceContext.create)
|
||||||
..e<Syntax>(6, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: Syntax.SYNTAX_PROTO2, valueOf: Syntax.valueOf, enumValues: Syntax.values)
|
..e<Syntax>(6, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: Syntax.SYNTAX_PROTO2, valueOf: Syntax.valueOf, enumValues: Syntax.values)
|
||||||
|
..aOS(7, _omitFieldNames ? '' : 'edition')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -117,9 +125,24 @@ class Type extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasSyntax() => $_has(5);
|
$core.bool hasSyntax() => $_has(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
void clearSyntax() => $_clearField(6);
|
void clearSyntax() => $_clearField(6);
|
||||||
|
|
||||||
|
/// The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.String get edition => $_getSZ(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
set edition($core.String value) => $_setString(6, value);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.bool hasEdition() => $_has(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
void clearEdition() => $_clearField(7);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A single field of a message type.
|
/// A single field of a message type.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to FieldDescriptorProto are
|
||||||
|
/// strongly discouraged. This message does not reliability preserve all
|
||||||
|
/// information necessary to model the schema and preserve semantics. Instead
|
||||||
|
/// make use of FileDescriptorSet which preserves the necessary information.
|
||||||
class Field extends $pb.GeneratedMessage {
|
class Field extends $pb.GeneratedMessage {
|
||||||
factory Field({
|
factory Field({
|
||||||
Field_Kind? kind,
|
Field_Kind? kind,
|
||||||
@@ -281,6 +304,11 @@ class Field extends $pb.GeneratedMessage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Enum type definition.
|
/// Enum type definition.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to EnumDescriptorProto are
|
||||||
|
/// strongly discouraged. This message does not reliability preserve all
|
||||||
|
/// information necessary to model the schema and preserve semantics. Instead
|
||||||
|
/// make use of FileDescriptorSet which preserves the necessary information.
|
||||||
class Enum extends $pb.GeneratedMessage {
|
class Enum extends $pb.GeneratedMessage {
|
||||||
factory Enum({
|
factory Enum({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
@@ -288,6 +316,7 @@ class Enum extends $pb.GeneratedMessage {
|
|||||||
$core.Iterable<Option>? options,
|
$core.Iterable<Option>? options,
|
||||||
$0.SourceContext? sourceContext,
|
$0.SourceContext? sourceContext,
|
||||||
Syntax? syntax,
|
Syntax? syntax,
|
||||||
|
$core.String? edition,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (name != null) result.name = name;
|
if (name != null) result.name = name;
|
||||||
@@ -295,6 +324,7 @@ class Enum extends $pb.GeneratedMessage {
|
|||||||
if (options != null) result.options.addAll(options);
|
if (options != null) result.options.addAll(options);
|
||||||
if (sourceContext != null) result.sourceContext = sourceContext;
|
if (sourceContext != null) result.sourceContext = sourceContext;
|
||||||
if (syntax != null) result.syntax = syntax;
|
if (syntax != null) result.syntax = syntax;
|
||||||
|
if (edition != null) result.edition = edition;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -309,6 +339,7 @@ class Enum extends $pb.GeneratedMessage {
|
|||||||
..pc<Option>(3, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: Option.create)
|
..pc<Option>(3, _omitFieldNames ? '' : 'options', $pb.PbFieldType.PM, subBuilder: Option.create)
|
||||||
..aOM<$0.SourceContext>(4, _omitFieldNames ? '' : 'sourceContext', subBuilder: $0.SourceContext.create)
|
..aOM<$0.SourceContext>(4, _omitFieldNames ? '' : 'sourceContext', subBuilder: $0.SourceContext.create)
|
||||||
..e<Syntax>(5, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: Syntax.SYNTAX_PROTO2, valueOf: Syntax.valueOf, enumValues: Syntax.values)
|
..e<Syntax>(5, _omitFieldNames ? '' : 'syntax', $pb.PbFieldType.OE, defaultOrMaker: Syntax.SYNTAX_PROTO2, valueOf: Syntax.valueOf, enumValues: Syntax.values)
|
||||||
|
..aOS(6, _omitFieldNames ? '' : 'edition')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -368,9 +399,24 @@ class Enum extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasSyntax() => $_has(4);
|
$core.bool hasSyntax() => $_has(4);
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
void clearSyntax() => $_clearField(5);
|
void clearSyntax() => $_clearField(5);
|
||||||
|
|
||||||
|
/// The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.String get edition => $_getSZ(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
set edition($core.String value) => $_setString(5, value);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.bool hasEdition() => $_has(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
void clearEdition() => $_clearField(6);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Enum value definition.
|
/// Enum value definition.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to EnumValueDescriptorProto are
|
||||||
|
/// strongly discouraged. This message does not reliability preserve all
|
||||||
|
/// information necessary to model the schema and preserve semantics. Instead
|
||||||
|
/// make use of FileDescriptorSet which preserves the necessary information.
|
||||||
class EnumValue extends $pb.GeneratedMessage {
|
class EnumValue extends $pb.GeneratedMessage {
|
||||||
factory EnumValue({
|
factory EnumValue({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
@@ -440,6 +486,10 @@ class EnumValue extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
/// A protocol buffer option, which can be attached to a message, field,
|
/// A protocol buffer option, which can be attached to a message, field,
|
||||||
/// enumeration, etc.
|
/// enumeration, etc.
|
||||||
|
///
|
||||||
|
/// New usages of this message as an alternative to FileOptions, MessageOptions,
|
||||||
|
/// FieldOptions, EnumOptions, EnumValueOptions, ServiceOptions, or MethodOptions
|
||||||
|
/// are strongly discouraged.
|
||||||
class Option extends $pb.GeneratedMessage {
|
class Option extends $pb.GeneratedMessage {
|
||||||
factory Option({
|
factory Option({
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
|
|||||||
@@ -20,13 +20,16 @@ class Syntax extends $pb.ProtobufEnum {
|
|||||||
static const Syntax SYNTAX_PROTO2 = Syntax._(0, _omitEnumNames ? '' : 'SYNTAX_PROTO2');
|
static const Syntax SYNTAX_PROTO2 = Syntax._(0, _omitEnumNames ? '' : 'SYNTAX_PROTO2');
|
||||||
/// Syntax `proto3`.
|
/// Syntax `proto3`.
|
||||||
static const Syntax SYNTAX_PROTO3 = Syntax._(1, _omitEnumNames ? '' : 'SYNTAX_PROTO3');
|
static const Syntax SYNTAX_PROTO3 = Syntax._(1, _omitEnumNames ? '' : 'SYNTAX_PROTO3');
|
||||||
|
/// Syntax `editions`.
|
||||||
|
static const Syntax SYNTAX_EDITIONS = Syntax._(2, _omitEnumNames ? '' : 'SYNTAX_EDITIONS');
|
||||||
|
|
||||||
static const $core.List<Syntax> values = <Syntax> [
|
static const $core.List<Syntax> values = <Syntax> [
|
||||||
SYNTAX_PROTO2,
|
SYNTAX_PROTO2,
|
||||||
SYNTAX_PROTO3,
|
SYNTAX_PROTO3,
|
||||||
|
SYNTAX_EDITIONS,
|
||||||
];
|
];
|
||||||
|
|
||||||
static final $core.List<Syntax?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 1);
|
static final $core.List<Syntax?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
static Syntax? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
static Syntax? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
const Syntax._(super.value, super.name);
|
const Syntax._(super.value, super.name);
|
||||||
|
|||||||
@@ -20,12 +20,14 @@ const Syntax$json = {
|
|||||||
'2': [
|
'2': [
|
||||||
{'1': 'SYNTAX_PROTO2', '2': 0},
|
{'1': 'SYNTAX_PROTO2', '2': 0},
|
||||||
{'1': 'SYNTAX_PROTO3', '2': 1},
|
{'1': 'SYNTAX_PROTO3', '2': 1},
|
||||||
|
{'1': 'SYNTAX_EDITIONS', '2': 2},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `Syntax`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
/// Descriptor for `Syntax`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||||
final $typed_data.Uint8List syntaxDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List syntaxDescriptor = $convert.base64Decode(
|
||||||
'CgZTeW50YXgSEQoNU1lOVEFYX1BST1RPMhAAEhEKDVNZTlRBWF9QUk9UTzMQAQ==');
|
'CgZTeW50YXgSEQoNU1lOVEFYX1BST1RPMhAAEhEKDVNZTlRBWF9QUk9UTzMQARITCg9TWU5UQV'
|
||||||
|
'hfRURJVElPTlMQAg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use typeDescriptor instead')
|
@$core.Deprecated('Use typeDescriptor instead')
|
||||||
const Type$json = {
|
const Type$json = {
|
||||||
@@ -37,6 +39,7 @@ const Type$json = {
|
|||||||
{'1': 'options', '3': 4, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
{'1': 'options', '3': 4, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
||||||
{'1': 'source_context', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
{'1': 'source_context', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
||||||
{'1': 'syntax', '3': 6, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
{'1': 'syntax', '3': 6, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
||||||
|
{'1': 'edition', '3': 7, '4': 1, '5': 9, '10': 'edition'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -46,7 +49,8 @@ final $typed_data.Uint8List typeDescriptor = $convert.base64Decode(
|
|||||||
'RvYnVmLkZpZWxkUgZmaWVsZHMSFgoGb25lb2ZzGAMgAygJUgZvbmVvZnMSMQoHb3B0aW9ucxgE'
|
'RvYnVmLkZpZWxkUgZmaWVsZHMSFgoGb25lb2ZzGAMgAygJUgZvbmVvZnMSMQoHb3B0aW9ucxgE'
|
||||||
'IAMoCzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb25SB29wdGlvbnMSRQoOc291cmNlX2NvbnRleH'
|
'IAMoCzIXLmdvb2dsZS5wcm90b2J1Zi5PcHRpb25SB29wdGlvbnMSRQoOc291cmNlX2NvbnRleH'
|
||||||
'QYBSABKAsyHi5nb29nbGUucHJvdG9idWYuU291cmNlQ29udGV4dFINc291cmNlQ29udGV4dBIv'
|
'QYBSABKAsyHi5nb29nbGUucHJvdG9idWYuU291cmNlQ29udGV4dFINc291cmNlQ29udGV4dBIv'
|
||||||
'CgZzeW50YXgYBiABKA4yFy5nb29nbGUucHJvdG9idWYuU3ludGF4UgZzeW50YXg=');
|
'CgZzeW50YXgYBiABKA4yFy5nb29nbGUucHJvdG9idWYuU3ludGF4UgZzeW50YXgSGAoHZWRpdG'
|
||||||
|
'lvbhgHIAEoCVIHZWRpdGlvbg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use fieldDescriptor instead')
|
@$core.Deprecated('Use fieldDescriptor instead')
|
||||||
const Field$json = {
|
const Field$json = {
|
||||||
@@ -130,6 +134,7 @@ const Enum$json = {
|
|||||||
{'1': 'options', '3': 3, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
{'1': 'options', '3': 3, '4': 3, '5': 11, '6': '.google.protobuf.Option', '10': 'options'},
|
||||||
{'1': 'source_context', '3': 4, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
{'1': 'source_context', '3': 4, '4': 1, '5': 11, '6': '.google.protobuf.SourceContext', '10': 'sourceContext'},
|
||||||
{'1': 'syntax', '3': 5, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
{'1': 'syntax', '3': 5, '4': 1, '5': 14, '6': '.google.protobuf.Syntax', '10': 'syntax'},
|
||||||
|
{'1': 'edition', '3': 6, '4': 1, '5': 9, '10': 'edition'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -139,7 +144,8 @@ final $typed_data.Uint8List enumDescriptor = $convert.base64Decode(
|
|||||||
'Byb3RvYnVmLkVudW1WYWx1ZVIJZW51bXZhbHVlEjEKB29wdGlvbnMYAyADKAsyFy5nb29nbGUu'
|
'Byb3RvYnVmLkVudW1WYWx1ZVIJZW51bXZhbHVlEjEKB29wdGlvbnMYAyADKAsyFy5nb29nbGUu'
|
||||||
'cHJvdG9idWYuT3B0aW9uUgdvcHRpb25zEkUKDnNvdXJjZV9jb250ZXh0GAQgASgLMh4uZ29vZ2'
|
'cHJvdG9idWYuT3B0aW9uUgdvcHRpb25zEkUKDnNvdXJjZV9jb250ZXh0GAQgASgLMh4uZ29vZ2'
|
||||||
'xlLnByb3RvYnVmLlNvdXJjZUNvbnRleHRSDXNvdXJjZUNvbnRleHQSLwoGc3ludGF4GAUgASgO'
|
'xlLnByb3RvYnVmLlNvdXJjZUNvbnRleHRSDXNvdXJjZUNvbnRleHQSLwoGc3ludGF4GAUgASgO'
|
||||||
'MhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheFIGc3ludGF4');
|
'MhcuZ29vZ2xlLnByb3RvYnVmLlN5bnRheFIGc3ludGF4EhgKB2VkaXRpb24YBiABKAlSB2VkaX'
|
||||||
|
'Rpb24=');
|
||||||
|
|
||||||
@$core.Deprecated('Use enumValueDescriptor instead')
|
@$core.Deprecated('Use enumValueDescriptor instead')
|
||||||
const EnumValue$json = {
|
const EnumValue$json = {
|
||||||
|
|||||||
@@ -22,6 +22,9 @@ export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|||||||
/// Wrapper message for `double`.
|
/// Wrapper message for `double`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `DoubleValue` is JSON number.
|
/// The JSON representation for `DoubleValue` is JSON number.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
||||||
factory DoubleValue({
|
factory DoubleValue({
|
||||||
$core.double? value,
|
$core.double? value,
|
||||||
@@ -72,6 +75,9 @@ class DoubleValue extends $pb.GeneratedMessage with $mixin.DoubleValueMixin {
|
|||||||
/// Wrapper message for `float`.
|
/// Wrapper message for `float`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `FloatValue` is JSON number.
|
/// The JSON representation for `FloatValue` is JSON number.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
||||||
factory FloatValue({
|
factory FloatValue({
|
||||||
$core.double? value,
|
$core.double? value,
|
||||||
@@ -122,6 +128,9 @@ class FloatValue extends $pb.GeneratedMessage with $mixin.FloatValueMixin {
|
|||||||
/// Wrapper message for `int64`.
|
/// Wrapper message for `int64`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `Int64Value` is JSON string.
|
/// The JSON representation for `Int64Value` is JSON string.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
||||||
factory Int64Value({
|
factory Int64Value({
|
||||||
$fixnum.Int64? value,
|
$fixnum.Int64? value,
|
||||||
@@ -172,6 +181,9 @@ class Int64Value extends $pb.GeneratedMessage with $mixin.Int64ValueMixin {
|
|||||||
/// Wrapper message for `uint64`.
|
/// Wrapper message for `uint64`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `UInt64Value` is JSON string.
|
/// The JSON representation for `UInt64Value` is JSON string.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
||||||
factory UInt64Value({
|
factory UInt64Value({
|
||||||
$fixnum.Int64? value,
|
$fixnum.Int64? value,
|
||||||
@@ -222,6 +234,9 @@ class UInt64Value extends $pb.GeneratedMessage with $mixin.UInt64ValueMixin {
|
|||||||
/// Wrapper message for `int32`.
|
/// Wrapper message for `int32`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `Int32Value` is JSON number.
|
/// The JSON representation for `Int32Value` is JSON number.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
||||||
factory Int32Value({
|
factory Int32Value({
|
||||||
$core.int? value,
|
$core.int? value,
|
||||||
@@ -272,6 +287,9 @@ class Int32Value extends $pb.GeneratedMessage with $mixin.Int32ValueMixin {
|
|||||||
/// Wrapper message for `uint32`.
|
/// Wrapper message for `uint32`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `UInt32Value` is JSON number.
|
/// The JSON representation for `UInt32Value` is JSON number.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
||||||
factory UInt32Value({
|
factory UInt32Value({
|
||||||
$core.int? value,
|
$core.int? value,
|
||||||
@@ -322,6 +340,9 @@ class UInt32Value extends $pb.GeneratedMessage with $mixin.UInt32ValueMixin {
|
|||||||
/// Wrapper message for `bool`.
|
/// Wrapper message for `bool`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
/// The JSON representation for `BoolValue` is JSON `true` and `false`.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
||||||
factory BoolValue({
|
factory BoolValue({
|
||||||
$core.bool? value,
|
$core.bool? value,
|
||||||
@@ -372,6 +393,9 @@ class BoolValue extends $pb.GeneratedMessage with $mixin.BoolValueMixin {
|
|||||||
/// Wrapper message for `string`.
|
/// Wrapper message for `string`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `StringValue` is JSON string.
|
/// The JSON representation for `StringValue` is JSON string.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
||||||
factory StringValue({
|
factory StringValue({
|
||||||
$core.String? value,
|
$core.String? value,
|
||||||
@@ -422,6 +446,9 @@ class StringValue extends $pb.GeneratedMessage with $mixin.StringValueMixin {
|
|||||||
/// Wrapper message for `bytes`.
|
/// Wrapper message for `bytes`.
|
||||||
///
|
///
|
||||||
/// The JSON representation for `BytesValue` is JSON string.
|
/// The JSON representation for `BytesValue` is JSON string.
|
||||||
|
///
|
||||||
|
/// Not recommended for use in new APIs, but still useful for legacy APIs and
|
||||||
|
/// has no plan to be removed.
|
||||||
class BytesValue extends $pb.GeneratedMessage with $mixin.BytesValueMixin {
|
class BytesValue extends $pb.GeneratedMessage with $mixin.BytesValueMixin {
|
||||||
factory BytesValue({
|
factory BytesValue({
|
||||||
$core.List<$core.int>? value,
|
$core.List<$core.int>? value,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// This is a generated file - do not edit.
|
// This is a generated file - do not edit.
|
||||||
//
|
//
|
||||||
// Generated from validate.proto.
|
// Generated from n1validate.proto.
|
||||||
|
|
||||||
// @dart = 3.3
|
// @dart = 3.3
|
||||||
|
|
||||||
@@ -17,11 +17,11 @@ import 'package:protobuf/protobuf.dart' as $pb;
|
|||||||
|
|
||||||
import 'google/protobuf/duration.pb.dart' as $0;
|
import 'google/protobuf/duration.pb.dart' as $0;
|
||||||
import 'google/protobuf/timestamp.pb.dart' as $1;
|
import 'google/protobuf/timestamp.pb.dart' as $1;
|
||||||
import 'validate.pbenum.dart';
|
import 'n1validate.pbenum.dart';
|
||||||
|
|
||||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||||
|
|
||||||
export 'validate.pbenum.dart';
|
export 'n1validate.pbenum.dart';
|
||||||
|
|
||||||
enum FieldRules_Type {
|
enum FieldRules_Type {
|
||||||
float,
|
float,
|
||||||
@@ -130,7 +130,7 @@ class FieldRules extends $pb.GeneratedMessage {
|
|||||||
22 : FieldRules_Type.timestamp,
|
22 : FieldRules_Type.timestamp,
|
||||||
0 : FieldRules_Type.notSet
|
0 : FieldRules_Type.notSet
|
||||||
};
|
};
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FieldRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FieldRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..oo(0, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22])
|
..oo(0, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22])
|
||||||
..aOM<FloatRules>(1, _omitFieldNames ? '' : 'float', subBuilder: FloatRules.create)
|
..aOM<FloatRules>(1, _omitFieldNames ? '' : 'float', subBuilder: FloatRules.create)
|
||||||
..aOM<DoubleRules>(2, _omitFieldNames ? '' : 'double', subBuilder: DoubleRules.create)
|
..aOM<DoubleRules>(2, _omitFieldNames ? '' : 'double', subBuilder: DoubleRules.create)
|
||||||
@@ -454,7 +454,7 @@ class FloatRules extends $pb.GeneratedMessage {
|
|||||||
factory FloatRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory FloatRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory FloatRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory FloatRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FloatRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FloatRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.double>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF)
|
..a<$core.double>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF)
|
||||||
..a<$core.double>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF)
|
..a<$core.double>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF)
|
||||||
..a<$core.double>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF)
|
..a<$core.double>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF)
|
||||||
@@ -603,7 +603,7 @@ class DoubleRules extends $pb.GeneratedMessage {
|
|||||||
factory DoubleRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory DoubleRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory DoubleRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory DoubleRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DoubleRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DoubleRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.double>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OD)
|
..a<$core.double>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OD)
|
||||||
..a<$core.double>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OD)
|
..a<$core.double>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OD)
|
||||||
..a<$core.double>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OD)
|
..a<$core.double>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OD)
|
||||||
@@ -752,7 +752,7 @@ class Int32Rules extends $pb.GeneratedMessage {
|
|||||||
factory Int32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory Int32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory Int32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory Int32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Int32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Int32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.O3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.O3)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.O3)
|
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.O3)
|
||||||
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.O3)
|
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.O3)
|
||||||
@@ -901,7 +901,7 @@ class Int64Rules extends $pb.GeneratedMessage {
|
|||||||
factory Int64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory Int64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory Int64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory Int64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Int64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Int64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aInt64(1, _omitFieldNames ? '' : 'const')
|
..aInt64(1, _omitFieldNames ? '' : 'const')
|
||||||
..aInt64(2, _omitFieldNames ? '' : 'lt')
|
..aInt64(2, _omitFieldNames ? '' : 'lt')
|
||||||
..aInt64(3, _omitFieldNames ? '' : 'lte')
|
..aInt64(3, _omitFieldNames ? '' : 'lte')
|
||||||
@@ -1050,7 +1050,7 @@ class UInt32Rules extends $pb.GeneratedMessage {
|
|||||||
factory UInt32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory UInt32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory UInt32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory UInt32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UInt32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UInt32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OU3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OU3)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OU3)
|
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OU3)
|
||||||
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OU3)
|
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OU3)
|
||||||
@@ -1199,7 +1199,7 @@ class UInt64Rules extends $pb.GeneratedMessage {
|
|||||||
factory UInt64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory UInt64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory UInt64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory UInt64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UInt64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UInt64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -1348,7 +1348,7 @@ class SInt32Rules extends $pb.GeneratedMessage {
|
|||||||
factory SInt32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SInt32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory SInt32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SInt32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SInt32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SInt32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OS3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OS3)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OS3)
|
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OS3)
|
||||||
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OS3)
|
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OS3)
|
||||||
@@ -1497,7 +1497,7 @@ class SInt64Rules extends $pb.GeneratedMessage {
|
|||||||
factory SInt64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SInt64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory SInt64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SInt64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SInt64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SInt64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OS6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -1646,7 +1646,7 @@ class Fixed32Rules extends $pb.GeneratedMessage {
|
|||||||
factory Fixed32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory Fixed32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory Fixed32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory Fixed32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Fixed32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Fixed32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF3)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF3)
|
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF3)
|
||||||
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF3)
|
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF3)
|
||||||
@@ -1795,7 +1795,7 @@ class Fixed64Rules extends $pb.GeneratedMessage {
|
|||||||
factory Fixed64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory Fixed64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory Fixed64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory Fixed64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Fixed64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Fixed64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -1944,7 +1944,7 @@ class SFixed32Rules extends $pb.GeneratedMessage {
|
|||||||
factory SFixed32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SFixed32Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory SFixed32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SFixed32Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SFixed32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SFixed32Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OSF3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OSF3)
|
||||||
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OSF3)
|
..a<$core.int>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OSF3)
|
||||||
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OSF3)
|
..a<$core.int>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OSF3)
|
||||||
@@ -2093,7 +2093,7 @@ class SFixed64Rules extends $pb.GeneratedMessage {
|
|||||||
factory SFixed64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SFixed64Rules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory SFixed64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SFixed64Rules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SFixed64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SFixed64Rules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'lt', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'lte', $pb.PbFieldType.OSF6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -2228,7 +2228,7 @@ class BoolRules extends $pb.GeneratedMessage {
|
|||||||
factory BoolRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory BoolRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory BoolRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory BoolRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'BoolRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'BoolRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'const')
|
..aOB(1, _omitFieldNames ? '' : 'const')
|
||||||
..aOB(2, _omitFieldNames ? '' : 'unauthorized')
|
..aOB(2, _omitFieldNames ? '' : 'unauthorized')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
@@ -2390,7 +2390,7 @@ class StringRules extends $pb.GeneratedMessage {
|
|||||||
33 : StringRules_WellKnown.countryCodeIso3166Alpha2,
|
33 : StringRules_WellKnown.countryCodeIso3166Alpha2,
|
||||||
0 : StringRules_WellKnown.notSet
|
0 : StringRules_WellKnown.notSet
|
||||||
};
|
};
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StringRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StringRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..oo(0, [12, 13, 14, 15, 16, 17, 18, 21, 22, 24, 26, 27, 28, 31, 32, 33])
|
..oo(0, [12, 13, 14, 15, 16, 17, 18, 21, 22, 24, 26, 27, 28, 31, 32, 33])
|
||||||
..aOS(1, _omitFieldNames ? '' : 'const')
|
..aOS(1, _omitFieldNames ? '' : 'const')
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'minLen', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'minLen', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -2859,7 +2859,7 @@ class BytesRules extends $pb.GeneratedMessage {
|
|||||||
12 : BytesRules_WellKnown.ipv6,
|
12 : BytesRules_WellKnown.ipv6,
|
||||||
0 : BytesRules_WellKnown.notSet
|
0 : BytesRules_WellKnown.notSet
|
||||||
};
|
};
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'BytesRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'BytesRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..oo(0, [10, 11, 12])
|
..oo(0, [10, 11, 12])
|
||||||
..a<$core.List<$core.int>>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OY)
|
..a<$core.List<$core.int>>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.OY)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'minLen', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'minLen', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
@@ -3065,7 +3065,7 @@ class EnumRules extends $pb.GeneratedMessage {
|
|||||||
factory EnumRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory EnumRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory EnumRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory EnumRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.O3)
|
..a<$core.int>(1, _omitFieldNames ? '' : 'const', $pb.PbFieldType.O3)
|
||||||
..aOB(2, _omitFieldNames ? '' : 'definedOnly')
|
..aOB(2, _omitFieldNames ? '' : 'definedOnly')
|
||||||
..p<$core.int>(3, _omitFieldNames ? '' : 'in', $pb.PbFieldType.P3)
|
..p<$core.int>(3, _omitFieldNames ? '' : 'in', $pb.PbFieldType.P3)
|
||||||
@@ -3165,7 +3165,7 @@ class MessageRules extends $pb.GeneratedMessage {
|
|||||||
factory MessageRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory MessageRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory MessageRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory MessageRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MessageRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MessageRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'skip')
|
..aOB(1, _omitFieldNames ? '' : 'skip')
|
||||||
..aOB(2, _omitFieldNames ? '' : 'required')
|
..aOB(2, _omitFieldNames ? '' : 'required')
|
||||||
..aOB(3, _omitFieldNames ? '' : 'unauthorized')
|
..aOB(3, _omitFieldNames ? '' : 'unauthorized')
|
||||||
@@ -3248,7 +3248,7 @@ class RepeatedRules extends $pb.GeneratedMessage {
|
|||||||
factory RepeatedRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory RepeatedRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory RepeatedRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory RepeatedRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RepeatedRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RepeatedRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'minItems', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'minItems', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'maxItems', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'maxItems', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..aOB(3, _omitFieldNames ? '' : 'unique')
|
..aOB(3, _omitFieldNames ? '' : 'unique')
|
||||||
@@ -3385,7 +3385,7 @@ class MapRules extends $pb.GeneratedMessage {
|
|||||||
factory MapRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory MapRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory MapRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory MapRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MapRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MapRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'minPairs', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(1, _omitFieldNames ? '' : 'minPairs', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'maxPairs', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'maxPairs', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
|
||||||
..aOB(3, _omitFieldNames ? '' : 'noSparse')
|
..aOB(3, _omitFieldNames ? '' : 'noSparse')
|
||||||
@@ -3503,7 +3503,7 @@ class AnyRules extends $pb.GeneratedMessage {
|
|||||||
factory AnyRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory AnyRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory AnyRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory AnyRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AnyRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AnyRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'required')
|
..aOB(1, _omitFieldNames ? '' : 'required')
|
||||||
..pPS(2, _omitFieldNames ? '' : 'in')
|
..pPS(2, _omitFieldNames ? '' : 'in')
|
||||||
..pPS(3, _omitFieldNames ? '' : 'notIn')
|
..pPS(3, _omitFieldNames ? '' : 'notIn')
|
||||||
@@ -3578,7 +3578,7 @@ class DurationRules extends $pb.GeneratedMessage {
|
|||||||
factory DurationRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory DurationRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory DurationRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory DurationRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DurationRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DurationRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'required')
|
..aOB(1, _omitFieldNames ? '' : 'required')
|
||||||
..aOM<$0.Duration>(2, _omitFieldNames ? '' : 'const', subBuilder: $0.Duration.create)
|
..aOM<$0.Duration>(2, _omitFieldNames ? '' : 'const', subBuilder: $0.Duration.create)
|
||||||
..aOM<$0.Duration>(3, _omitFieldNames ? '' : 'lt', subBuilder: $0.Duration.create)
|
..aOM<$0.Duration>(3, _omitFieldNames ? '' : 'lt', subBuilder: $0.Duration.create)
|
||||||
@@ -3724,7 +3724,7 @@ class TimestampRules extends $pb.GeneratedMessage {
|
|||||||
factory TimestampRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory TimestampRules.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory TimestampRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory TimestampRules.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TimestampRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'validate'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TimestampRules', package: const $pb.PackageName(_omitMessageNames ? '' : 'n1validate'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'required')
|
..aOB(1, _omitFieldNames ? '' : 'required')
|
||||||
..aOM<$1.Timestamp>(2, _omitFieldNames ? '' : 'const', subBuilder: $1.Timestamp.create)
|
..aOM<$1.Timestamp>(2, _omitFieldNames ? '' : 'const', subBuilder: $1.Timestamp.create)
|
||||||
..aOM<$1.Timestamp>(3, _omitFieldNames ? '' : 'lt', subBuilder: $1.Timestamp.create)
|
..aOM<$1.Timestamp>(3, _omitFieldNames ? '' : 'lt', subBuilder: $1.Timestamp.create)
|
||||||
@@ -3865,11 +3865,11 @@ class TimestampRules extends $pb.GeneratedMessage {
|
|||||||
$0.Duration ensureWithin() => $_ensure(8);
|
$0.Duration ensureWithin() => $_ensure(8);
|
||||||
}
|
}
|
||||||
|
|
||||||
class Validate {
|
class N1validate {
|
||||||
static final disabled = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'disabled', 1071, $pb.PbFieldType.OB);
|
static final disabled = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'disabled', 2071, $pb.PbFieldType.OB);
|
||||||
static final ignored = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'ignored', 1072, $pb.PbFieldType.OB);
|
static final ignored = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.MessageOptions', _omitFieldNames ? '' : 'ignored', 2072, $pb.PbFieldType.OB);
|
||||||
static final required = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.OneofOptions', _omitFieldNames ? '' : 'required', 1071, $pb.PbFieldType.OB);
|
static final required = $pb.Extension<$core.bool>(_omitMessageNames ? '' : 'google.protobuf.OneofOptions', _omitFieldNames ? '' : 'required', 2071, $pb.PbFieldType.OB);
|
||||||
static final rules = $pb.Extension<FieldRules>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'rules', 1071, $pb.PbFieldType.OM, defaultOrMaker: FieldRules.getDefault, subBuilder: FieldRules.create);
|
static final rules = $pb.Extension<FieldRules>(_omitMessageNames ? '' : 'google.protobuf.FieldOptions', _omitFieldNames ? '' : 'rules', 2071, $pb.PbFieldType.OM, defaultOrMaker: FieldRules.getDefault, subBuilder: FieldRules.create);
|
||||||
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
static void registerAllExtensions($pb.ExtensionRegistry registry) {
|
||||||
registry.add(disabled);
|
registry.add(disabled);
|
||||||
registry.add(ignored);
|
registry.add(ignored);
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// This is a generated file - do not edit.
|
// This is a generated file - do not edit.
|
||||||
//
|
//
|
||||||
// Generated from validate.proto.
|
// Generated from n1validate.proto.
|
||||||
|
|
||||||
// @dart = 3.3
|
// @dart = 3.3
|
||||||
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// This is a generated file - do not edit.
|
// This is a generated file - do not edit.
|
||||||
//
|
//
|
||||||
// Generated from validate.proto.
|
// Generated from n1validate.proto.
|
||||||
|
|
||||||
// @dart = 3.3
|
// @dart = 3.3
|
||||||
|
|
||||||
@@ -33,28 +33,28 @@ final $typed_data.Uint8List knownRegexDescriptor = $convert.base64Decode(
|
|||||||
const FieldRules$json = {
|
const FieldRules$json = {
|
||||||
'1': 'FieldRules',
|
'1': 'FieldRules',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'message', '3': 17, '4': 1, '5': 11, '6': '.validate.MessageRules', '10': 'message'},
|
{'1': 'message', '3': 17, '4': 1, '5': 11, '6': '.n1validate.MessageRules', '10': 'message'},
|
||||||
{'1': 'float', '3': 1, '4': 1, '5': 11, '6': '.validate.FloatRules', '9': 0, '10': 'float'},
|
{'1': 'float', '3': 1, '4': 1, '5': 11, '6': '.n1validate.FloatRules', '9': 0, '10': 'float'},
|
||||||
{'1': 'double', '3': 2, '4': 1, '5': 11, '6': '.validate.DoubleRules', '9': 0, '10': 'double'},
|
{'1': 'double', '3': 2, '4': 1, '5': 11, '6': '.n1validate.DoubleRules', '9': 0, '10': 'double'},
|
||||||
{'1': 'int32', '3': 3, '4': 1, '5': 11, '6': '.validate.Int32Rules', '9': 0, '10': 'int32'},
|
{'1': 'int32', '3': 3, '4': 1, '5': 11, '6': '.n1validate.Int32Rules', '9': 0, '10': 'int32'},
|
||||||
{'1': 'int64', '3': 4, '4': 1, '5': 11, '6': '.validate.Int64Rules', '9': 0, '10': 'int64'},
|
{'1': 'int64', '3': 4, '4': 1, '5': 11, '6': '.n1validate.Int64Rules', '9': 0, '10': 'int64'},
|
||||||
{'1': 'uint32', '3': 5, '4': 1, '5': 11, '6': '.validate.UInt32Rules', '9': 0, '10': 'uint32'},
|
{'1': 'uint32', '3': 5, '4': 1, '5': 11, '6': '.n1validate.UInt32Rules', '9': 0, '10': 'uint32'},
|
||||||
{'1': 'uint64', '3': 6, '4': 1, '5': 11, '6': '.validate.UInt64Rules', '9': 0, '10': 'uint64'},
|
{'1': 'uint64', '3': 6, '4': 1, '5': 11, '6': '.n1validate.UInt64Rules', '9': 0, '10': 'uint64'},
|
||||||
{'1': 'sint32', '3': 7, '4': 1, '5': 11, '6': '.validate.SInt32Rules', '9': 0, '10': 'sint32'},
|
{'1': 'sint32', '3': 7, '4': 1, '5': 11, '6': '.n1validate.SInt32Rules', '9': 0, '10': 'sint32'},
|
||||||
{'1': 'sint64', '3': 8, '4': 1, '5': 11, '6': '.validate.SInt64Rules', '9': 0, '10': 'sint64'},
|
{'1': 'sint64', '3': 8, '4': 1, '5': 11, '6': '.n1validate.SInt64Rules', '9': 0, '10': 'sint64'},
|
||||||
{'1': 'fixed32', '3': 9, '4': 1, '5': 11, '6': '.validate.Fixed32Rules', '9': 0, '10': 'fixed32'},
|
{'1': 'fixed32', '3': 9, '4': 1, '5': 11, '6': '.n1validate.Fixed32Rules', '9': 0, '10': 'fixed32'},
|
||||||
{'1': 'fixed64', '3': 10, '4': 1, '5': 11, '6': '.validate.Fixed64Rules', '9': 0, '10': 'fixed64'},
|
{'1': 'fixed64', '3': 10, '4': 1, '5': 11, '6': '.n1validate.Fixed64Rules', '9': 0, '10': 'fixed64'},
|
||||||
{'1': 'sfixed32', '3': 11, '4': 1, '5': 11, '6': '.validate.SFixed32Rules', '9': 0, '10': 'sfixed32'},
|
{'1': 'sfixed32', '3': 11, '4': 1, '5': 11, '6': '.n1validate.SFixed32Rules', '9': 0, '10': 'sfixed32'},
|
||||||
{'1': 'sfixed64', '3': 12, '4': 1, '5': 11, '6': '.validate.SFixed64Rules', '9': 0, '10': 'sfixed64'},
|
{'1': 'sfixed64', '3': 12, '4': 1, '5': 11, '6': '.n1validate.SFixed64Rules', '9': 0, '10': 'sfixed64'},
|
||||||
{'1': 'bool', '3': 13, '4': 1, '5': 11, '6': '.validate.BoolRules', '9': 0, '10': 'bool'},
|
{'1': 'bool', '3': 13, '4': 1, '5': 11, '6': '.n1validate.BoolRules', '9': 0, '10': 'bool'},
|
||||||
{'1': 'string', '3': 14, '4': 1, '5': 11, '6': '.validate.StringRules', '9': 0, '10': 'string'},
|
{'1': 'string', '3': 14, '4': 1, '5': 11, '6': '.n1validate.StringRules', '9': 0, '10': 'string'},
|
||||||
{'1': 'bytes', '3': 15, '4': 1, '5': 11, '6': '.validate.BytesRules', '9': 0, '10': 'bytes'},
|
{'1': 'bytes', '3': 15, '4': 1, '5': 11, '6': '.n1validate.BytesRules', '9': 0, '10': 'bytes'},
|
||||||
{'1': 'enum', '3': 16, '4': 1, '5': 11, '6': '.validate.EnumRules', '9': 0, '10': 'enum'},
|
{'1': 'enum', '3': 16, '4': 1, '5': 11, '6': '.n1validate.EnumRules', '9': 0, '10': 'enum'},
|
||||||
{'1': 'repeated', '3': 18, '4': 1, '5': 11, '6': '.validate.RepeatedRules', '9': 0, '10': 'repeated'},
|
{'1': 'repeated', '3': 18, '4': 1, '5': 11, '6': '.n1validate.RepeatedRules', '9': 0, '10': 'repeated'},
|
||||||
{'1': 'map', '3': 19, '4': 1, '5': 11, '6': '.validate.MapRules', '9': 0, '10': 'map'},
|
{'1': 'map', '3': 19, '4': 1, '5': 11, '6': '.n1validate.MapRules', '9': 0, '10': 'map'},
|
||||||
{'1': 'any', '3': 20, '4': 1, '5': 11, '6': '.validate.AnyRules', '9': 0, '10': 'any'},
|
{'1': 'any', '3': 20, '4': 1, '5': 11, '6': '.n1validate.AnyRules', '9': 0, '10': 'any'},
|
||||||
{'1': 'duration', '3': 21, '4': 1, '5': 11, '6': '.validate.DurationRules', '9': 0, '10': 'duration'},
|
{'1': 'duration', '3': 21, '4': 1, '5': 11, '6': '.n1validate.DurationRules', '9': 0, '10': 'duration'},
|
||||||
{'1': 'timestamp', '3': 22, '4': 1, '5': 11, '6': '.validate.TimestampRules', '9': 0, '10': 'timestamp'},
|
{'1': 'timestamp', '3': 22, '4': 1, '5': 11, '6': '.n1validate.TimestampRules', '9': 0, '10': 'timestamp'},
|
||||||
],
|
],
|
||||||
'8': [
|
'8': [
|
||||||
{'1': 'type'},
|
{'1': 'type'},
|
||||||
@@ -63,26 +63,27 @@ const FieldRules$json = {
|
|||||||
|
|
||||||
/// Descriptor for `FieldRules`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `FieldRules`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List fieldRulesDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List fieldRulesDescriptor = $convert.base64Decode(
|
||||||
'CgpGaWVsZFJ1bGVzEjAKB21lc3NhZ2UYESABKAsyFi52YWxpZGF0ZS5NZXNzYWdlUnVsZXNSB2'
|
'CgpGaWVsZFJ1bGVzEjIKB21lc3NhZ2UYESABKAsyGC5uMXZhbGlkYXRlLk1lc3NhZ2VSdWxlc1'
|
||||||
'1lc3NhZ2USLAoFZmxvYXQYASABKAsyFC52YWxpZGF0ZS5GbG9hdFJ1bGVzSABSBWZsb2F0Ei8K'
|
'IHbWVzc2FnZRIuCgVmbG9hdBgBIAEoCzIWLm4xdmFsaWRhdGUuRmxvYXRSdWxlc0gAUgVmbG9h'
|
||||||
'BmRvdWJsZRgCIAEoCzIVLnZhbGlkYXRlLkRvdWJsZVJ1bGVzSABSBmRvdWJsZRIsCgVpbnQzMh'
|
'dBIxCgZkb3VibGUYAiABKAsyFy5uMXZhbGlkYXRlLkRvdWJsZVJ1bGVzSABSBmRvdWJsZRIuCg'
|
||||||
'gDIAEoCzIULnZhbGlkYXRlLkludDMyUnVsZXNIAFIFaW50MzISLAoFaW50NjQYBCABKAsyFC52'
|
'VpbnQzMhgDIAEoCzIWLm4xdmFsaWRhdGUuSW50MzJSdWxlc0gAUgVpbnQzMhIuCgVpbnQ2NBgE'
|
||||||
'YWxpZGF0ZS5JbnQ2NFJ1bGVzSABSBWludDY0Ei8KBnVpbnQzMhgFIAEoCzIVLnZhbGlkYXRlLl'
|
'IAEoCzIWLm4xdmFsaWRhdGUuSW50NjRSdWxlc0gAUgVpbnQ2NBIxCgZ1aW50MzIYBSABKAsyFy'
|
||||||
'VJbnQzMlJ1bGVzSABSBnVpbnQzMhIvCgZ1aW50NjQYBiABKAsyFS52YWxpZGF0ZS5VSW50NjRS'
|
'5uMXZhbGlkYXRlLlVJbnQzMlJ1bGVzSABSBnVpbnQzMhIxCgZ1aW50NjQYBiABKAsyFy5uMXZh'
|
||||||
'dWxlc0gAUgZ1aW50NjQSLwoGc2ludDMyGAcgASgLMhUudmFsaWRhdGUuU0ludDMyUnVsZXNIAF'
|
'bGlkYXRlLlVJbnQ2NFJ1bGVzSABSBnVpbnQ2NBIxCgZzaW50MzIYByABKAsyFy5uMXZhbGlkYX'
|
||||||
'IGc2ludDMyEi8KBnNpbnQ2NBgIIAEoCzIVLnZhbGlkYXRlLlNJbnQ2NFJ1bGVzSABSBnNpbnQ2'
|
'RlLlNJbnQzMlJ1bGVzSABSBnNpbnQzMhIxCgZzaW50NjQYCCABKAsyFy5uMXZhbGlkYXRlLlNJ'
|
||||||
'NBIyCgdmaXhlZDMyGAkgASgLMhYudmFsaWRhdGUuRml4ZWQzMlJ1bGVzSABSB2ZpeGVkMzISMg'
|
'bnQ2NFJ1bGVzSABSBnNpbnQ2NBI0CgdmaXhlZDMyGAkgASgLMhgubjF2YWxpZGF0ZS5GaXhlZD'
|
||||||
'oHZml4ZWQ2NBgKIAEoCzIWLnZhbGlkYXRlLkZpeGVkNjRSdWxlc0gAUgdmaXhlZDY0EjUKCHNm'
|
'MyUnVsZXNIAFIHZml4ZWQzMhI0CgdmaXhlZDY0GAogASgLMhgubjF2YWxpZGF0ZS5GaXhlZDY0'
|
||||||
'aXhlZDMyGAsgASgLMhcudmFsaWRhdGUuU0ZpeGVkMzJSdWxlc0gAUghzZml4ZWQzMhI1CghzZm'
|
'UnVsZXNIAFIHZml4ZWQ2NBI3CghzZml4ZWQzMhgLIAEoCzIZLm4xdmFsaWRhdGUuU0ZpeGVkMz'
|
||||||
'l4ZWQ2NBgMIAEoCzIXLnZhbGlkYXRlLlNGaXhlZDY0UnVsZXNIAFIIc2ZpeGVkNjQSKQoEYm9v'
|
'JSdWxlc0gAUghzZml4ZWQzMhI3CghzZml4ZWQ2NBgMIAEoCzIZLm4xdmFsaWRhdGUuU0ZpeGVk'
|
||||||
'bBgNIAEoCzITLnZhbGlkYXRlLkJvb2xSdWxlc0gAUgRib29sEi8KBnN0cmluZxgOIAEoCzIVLn'
|
'NjRSdWxlc0gAUghzZml4ZWQ2NBIrCgRib29sGA0gASgLMhUubjF2YWxpZGF0ZS5Cb29sUnVsZX'
|
||||||
'ZhbGlkYXRlLlN0cmluZ1J1bGVzSABSBnN0cmluZxIsCgVieXRlcxgPIAEoCzIULnZhbGlkYXRl'
|
'NIAFIEYm9vbBIxCgZzdHJpbmcYDiABKAsyFy5uMXZhbGlkYXRlLlN0cmluZ1J1bGVzSABSBnN0'
|
||||||
'LkJ5dGVzUnVsZXNIAFIFYnl0ZXMSKQoEZW51bRgQIAEoCzITLnZhbGlkYXRlLkVudW1SdWxlc0'
|
'cmluZxIuCgVieXRlcxgPIAEoCzIWLm4xdmFsaWRhdGUuQnl0ZXNSdWxlc0gAUgVieXRlcxIrCg'
|
||||||
'gAUgRlbnVtEjUKCHJlcGVhdGVkGBIgASgLMhcudmFsaWRhdGUuUmVwZWF0ZWRSdWxlc0gAUghy'
|
'RlbnVtGBAgASgLMhUubjF2YWxpZGF0ZS5FbnVtUnVsZXNIAFIEZW51bRI3CghyZXBlYXRlZBgS'
|
||||||
'ZXBlYXRlZBImCgNtYXAYEyABKAsyEi52YWxpZGF0ZS5NYXBSdWxlc0gAUgNtYXASJgoDYW55GB'
|
'IAEoCzIZLm4xdmFsaWRhdGUuUmVwZWF0ZWRSdWxlc0gAUghyZXBlYXRlZBIoCgNtYXAYEyABKA'
|
||||||
'QgASgLMhIudmFsaWRhdGUuQW55UnVsZXNIAFIDYW55EjUKCGR1cmF0aW9uGBUgASgLMhcudmFs'
|
'syFC5uMXZhbGlkYXRlLk1hcFJ1bGVzSABSA21hcBIoCgNhbnkYFCABKAsyFC5uMXZhbGlkYXRl'
|
||||||
'aWRhdGUuRHVyYXRpb25SdWxlc0gAUghkdXJhdGlvbhI4Cgl0aW1lc3RhbXAYFiABKAsyGC52YW'
|
'LkFueVJ1bGVzSABSA2FueRI3CghkdXJhdGlvbhgVIAEoCzIZLm4xdmFsaWRhdGUuRHVyYXRpb2'
|
||||||
'xpZGF0ZS5UaW1lc3RhbXBSdWxlc0gAUgl0aW1lc3RhbXBCBgoEdHlwZQ==');
|
'5SdWxlc0gAUghkdXJhdGlvbhI6Cgl0aW1lc3RhbXAYFiABKAsyGi5uMXZhbGlkYXRlLlRpbWVz'
|
||||||
|
'dGFtcFJ1bGVzSABSCXRpbWVzdGFtcEIGCgR0eXBl');
|
||||||
|
|
||||||
@$core.Deprecated('Use floatRulesDescriptor instead')
|
@$core.Deprecated('Use floatRulesDescriptor instead')
|
||||||
const FloatRules$json = {
|
const FloatRules$json = {
|
||||||
@@ -402,7 +403,7 @@ const StringRules$json = {
|
|||||||
{'1': 'uri_ref', '3': 18, '4': 1, '5': 8, '9': 0, '10': 'uriRef'},
|
{'1': 'uri_ref', '3': 18, '4': 1, '5': 8, '9': 0, '10': 'uriRef'},
|
||||||
{'1': 'address', '3': 21, '4': 1, '5': 8, '9': 0, '10': 'address'},
|
{'1': 'address', '3': 21, '4': 1, '5': 8, '9': 0, '10': 'address'},
|
||||||
{'1': 'uuid', '3': 22, '4': 1, '5': 8, '9': 0, '10': 'uuid'},
|
{'1': 'uuid', '3': 22, '4': 1, '5': 8, '9': 0, '10': 'uuid'},
|
||||||
{'1': 'well_known_regex', '3': 24, '4': 1, '5': 14, '6': '.validate.KnownRegex', '9': 0, '10': 'wellKnownRegex'},
|
{'1': 'well_known_regex', '3': 24, '4': 1, '5': 14, '6': '.n1validate.KnownRegex', '9': 0, '10': 'wellKnownRegex'},
|
||||||
{'1': 'dateIso8601', '3': 26, '4': 1, '5': 8, '9': 0, '10': 'dateIso8601'},
|
{'1': 'dateIso8601', '3': 26, '4': 1, '5': 8, '9': 0, '10': 'dateIso8601'},
|
||||||
{'1': 'languageIso6391', '3': 27, '4': 1, '5': 8, '9': 0, '10': 'languageIso6391'},
|
{'1': 'languageIso6391', '3': 27, '4': 1, '5': 8, '9': 0, '10': 'languageIso6391'},
|
||||||
{'1': 'tzData', '3': 28, '4': 1, '5': 8, '9': 0, '10': 'tzData'},
|
{'1': 'tzData', '3': 28, '4': 1, '5': 8, '9': 0, '10': 'tzData'},
|
||||||
@@ -430,14 +431,14 @@ final $typed_data.Uint8List stringRulesDescriptor = $convert.base64Decode(
|
|||||||
'SABSCGhvc3RuYW1lEhAKAmlwGA4gASgISABSAmlwEhQKBGlwdjQYDyABKAhIAFIEaXB2NBIUCg'
|
'SABSCGhvc3RuYW1lEhAKAmlwGA4gASgISABSAmlwEhQKBGlwdjQYDyABKAhIAFIEaXB2NBIUCg'
|
||||||
'RpcHY2GBAgASgISABSBGlwdjYSEgoDdXJpGBEgASgISABSA3VyaRIZCgd1cmlfcmVmGBIgASgI'
|
'RpcHY2GBAgASgISABSBGlwdjYSEgoDdXJpGBEgASgISABSA3VyaRIZCgd1cmlfcmVmGBIgASgI'
|
||||||
'SABSBnVyaVJlZhIaCgdhZGRyZXNzGBUgASgISABSB2FkZHJlc3MSFAoEdXVpZBgWIAEoCEgAUg'
|
'SABSBnVyaVJlZhIaCgdhZGRyZXNzGBUgASgISABSB2FkZHJlc3MSFAoEdXVpZBgWIAEoCEgAUg'
|
||||||
'R1dWlkEkAKEHdlbGxfa25vd25fcmVnZXgYGCABKA4yFC52YWxpZGF0ZS5Lbm93blJlZ2V4SABS'
|
'R1dWlkEkIKEHdlbGxfa25vd25fcmVnZXgYGCABKA4yFi5uMXZhbGlkYXRlLktub3duUmVnZXhI'
|
||||||
'DndlbGxLbm93blJlZ2V4EiIKC2RhdGVJc284NjAxGBogASgISABSC2RhdGVJc284NjAxEioKD2'
|
'AFIOd2VsbEtub3duUmVnZXgSIgoLZGF0ZUlzbzg2MDEYGiABKAhIAFILZGF0ZUlzbzg2MDESKg'
|
||||||
'xhbmd1YWdlSXNvNjM5MRgbIAEoCEgAUg9sYW5ndWFnZUlzbzYzOTESGAoGdHpEYXRhGBwgASgI'
|
'oPbGFuZ3VhZ2VJc282MzkxGBsgASgISABSD2xhbmd1YWdlSXNvNjM5MRIYCgZ0ekRhdGEYHCAB'
|
||||||
'SABSBnR6RGF0YRIwChJjb3VudHJ5Q29kZUlzbzMxNjYYHyABKAhIAFISY291bnRyeUNvZGVJc2'
|
'KAhIAFIGdHpEYXRhEjAKEmNvdW50cnlDb2RlSXNvMzE2NhgfIAEoCEgAUhJjb3VudHJ5Q29kZU'
|
||||||
'8zMTY2EigKDmxhbmd1YWdlSXNvNjM5GCAgASgISABSDmxhbmd1YWdlSXNvNjM5EjwKGGNvdW50'
|
'lzbzMxNjYSKAoObGFuZ3VhZ2VJc282MzkYICABKAhIAFIObGFuZ3VhZ2VJc282MzkSPAoYY291'
|
||||||
'cnlDb2RlSXNvMzE2NkFscGhhMhghIAEoCEgAUhhjb3VudHJ5Q29kZUlzbzMxNjZBbHBoYTISHA'
|
'bnRyeUNvZGVJc28zMTY2QWxwaGEyGCEgASgISABSGGNvdW50cnlDb2RlSXNvMzE2NkFscGhhMh'
|
||||||
'oGc3RyaWN0GBkgASgIOgR0cnVlUgZzdHJpY3QSIQoMaWdub3JlX2VtcHR5GB4gASgIUgtpZ25v'
|
'IcCgZzdHJpY3QYGSABKAg6BHRydWVSBnN0cmljdBIhCgxpZ25vcmVfZW1wdHkYHiABKAhSC2ln'
|
||||||
'cmVFbXB0eUIMCgp3ZWxsX2tub3du');
|
'bm9yZUVtcHR5QgwKCndlbGxfa25vd24=');
|
||||||
|
|
||||||
@$core.Deprecated('Use bytesRulesDescriptor instead')
|
@$core.Deprecated('Use bytesRulesDescriptor instead')
|
||||||
const BytesRules$json = {
|
const BytesRules$json = {
|
||||||
@@ -515,7 +516,7 @@ const RepeatedRules$json = {
|
|||||||
{'1': 'min_items', '3': 1, '4': 1, '5': 4, '10': 'minItems'},
|
{'1': 'min_items', '3': 1, '4': 1, '5': 4, '10': 'minItems'},
|
||||||
{'1': 'max_items', '3': 2, '4': 1, '5': 4, '10': 'maxItems'},
|
{'1': 'max_items', '3': 2, '4': 1, '5': 4, '10': 'maxItems'},
|
||||||
{'1': 'unique', '3': 3, '4': 1, '5': 8, '10': 'unique'},
|
{'1': 'unique', '3': 3, '4': 1, '5': 8, '10': 'unique'},
|
||||||
{'1': 'items', '3': 4, '4': 1, '5': 11, '6': '.validate.FieldRules', '10': 'items'},
|
{'1': 'items', '3': 4, '4': 1, '5': 11, '6': '.n1validate.FieldRules', '10': 'items'},
|
||||||
{'1': 'uniqueBaseLV', '3': 5, '4': 1, '5': 8, '10': 'uniqueBaseLV'},
|
{'1': 'uniqueBaseLV', '3': 5, '4': 1, '5': 8, '10': 'uniqueBaseLV'},
|
||||||
{'1': 'knownRefLV', '3': 6, '4': 1, '5': 8, '10': 'knownRefLV'},
|
{'1': 'knownRefLV', '3': 6, '4': 1, '5': 8, '10': 'knownRefLV'},
|
||||||
{'1': 'ignore_empty', '3': 7, '4': 1, '5': 8, '10': 'ignoreEmpty'},
|
{'1': 'ignore_empty', '3': 7, '4': 1, '5': 8, '10': 'ignoreEmpty'},
|
||||||
@@ -525,10 +526,10 @@ const RepeatedRules$json = {
|
|||||||
/// Descriptor for `RepeatedRules`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `RepeatedRules`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List repeatedRulesDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List repeatedRulesDescriptor = $convert.base64Decode(
|
||||||
'Cg1SZXBlYXRlZFJ1bGVzEhsKCW1pbl9pdGVtcxgBIAEoBFIIbWluSXRlbXMSGwoJbWF4X2l0ZW'
|
'Cg1SZXBlYXRlZFJ1bGVzEhsKCW1pbl9pdGVtcxgBIAEoBFIIbWluSXRlbXMSGwoJbWF4X2l0ZW'
|
||||||
'1zGAIgASgEUghtYXhJdGVtcxIWCgZ1bmlxdWUYAyABKAhSBnVuaXF1ZRIqCgVpdGVtcxgEIAEo'
|
'1zGAIgASgEUghtYXhJdGVtcxIWCgZ1bmlxdWUYAyABKAhSBnVuaXF1ZRIsCgVpdGVtcxgEIAEo'
|
||||||
'CzIULnZhbGlkYXRlLkZpZWxkUnVsZXNSBWl0ZW1zEiIKDHVuaXF1ZUJhc2VMVhgFIAEoCFIMdW'
|
'CzIWLm4xdmFsaWRhdGUuRmllbGRSdWxlc1IFaXRlbXMSIgoMdW5pcXVlQmFzZUxWGAUgASgIUg'
|
||||||
'5pcXVlQmFzZUxWEh4KCmtub3duUmVmTFYYBiABKAhSCmtub3duUmVmTFYSIQoMaWdub3JlX2Vt'
|
'x1bmlxdWVCYXNlTFYSHgoKa25vd25SZWZMVhgGIAEoCFIKa25vd25SZWZMVhIhCgxpZ25vcmVf'
|
||||||
'cHR5GAcgASgIUgtpZ25vcmVFbXB0eQ==');
|
'ZW1wdHkYByABKAhSC2lnbm9yZUVtcHR5');
|
||||||
|
|
||||||
@$core.Deprecated('Use mapRulesDescriptor instead')
|
@$core.Deprecated('Use mapRulesDescriptor instead')
|
||||||
const MapRules$json = {
|
const MapRules$json = {
|
||||||
@@ -537,8 +538,8 @@ const MapRules$json = {
|
|||||||
{'1': 'min_pairs', '3': 1, '4': 1, '5': 4, '10': 'minPairs'},
|
{'1': 'min_pairs', '3': 1, '4': 1, '5': 4, '10': 'minPairs'},
|
||||||
{'1': 'max_pairs', '3': 2, '4': 1, '5': 4, '10': 'maxPairs'},
|
{'1': 'max_pairs', '3': 2, '4': 1, '5': 4, '10': 'maxPairs'},
|
||||||
{'1': 'no_sparse', '3': 3, '4': 1, '5': 8, '10': 'noSparse'},
|
{'1': 'no_sparse', '3': 3, '4': 1, '5': 8, '10': 'noSparse'},
|
||||||
{'1': 'keys', '3': 4, '4': 1, '5': 11, '6': '.validate.FieldRules', '10': 'keys'},
|
{'1': 'keys', '3': 4, '4': 1, '5': 11, '6': '.n1validate.FieldRules', '10': 'keys'},
|
||||||
{'1': 'values', '3': 5, '4': 1, '5': 11, '6': '.validate.FieldRules', '10': 'values'},
|
{'1': 'values', '3': 5, '4': 1, '5': 11, '6': '.n1validate.FieldRules', '10': 'values'},
|
||||||
{'1': 'ignore_empty', '3': 6, '4': 1, '5': 8, '10': 'ignoreEmpty'},
|
{'1': 'ignore_empty', '3': 6, '4': 1, '5': 8, '10': 'ignoreEmpty'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@@ -546,9 +547,10 @@ const MapRules$json = {
|
|||||||
/// Descriptor for `MapRules`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `MapRules`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List mapRulesDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List mapRulesDescriptor = $convert.base64Decode(
|
||||||
'CghNYXBSdWxlcxIbCgltaW5fcGFpcnMYASABKARSCG1pblBhaXJzEhsKCW1heF9wYWlycxgCIA'
|
'CghNYXBSdWxlcxIbCgltaW5fcGFpcnMYASABKARSCG1pblBhaXJzEhsKCW1heF9wYWlycxgCIA'
|
||||||
'EoBFIIbWF4UGFpcnMSGwoJbm9fc3BhcnNlGAMgASgIUghub1NwYXJzZRIoCgRrZXlzGAQgASgL'
|
'EoBFIIbWF4UGFpcnMSGwoJbm9fc3BhcnNlGAMgASgIUghub1NwYXJzZRIqCgRrZXlzGAQgASgL'
|
||||||
'MhQudmFsaWRhdGUuRmllbGRSdWxlc1IEa2V5cxIsCgZ2YWx1ZXMYBSABKAsyFC52YWxpZGF0ZS'
|
'MhYubjF2YWxpZGF0ZS5GaWVsZFJ1bGVzUgRrZXlzEi4KBnZhbHVlcxgFIAEoCzIWLm4xdmFsaW'
|
||||||
'5GaWVsZFJ1bGVzUgZ2YWx1ZXMSIQoMaWdub3JlX2VtcHR5GAYgASgIUgtpZ25vcmVFbXB0eQ==');
|
'RhdGUuRmllbGRSdWxlc1IGdmFsdWVzEiEKDGlnbm9yZV9lbXB0eRgGIAEoCFILaWdub3JlRW1w'
|
||||||
|
'dHk=');
|
||||||
|
|
||||||
@$core.Deprecated('Use anyRulesDescriptor instead')
|
@$core.Deprecated('Use anyRulesDescriptor instead')
|
||||||
const AnyRules$json = {
|
const AnyRules$json = {
|
||||||
@@ -32,7 +32,7 @@ export 'openapiv2.pbenum.dart';
|
|||||||
/// info: {
|
/// info: {
|
||||||
/// title: "Echo API";
|
/// title: "Echo API";
|
||||||
/// version: "1.0";
|
/// version: "1.0";
|
||||||
/// description: ";
|
/// description: "";
|
||||||
/// contact: {
|
/// contact: {
|
||||||
/// name: "gRPC-Gateway project";
|
/// name: "gRPC-Gateway project";
|
||||||
/// url: "https://github.com/grpc-ecosystem/grpc-gateway";
|
/// url: "https://github.com/grpc-ecosystem/grpc-gateway";
|
||||||
@@ -40,7 +40,7 @@ export 'openapiv2.pbenum.dart';
|
|||||||
/// };
|
/// };
|
||||||
/// license: {
|
/// license: {
|
||||||
/// name: "BSD 3-Clause License";
|
/// name: "BSD 3-Clause License";
|
||||||
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt";
|
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
|
||||||
/// };
|
/// };
|
||||||
/// };
|
/// };
|
||||||
/// schemes: HTTPS;
|
/// schemes: HTTPS;
|
||||||
@@ -59,6 +59,7 @@ class Swagger extends $pb.GeneratedMessage {
|
|||||||
$core.Iterable<$core.MapEntry<$core.String, Response>>? responses,
|
$core.Iterable<$core.MapEntry<$core.String, Response>>? responses,
|
||||||
SecurityDefinitions? securityDefinitions,
|
SecurityDefinitions? securityDefinitions,
|
||||||
$core.Iterable<SecurityRequirement>? security,
|
$core.Iterable<SecurityRequirement>? security,
|
||||||
|
$core.Iterable<Tag>? tags,
|
||||||
ExternalDocumentation? externalDocs,
|
ExternalDocumentation? externalDocs,
|
||||||
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
||||||
}) {
|
}) {
|
||||||
@@ -73,6 +74,7 @@ class Swagger extends $pb.GeneratedMessage {
|
|||||||
if (responses != null) result.responses.addEntries(responses);
|
if (responses != null) result.responses.addEntries(responses);
|
||||||
if (securityDefinitions != null) result.securityDefinitions = securityDefinitions;
|
if (securityDefinitions != null) result.securityDefinitions = securityDefinitions;
|
||||||
if (security != null) result.security.addAll(security);
|
if (security != null) result.security.addAll(security);
|
||||||
|
if (tags != null) result.tags.addAll(tags);
|
||||||
if (externalDocs != null) result.externalDocs = externalDocs;
|
if (externalDocs != null) result.externalDocs = externalDocs;
|
||||||
if (extensions != null) result.extensions.addEntries(extensions);
|
if (extensions != null) result.extensions.addEntries(extensions);
|
||||||
return result;
|
return result;
|
||||||
@@ -94,6 +96,7 @@ class Swagger extends $pb.GeneratedMessage {
|
|||||||
..m<$core.String, Response>(10, _omitFieldNames ? '' : 'responses', entryClassName: 'Swagger.ResponsesEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: Response.create, valueDefaultOrMaker: Response.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
..m<$core.String, Response>(10, _omitFieldNames ? '' : 'responses', entryClassName: 'Swagger.ResponsesEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: Response.create, valueDefaultOrMaker: Response.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
..aOM<SecurityDefinitions>(11, _omitFieldNames ? '' : 'securityDefinitions', subBuilder: SecurityDefinitions.create)
|
..aOM<SecurityDefinitions>(11, _omitFieldNames ? '' : 'securityDefinitions', subBuilder: SecurityDefinitions.create)
|
||||||
..pc<SecurityRequirement>(12, _omitFieldNames ? '' : 'security', $pb.PbFieldType.PM, subBuilder: SecurityRequirement.create)
|
..pc<SecurityRequirement>(12, _omitFieldNames ? '' : 'security', $pb.PbFieldType.PM, subBuilder: SecurityRequirement.create)
|
||||||
|
..pc<Tag>(13, _omitFieldNames ? '' : 'tags', $pb.PbFieldType.PM, subBuilder: Tag.create)
|
||||||
..aOM<ExternalDocumentation>(14, _omitFieldNames ? '' : 'externalDocs', subBuilder: ExternalDocumentation.create)
|
..aOM<ExternalDocumentation>(14, _omitFieldNames ? '' : 'externalDocs', subBuilder: ExternalDocumentation.create)
|
||||||
..m<$core.String, $0.Value>(15, _omitFieldNames ? '' : 'extensions', entryClassName: 'Swagger.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
..m<$core.String, $0.Value>(15, _omitFieldNames ? '' : 'extensions', entryClassName: 'Swagger.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
@@ -214,20 +217,28 @@ class Swagger extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$pb.PbList<SecurityRequirement> get security => $_getList(9);
|
$pb.PbList<SecurityRequirement> get security => $_getList(9);
|
||||||
|
|
||||||
|
/// A list of tags for API documentation control. Tags can be used for logical
|
||||||
|
/// grouping of operations by resources or any other qualifier.
|
||||||
|
@$pb.TagNumber(13)
|
||||||
|
$pb.PbList<Tag> get tags => $_getList(10);
|
||||||
|
|
||||||
/// Additional external documentation.
|
/// Additional external documentation.
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
ExternalDocumentation get externalDocs => $_getN(10);
|
ExternalDocumentation get externalDocs => $_getN(11);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
set externalDocs(ExternalDocumentation value) => $_setField(14, value);
|
set externalDocs(ExternalDocumentation value) => $_setField(14, value);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
$core.bool hasExternalDocs() => $_has(10);
|
$core.bool hasExternalDocs() => $_has(11);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
void clearExternalDocs() => $_clearField(14);
|
void clearExternalDocs() => $_clearField(14);
|
||||||
@$pb.TagNumber(14)
|
@$pb.TagNumber(14)
|
||||||
ExternalDocumentation ensureExternalDocs() => $_ensure(10);
|
ExternalDocumentation ensureExternalDocs() => $_ensure(11);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
@$pb.TagNumber(15)
|
@$pb.TagNumber(15)
|
||||||
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(11);
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(12);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `Operation` is a representation of OpenAPI v2 specification's Operation object.
|
/// `Operation` is a representation of OpenAPI v2 specification's Operation object.
|
||||||
@@ -269,6 +280,7 @@ class Operation extends $pb.GeneratedMessage {
|
|||||||
$core.bool? deprecated,
|
$core.bool? deprecated,
|
||||||
$core.Iterable<SecurityRequirement>? security,
|
$core.Iterable<SecurityRequirement>? security,
|
||||||
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
||||||
|
Parameters? parameters,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (tags != null) result.tags.addAll(tags);
|
if (tags != null) result.tags.addAll(tags);
|
||||||
@@ -283,6 +295,7 @@ class Operation extends $pb.GeneratedMessage {
|
|||||||
if (deprecated != null) result.deprecated = deprecated;
|
if (deprecated != null) result.deprecated = deprecated;
|
||||||
if (security != null) result.security.addAll(security);
|
if (security != null) result.security.addAll(security);
|
||||||
if (extensions != null) result.extensions.addEntries(extensions);
|
if (extensions != null) result.extensions.addEntries(extensions);
|
||||||
|
if (parameters != null) result.parameters = parameters;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -304,6 +317,7 @@ class Operation extends $pb.GeneratedMessage {
|
|||||||
..aOB(11, _omitFieldNames ? '' : 'deprecated')
|
..aOB(11, _omitFieldNames ? '' : 'deprecated')
|
||||||
..pc<SecurityRequirement>(12, _omitFieldNames ? '' : 'security', $pb.PbFieldType.PM, subBuilder: SecurityRequirement.create)
|
..pc<SecurityRequirement>(12, _omitFieldNames ? '' : 'security', $pb.PbFieldType.PM, subBuilder: SecurityRequirement.create)
|
||||||
..m<$core.String, $0.Value>(13, _omitFieldNames ? '' : 'extensions', entryClassName: 'Operation.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
..m<$core.String, $0.Value>(13, _omitFieldNames ? '' : 'extensions', entryClassName: 'Operation.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
|
..aOM<Parameters>(14, _omitFieldNames ? '' : 'parameters', subBuilder: Parameters.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -418,8 +432,174 @@ class Operation extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(12)
|
@$pb.TagNumber(12)
|
||||||
$pb.PbList<SecurityRequirement> get security => $_getList(10);
|
$pb.PbList<SecurityRequirement> get security => $_getList(10);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
@$pb.TagNumber(13)
|
@$pb.TagNumber(13)
|
||||||
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(11);
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(11);
|
||||||
|
|
||||||
|
/// Custom parameters such as HTTP request headers.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/describing-parameters/
|
||||||
|
/// and https://swagger.io/specification/v2/#parameter-object.
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
Parameters get parameters => $_getN(12);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
set parameters(Parameters value) => $_setField(14, value);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
$core.bool hasParameters() => $_has(12);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
void clearParameters() => $_clearField(14);
|
||||||
|
@$pb.TagNumber(14)
|
||||||
|
Parameters ensureParameters() => $_ensure(12);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `Parameters` is a representation of OpenAPI v2 specification's parameters object.
|
||||||
|
/// Note: This technically breaks compatibility with the OpenAPI 2 definition structure as we only
|
||||||
|
/// allow header parameters to be set here since we do not want users specifying custom non-header
|
||||||
|
/// parameters beyond those inferred from the Protobuf schema.
|
||||||
|
/// See: https://swagger.io/specification/v2/#parameter-object
|
||||||
|
class Parameters extends $pb.GeneratedMessage {
|
||||||
|
factory Parameters({
|
||||||
|
$core.Iterable<HeaderParameter>? headers,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (headers != null) result.headers.addAll(headers);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
Parameters._();
|
||||||
|
|
||||||
|
factory Parameters.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory Parameters.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Parameters', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
||||||
|
..pc<HeaderParameter>(1, _omitFieldNames ? '' : 'headers', $pb.PbFieldType.PM, subBuilder: HeaderParameter.create)
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
Parameters clone() => Parameters()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
Parameters copyWith(void Function(Parameters) updates) => super.copyWith((message) => updates(message as Parameters)) as Parameters;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static Parameters create() => Parameters._();
|
||||||
|
@$core.override
|
||||||
|
Parameters createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<Parameters> createRepeated() => $pb.PbList<Parameters>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static Parameters getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Parameters>(create);
|
||||||
|
static Parameters? _defaultInstance;
|
||||||
|
|
||||||
|
/// `Headers` is one or more HTTP header parameter.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/describing-parameters/#header-parameters
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$pb.PbList<HeaderParameter> get headers => $_getList(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `HeaderParameter` a HTTP header parameter.
|
||||||
|
/// See: https://swagger.io/specification/v2/#parameter-object
|
||||||
|
class HeaderParameter extends $pb.GeneratedMessage {
|
||||||
|
factory HeaderParameter({
|
||||||
|
$core.String? name,
|
||||||
|
$core.String? description,
|
||||||
|
HeaderParameter_Type? type,
|
||||||
|
$core.String? format,
|
||||||
|
$core.bool? required,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (name != null) result.name = name;
|
||||||
|
if (description != null) result.description = description;
|
||||||
|
if (type != null) result.type = type;
|
||||||
|
if (format != null) result.format = format;
|
||||||
|
if (required != null) result.required = required;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
HeaderParameter._();
|
||||||
|
|
||||||
|
factory HeaderParameter.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory HeaderParameter.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HeaderParameter', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
||||||
|
..aOS(1, _omitFieldNames ? '' : 'name')
|
||||||
|
..aOS(2, _omitFieldNames ? '' : 'description')
|
||||||
|
..e<HeaderParameter_Type>(3, _omitFieldNames ? '' : 'type', $pb.PbFieldType.OE, defaultOrMaker: HeaderParameter_Type.UNKNOWN, valueOf: HeaderParameter_Type.valueOf, enumValues: HeaderParameter_Type.values)
|
||||||
|
..aOS(4, _omitFieldNames ? '' : 'format')
|
||||||
|
..aOB(5, _omitFieldNames ? '' : 'required')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
HeaderParameter clone() => HeaderParameter()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
HeaderParameter copyWith(void Function(HeaderParameter) updates) => super.copyWith((message) => updates(message as HeaderParameter)) as HeaderParameter;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static HeaderParameter create() => HeaderParameter._();
|
||||||
|
@$core.override
|
||||||
|
HeaderParameter createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<HeaderParameter> createRepeated() => $pb.PbList<HeaderParameter>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static HeaderParameter getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HeaderParameter>(create);
|
||||||
|
static HeaderParameter? _defaultInstance;
|
||||||
|
|
||||||
|
/// `Name` is the header name.
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.String get name => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set name($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasName() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearName() => $_clearField(1);
|
||||||
|
|
||||||
|
/// `Description` is a short description of the header.
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.String get description => $_getSZ(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set description($core.String value) => $_setString(1, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasDescription() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearDescription() => $_clearField(2);
|
||||||
|
|
||||||
|
/// `Type` is the type of the object. The value MUST be one of "string", "number", "integer", or "boolean". The "array" type is not supported.
|
||||||
|
/// See: https://swagger.io/specification/v2/#parameterType.
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
HeaderParameter_Type get type => $_getN(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set type(HeaderParameter_Type value) => $_setField(3, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasType() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearType() => $_clearField(3);
|
||||||
|
|
||||||
|
/// `Format` The extending format for the previously mentioned type.
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.String get format => $_getSZ(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set format($core.String value) => $_setString(3, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasFormat() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearFormat() => $_clearField(4);
|
||||||
|
|
||||||
|
/// `Required` indicates if the header is optional
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.bool get required => $_getBF(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
set required($core.bool value) => $_setBool(4, value);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.bool hasRequired() => $_has(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
void clearRequired() => $_clearField(5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `Header` is a representation of OpenAPI v2 specification's Header object.
|
/// `Header` is a representation of OpenAPI v2 specification's Header object.
|
||||||
@@ -612,6 +792,9 @@ class Response extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
$pb.PbMap<$core.String, $core.String> get examples => $_getMap(3);
|
$pb.PbMap<$core.String, $core.String> get examples => $_getMap(3);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(4);
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(4);
|
||||||
}
|
}
|
||||||
@@ -626,7 +809,7 @@ class Response extends $pb.GeneratedMessage {
|
|||||||
/// info: {
|
/// info: {
|
||||||
/// title: "Echo API";
|
/// title: "Echo API";
|
||||||
/// version: "1.0";
|
/// version: "1.0";
|
||||||
/// description: ";
|
/// description: "";
|
||||||
/// contact: {
|
/// contact: {
|
||||||
/// name: "gRPC-Gateway project";
|
/// name: "gRPC-Gateway project";
|
||||||
/// url: "https://github.com/grpc-ecosystem/grpc-gateway";
|
/// url: "https://github.com/grpc-ecosystem/grpc-gateway";
|
||||||
@@ -634,7 +817,7 @@ class Response extends $pb.GeneratedMessage {
|
|||||||
/// };
|
/// };
|
||||||
/// license: {
|
/// license: {
|
||||||
/// name: "BSD 3-Clause License";
|
/// name: "BSD 3-Clause License";
|
||||||
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt";
|
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
|
||||||
/// };
|
/// };
|
||||||
/// };
|
/// };
|
||||||
/// ...
|
/// ...
|
||||||
@@ -759,6 +942,9 @@ class Info extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
void clearVersion() => $_clearField(6);
|
void clearVersion() => $_clearField(6);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
@$pb.TagNumber(7)
|
@$pb.TagNumber(7)
|
||||||
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(6);
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(6);
|
||||||
}
|
}
|
||||||
@@ -867,7 +1053,7 @@ class Contact extends $pb.GeneratedMessage {
|
|||||||
/// ...
|
/// ...
|
||||||
/// license: {
|
/// license: {
|
||||||
/// name: "BSD 3-Clause License";
|
/// name: "BSD 3-Clause License";
|
||||||
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/master/LICENSE.txt";
|
/// url: "https://github.com/grpc-ecosystem/grpc-gateway/blob/main/LICENSE";
|
||||||
/// };
|
/// };
|
||||||
/// ...
|
/// ...
|
||||||
/// };
|
/// };
|
||||||
@@ -1124,34 +1310,263 @@ class Schema extends $pb.GeneratedMessage {
|
|||||||
void clearExample() => $_clearField(6);
|
void clearExample() => $_clearField(6);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `JSONSchema` represents properties from JSON Schema taken, and as used, in
|
/// `EnumSchema` is subset of fields from the OpenAPI v2 specification's Schema object.
|
||||||
/// the OpenAPI v2 spec.
|
/// Only fields that are applicable to Enums are included
|
||||||
|
/// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
|
||||||
///
|
///
|
||||||
/// This includes changes made by OpenAPI v2.
|
/// Example:
|
||||||
///
|
///
|
||||||
/// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
|
/// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_enum) = {
|
||||||
|
/// ...
|
||||||
|
/// title: "MyEnum";
|
||||||
|
/// description:"This is my nice enum";
|
||||||
|
/// example: "ZERO";
|
||||||
|
/// required: true;
|
||||||
|
/// ...
|
||||||
|
/// };
|
||||||
|
class EnumSchema extends $pb.GeneratedMessage {
|
||||||
|
factory EnumSchema({
|
||||||
|
$core.String? description,
|
||||||
|
$core.String? default_2,
|
||||||
|
$core.String? title,
|
||||||
|
$core.bool? required,
|
||||||
|
$core.bool? readOnly,
|
||||||
|
ExternalDocumentation? externalDocs,
|
||||||
|
$core.String? example,
|
||||||
|
$core.String? ref,
|
||||||
|
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (description != null) result.description = description;
|
||||||
|
if (default_2 != null) result.default_2 = default_2;
|
||||||
|
if (title != null) result.title = title;
|
||||||
|
if (required != null) result.required = required;
|
||||||
|
if (readOnly != null) result.readOnly = readOnly;
|
||||||
|
if (externalDocs != null) result.externalDocs = externalDocs;
|
||||||
|
if (example != null) result.example = example;
|
||||||
|
if (ref != null) result.ref = ref;
|
||||||
|
if (extensions != null) result.extensions.addEntries(extensions);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
EnumSchema._();
|
||||||
|
|
||||||
|
factory EnumSchema.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory EnumSchema.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'EnumSchema', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
||||||
|
..aOS(1, _omitFieldNames ? '' : 'description')
|
||||||
|
..aOS(2, _omitFieldNames ? '' : 'default')
|
||||||
|
..aOS(3, _omitFieldNames ? '' : 'title')
|
||||||
|
..aOB(4, _omitFieldNames ? '' : 'required')
|
||||||
|
..aOB(5, _omitFieldNames ? '' : 'readOnly')
|
||||||
|
..aOM<ExternalDocumentation>(6, _omitFieldNames ? '' : 'externalDocs', subBuilder: ExternalDocumentation.create)
|
||||||
|
..aOS(7, _omitFieldNames ? '' : 'example')
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'ref')
|
||||||
|
..m<$core.String, $0.Value>(9, _omitFieldNames ? '' : 'extensions', entryClassName: 'EnumSchema.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
EnumSchema clone() => EnumSchema()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
EnumSchema copyWith(void Function(EnumSchema) updates) => super.copyWith((message) => updates(message as EnumSchema)) as EnumSchema;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static EnumSchema create() => EnumSchema._();
|
||||||
|
@$core.override
|
||||||
|
EnumSchema createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<EnumSchema> createRepeated() => $pb.PbList<EnumSchema>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static EnumSchema getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<EnumSchema>(create);
|
||||||
|
static EnumSchema? _defaultInstance;
|
||||||
|
|
||||||
|
/// A short description of the schema.
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.String get description => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set description($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasDescription() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearDescription() => $_clearField(1);
|
||||||
|
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.String get default_2 => $_getSZ(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set default_2($core.String value) => $_setString(1, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasDefault_2() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearDefault_2() => $_clearField(2);
|
||||||
|
|
||||||
|
/// The title of the schema.
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.String get title => $_getSZ(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set title($core.String value) => $_setString(2, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasTitle() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearTitle() => $_clearField(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool get required => $_getBF(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set required($core.bool value) => $_setBool(3, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasRequired() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearRequired() => $_clearField(4);
|
||||||
|
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.bool get readOnly => $_getBF(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
set readOnly($core.bool value) => $_setBool(4, value);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$core.bool hasReadOnly() => $_has(4);
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
void clearReadOnly() => $_clearField(5);
|
||||||
|
|
||||||
|
/// Additional external documentation for this schema.
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
ExternalDocumentation get externalDocs => $_getN(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
set externalDocs(ExternalDocumentation value) => $_setField(6, value);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.bool hasExternalDocs() => $_has(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
void clearExternalDocs() => $_clearField(6);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
ExternalDocumentation ensureExternalDocs() => $_ensure(5);
|
||||||
|
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.String get example => $_getSZ(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
set example($core.String value) => $_setString(6, value);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$core.bool hasExample() => $_has(6);
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
void clearExample() => $_clearField(7);
|
||||||
|
|
||||||
|
/// Ref is used to define an external reference to include in the message.
|
||||||
|
/// This could be a fully qualified proto message reference, and that type must
|
||||||
|
/// be imported into the protofile. If no message is identified, the Ref will
|
||||||
|
/// be used verbatim in the output.
|
||||||
|
/// For example:
|
||||||
|
/// `ref: ".google.protobuf.Timestamp"`.
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get ref => $_getSZ(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set ref($core.String value) => $_setString(7, value);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasRef() => $_has(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearRef() => $_clearField(8);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(8);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// 'FieldConfiguration' provides additional field level properties used when generating the OpenAPI v2 file.
|
||||||
|
/// These properties are not defined by OpenAPIv2, but they are used to control the generation.
|
||||||
|
class JSONSchema_FieldConfiguration extends $pb.GeneratedMessage {
|
||||||
|
factory JSONSchema_FieldConfiguration({
|
||||||
|
$core.String? pathParamName,
|
||||||
|
$core.bool? deprecated,
|
||||||
|
}) {
|
||||||
|
final result = create();
|
||||||
|
if (pathParamName != null) result.pathParamName = pathParamName;
|
||||||
|
if (deprecated != null) result.deprecated = deprecated;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
JSONSchema_FieldConfiguration._();
|
||||||
|
|
||||||
|
factory JSONSchema_FieldConfiguration.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
|
factory JSONSchema_FieldConfiguration.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'JSONSchema.FieldConfiguration', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
||||||
|
..aOS(47, _omitFieldNames ? '' : 'pathParamName')
|
||||||
|
..aOB(49, _omitFieldNames ? '' : 'deprecated')
|
||||||
|
..hasRequiredFields = false
|
||||||
|
;
|
||||||
|
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
JSONSchema_FieldConfiguration clone() => JSONSchema_FieldConfiguration()..mergeFromMessage(this);
|
||||||
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
|
JSONSchema_FieldConfiguration copyWith(void Function(JSONSchema_FieldConfiguration) updates) => super.copyWith((message) => updates(message as JSONSchema_FieldConfiguration)) as JSONSchema_FieldConfiguration;
|
||||||
|
|
||||||
|
@$core.override
|
||||||
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static JSONSchema_FieldConfiguration create() => JSONSchema_FieldConfiguration._();
|
||||||
|
@$core.override
|
||||||
|
JSONSchema_FieldConfiguration createEmptyInstance() => create();
|
||||||
|
static $pb.PbList<JSONSchema_FieldConfiguration> createRepeated() => $pb.PbList<JSONSchema_FieldConfiguration>();
|
||||||
|
@$core.pragma('dart2js:noInline')
|
||||||
|
static JSONSchema_FieldConfiguration getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<JSONSchema_FieldConfiguration>(create);
|
||||||
|
static JSONSchema_FieldConfiguration? _defaultInstance;
|
||||||
|
|
||||||
|
/// Alternative parameter name when used as path parameter. If set, this will
|
||||||
|
/// be used as the complete parameter name when this field is used as a path
|
||||||
|
/// parameter. Use this to avoid having auto generated path parameter names
|
||||||
|
/// for overlapping paths.
|
||||||
|
@$pb.TagNumber(47)
|
||||||
|
$core.String get pathParamName => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(47)
|
||||||
|
set pathParamName($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(47)
|
||||||
|
$core.bool hasPathParamName() => $_has(0);
|
||||||
|
@$pb.TagNumber(47)
|
||||||
|
void clearPathParamName() => $_clearField(47);
|
||||||
|
|
||||||
|
/// Declares this field to be deprecated. Allows for the generated OpenAPI
|
||||||
|
/// parameter to be marked as deprecated without affecting the proto field.
|
||||||
|
@$pb.TagNumber(49)
|
||||||
|
$core.bool get deprecated => $_getBF(1);
|
||||||
|
@$pb.TagNumber(49)
|
||||||
|
set deprecated($core.bool value) => $_setBool(1, value);
|
||||||
|
@$pb.TagNumber(49)
|
||||||
|
$core.bool hasDeprecated() => $_has(1);
|
||||||
|
@$pb.TagNumber(49)
|
||||||
|
void clearDeprecated() => $_clearField(49);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `JSONSchema` represents properties from JSON Schema taken, and as used, in
|
||||||
|
/// the OpenAPI v2 spec.
|
||||||
///
|
///
|
||||||
/// See also: https://cswr.github.io/JsonSchema/spec/basic_types/,
|
/// This includes changes made by OpenAPI v2.
|
||||||
/// https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json
|
|
||||||
///
|
///
|
||||||
/// Example:
|
/// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#schemaObject
|
||||||
///
|
///
|
||||||
/// message SimpleMessage {
|
/// See also: https://cswr.github.io/JsonSchema/spec/basic_types/,
|
||||||
/// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
/// https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json
|
||||||
/// json_schema: {
|
|
||||||
/// title: "SimpleMessage"
|
|
||||||
/// description: "A simple message."
|
|
||||||
/// required: ["id"]
|
|
||||||
/// }
|
|
||||||
/// };
|
|
||||||
///
|
///
|
||||||
/// // Id represents the message identifier.
|
/// Example:
|
||||||
/// string id = 1; [
|
///
|
||||||
/// The unique identifier of the simple message.
|
/// message SimpleMessage {
|
||||||
/// (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
/// option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema) = {
|
||||||
/// {description: "The unique identifier of the simple message."
|
/// json_schema: {
|
||||||
/// }];
|
/// title: "SimpleMessage"
|
||||||
/// }
|
/// description: "A simple message."
|
||||||
|
/// required: ["id"]
|
||||||
|
/// }
|
||||||
|
/// };
|
||||||
|
///
|
||||||
|
/// // Id represents the message identifier.
|
||||||
|
/// string id = 1; [
|
||||||
|
/// (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
|
||||||
|
/// description: "The unique identifier of the simple message."
|
||||||
|
/// }];
|
||||||
|
/// }
|
||||||
class JSONSchema extends $pb.GeneratedMessage {
|
class JSONSchema extends $pb.GeneratedMessage {
|
||||||
factory JSONSchema({
|
factory JSONSchema({
|
||||||
$core.String? ref,
|
$core.String? ref,
|
||||||
@@ -1178,6 +1593,8 @@ class JSONSchema extends $pb.GeneratedMessage {
|
|||||||
$core.Iterable<JSONSchema_JSONSchemaSimpleTypes>? type,
|
$core.Iterable<JSONSchema_JSONSchemaSimpleTypes>? type,
|
||||||
$core.String? format,
|
$core.String? format,
|
||||||
$core.Iterable<$core.String>? enum_46,
|
$core.Iterable<$core.String>? enum_46,
|
||||||
|
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
||||||
|
JSONSchema_FieldConfiguration? fieldConfiguration,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (ref != null) result.ref = ref;
|
if (ref != null) result.ref = ref;
|
||||||
@@ -1204,6 +1621,8 @@ class JSONSchema extends $pb.GeneratedMessage {
|
|||||||
if (type != null) result.type.addAll(type);
|
if (type != null) result.type.addAll(type);
|
||||||
if (format != null) result.format = format;
|
if (format != null) result.format = format;
|
||||||
if (enum_46 != null) result.enum_46.addAll(enum_46);
|
if (enum_46 != null) result.enum_46.addAll(enum_46);
|
||||||
|
if (extensions != null) result.extensions.addEntries(extensions);
|
||||||
|
if (fieldConfiguration != null) result.fieldConfiguration = fieldConfiguration;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1237,6 +1656,8 @@ class JSONSchema extends $pb.GeneratedMessage {
|
|||||||
..pc<JSONSchema_JSONSchemaSimpleTypes>(35, _omitFieldNames ? '' : 'type', $pb.PbFieldType.KE, valueOf: JSONSchema_JSONSchemaSimpleTypes.valueOf, enumValues: JSONSchema_JSONSchemaSimpleTypes.values, defaultEnumValue: JSONSchema_JSONSchemaSimpleTypes.UNKNOWN)
|
..pc<JSONSchema_JSONSchemaSimpleTypes>(35, _omitFieldNames ? '' : 'type', $pb.PbFieldType.KE, valueOf: JSONSchema_JSONSchemaSimpleTypes.valueOf, enumValues: JSONSchema_JSONSchemaSimpleTypes.values, defaultEnumValue: JSONSchema_JSONSchemaSimpleTypes.UNKNOWN)
|
||||||
..aOS(36, _omitFieldNames ? '' : 'format')
|
..aOS(36, _omitFieldNames ? '' : 'format')
|
||||||
..pPS(46, _omitFieldNames ? '' : 'enum')
|
..pPS(46, _omitFieldNames ? '' : 'enum')
|
||||||
|
..m<$core.String, $0.Value>(48, _omitFieldNames ? '' : 'extensions', entryClassName: 'JSONSchema.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
|
..aOM<JSONSchema_FieldConfiguration>(1001, _omitFieldNames ? '' : 'fieldConfiguration', subBuilder: JSONSchema_FieldConfiguration.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1466,6 +1887,24 @@ class JSONSchema extends $pb.GeneratedMessage {
|
|||||||
/// Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1
|
/// Items in `enum` must be unique https://tools.ietf.org/html/draft-fge-json-schema-validation-00#section-5.5.1
|
||||||
@$pb.TagNumber(46)
|
@$pb.TagNumber(46)
|
||||||
$pb.PbList<$core.String> get enum_46 => $_getList(23);
|
$pb.PbList<$core.String> get enum_46 => $_getList(23);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
|
@$pb.TagNumber(48)
|
||||||
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(24);
|
||||||
|
|
||||||
|
/// Additional field level properties used when generating the OpenAPI v2 file.
|
||||||
|
@$pb.TagNumber(1001)
|
||||||
|
JSONSchema_FieldConfiguration get fieldConfiguration => $_getN(25);
|
||||||
|
@$pb.TagNumber(1001)
|
||||||
|
set fieldConfiguration(JSONSchema_FieldConfiguration value) => $_setField(1001, value);
|
||||||
|
@$pb.TagNumber(1001)
|
||||||
|
$core.bool hasFieldConfiguration() => $_has(25);
|
||||||
|
@$pb.TagNumber(1001)
|
||||||
|
void clearFieldConfiguration() => $_clearField(1001);
|
||||||
|
@$pb.TagNumber(1001)
|
||||||
|
JSONSchema_FieldConfiguration ensureFieldConfiguration() => $_ensure(25);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `Tag` is a representation of OpenAPI v2 specification's Tag object.
|
/// `Tag` is a representation of OpenAPI v2 specification's Tag object.
|
||||||
@@ -1473,12 +1912,16 @@ class JSONSchema extends $pb.GeneratedMessage {
|
|||||||
/// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#tagObject
|
/// See: https://github.com/OAI/OpenAPI-Specification/blob/3.0.0/versions/2.0.md#tagObject
|
||||||
class Tag extends $pb.GeneratedMessage {
|
class Tag extends $pb.GeneratedMessage {
|
||||||
factory Tag({
|
factory Tag({
|
||||||
|
$core.String? name,
|
||||||
$core.String? description,
|
$core.String? description,
|
||||||
ExternalDocumentation? externalDocs,
|
ExternalDocumentation? externalDocs,
|
||||||
|
$core.Iterable<$core.MapEntry<$core.String, $0.Value>>? extensions,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
|
if (name != null) result.name = name;
|
||||||
if (description != null) result.description = description;
|
if (description != null) result.description = description;
|
||||||
if (externalDocs != null) result.externalDocs = externalDocs;
|
if (externalDocs != null) result.externalDocs = externalDocs;
|
||||||
|
if (extensions != null) result.extensions.addEntries(extensions);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1488,8 +1931,10 @@ class Tag extends $pb.GeneratedMessage {
|
|||||||
factory Tag.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory Tag.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Tag', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Tag', package: const $pb.PackageName(_omitMessageNames ? '' : 'grpc.gateway.protoc_gen_openapiv2.options'), createEmptyInstance: create)
|
||||||
|
..aOS(1, _omitFieldNames ? '' : 'name')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'description')
|
..aOS(2, _omitFieldNames ? '' : 'description')
|
||||||
..aOM<ExternalDocumentation>(3, _omitFieldNames ? '' : 'externalDocs', subBuilder: ExternalDocumentation.create)
|
..aOM<ExternalDocumentation>(3, _omitFieldNames ? '' : 'externalDocs', subBuilder: ExternalDocumentation.create)
|
||||||
|
..m<$core.String, $0.Value>(4, _omitFieldNames ? '' : 'extensions', entryClassName: 'Tag.ExtensionsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $0.Value.create, valueDefaultOrMaker: $0.Value.getDefault, packageName: const $pb.PackageName('grpc.gateway.protoc_gen_openapiv2.options'))
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -1510,28 +1955,46 @@ class Tag extends $pb.GeneratedMessage {
|
|||||||
static Tag getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Tag>(create);
|
static Tag getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Tag>(create);
|
||||||
static Tag? _defaultInstance;
|
static Tag? _defaultInstance;
|
||||||
|
|
||||||
|
/// The name of the tag. Use it to allow override of the name of a
|
||||||
|
/// global Tag object, then use that name to reference the tag throughout the
|
||||||
|
/// OpenAPI file.
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.String get name => $_getSZ(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
set name($core.String value) => $_setString(0, value);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
$core.bool hasName() => $_has(0);
|
||||||
|
@$pb.TagNumber(1)
|
||||||
|
void clearName() => $_clearField(1);
|
||||||
|
|
||||||
/// A short description for the tag. GFM syntax can be used for rich text
|
/// A short description for the tag. GFM syntax can be used for rich text
|
||||||
/// representation.
|
/// representation.
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$core.String get description => $_getSZ(0);
|
$core.String get description => $_getSZ(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
set description($core.String value) => $_setString(0, value);
|
set description($core.String value) => $_setString(1, value);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$core.bool hasDescription() => $_has(0);
|
$core.bool hasDescription() => $_has(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
void clearDescription() => $_clearField(2);
|
void clearDescription() => $_clearField(2);
|
||||||
|
|
||||||
/// Additional external documentation for this tag.
|
/// Additional external documentation for this tag.
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
ExternalDocumentation get externalDocs => $_getN(1);
|
ExternalDocumentation get externalDocs => $_getN(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
set externalDocs(ExternalDocumentation value) => $_setField(3, value);
|
set externalDocs(ExternalDocumentation value) => $_setField(3, value);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
$core.bool hasExternalDocs() => $_has(1);
|
$core.bool hasExternalDocs() => $_has(2);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
void clearExternalDocs() => $_clearField(3);
|
void clearExternalDocs() => $_clearField(3);
|
||||||
@$pb.TagNumber(3)
|
@$pb.TagNumber(3)
|
||||||
ExternalDocumentation ensureExternalDocs() => $_ensure(1);
|
ExternalDocumentation ensureExternalDocs() => $_ensure(2);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `SecurityDefinitions` is a representation of OpenAPI v2 specification's
|
/// `SecurityDefinitions` is a representation of OpenAPI v2 specification's
|
||||||
@@ -1746,6 +2209,9 @@ class SecurityScheme extends $pb.GeneratedMessage {
|
|||||||
@$pb.TagNumber(8)
|
@$pb.TagNumber(8)
|
||||||
Scopes ensureScopes() => $_ensure(7);
|
Scopes ensureScopes() => $_ensure(7);
|
||||||
|
|
||||||
|
/// Custom properties that start with "x-" such as "x-foo" used to describe
|
||||||
|
/// extra functionality that is not covered by the standard OpenAPI Specification.
|
||||||
|
/// See: https://swagger.io/docs/specification/2-0/swagger-extensions/
|
||||||
@$pb.TagNumber(9)
|
@$pb.TagNumber(9)
|
||||||
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(8);
|
$pb.PbMap<$core.String, $0.Value> get extensions => $_getMap(8);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,6 +37,29 @@ class Scheme extends $pb.ProtobufEnum {
|
|||||||
const Scheme._(super.value, super.name);
|
const Scheme._(super.value, super.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// `Type` is a supported HTTP header type.
|
||||||
|
/// See https://swagger.io/specification/v2/#parameterType.
|
||||||
|
class HeaderParameter_Type extends $pb.ProtobufEnum {
|
||||||
|
static const HeaderParameter_Type UNKNOWN = HeaderParameter_Type._(0, _omitEnumNames ? '' : 'UNKNOWN');
|
||||||
|
static const HeaderParameter_Type STRING = HeaderParameter_Type._(1, _omitEnumNames ? '' : 'STRING');
|
||||||
|
static const HeaderParameter_Type NUMBER = HeaderParameter_Type._(2, _omitEnumNames ? '' : 'NUMBER');
|
||||||
|
static const HeaderParameter_Type INTEGER = HeaderParameter_Type._(3, _omitEnumNames ? '' : 'INTEGER');
|
||||||
|
static const HeaderParameter_Type BOOLEAN = HeaderParameter_Type._(4, _omitEnumNames ? '' : 'BOOLEAN');
|
||||||
|
|
||||||
|
static const $core.List<HeaderParameter_Type> values = <HeaderParameter_Type> [
|
||||||
|
UNKNOWN,
|
||||||
|
STRING,
|
||||||
|
NUMBER,
|
||||||
|
INTEGER,
|
||||||
|
BOOLEAN,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<HeaderParameter_Type?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 4);
|
||||||
|
static HeaderParameter_Type? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const HeaderParameter_Type._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
class JSONSchema_JSONSchemaSimpleTypes extends $pb.ProtobufEnum {
|
class JSONSchema_JSONSchemaSimpleTypes extends $pb.ProtobufEnum {
|
||||||
static const JSONSchema_JSONSchemaSimpleTypes UNKNOWN = JSONSchema_JSONSchemaSimpleTypes._(0, _omitEnumNames ? '' : 'UNKNOWN');
|
static const JSONSchema_JSONSchemaSimpleTypes UNKNOWN = JSONSchema_JSONSchemaSimpleTypes._(0, _omitEnumNames ? '' : 'UNKNOWN');
|
||||||
static const JSONSchema_JSONSchemaSimpleTypes ARRAY = JSONSchema_JSONSchemaSimpleTypes._(1, _omitEnumNames ? '' : 'ARRAY');
|
static const JSONSchema_JSONSchemaSimpleTypes ARRAY = JSONSchema_JSONSchemaSimpleTypes._(1, _omitEnumNames ? '' : 'ARRAY');
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ const Swagger$json = {
|
|||||||
{'1': 'responses', '3': 10, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry', '10': 'responses'},
|
{'1': 'responses', '3': 10, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Swagger.ResponsesEntry', '10': 'responses'},
|
||||||
{'1': 'security_definitions', '3': 11, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions', '10': 'securityDefinitions'},
|
{'1': 'security_definitions', '3': 11, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityDefinitions', '10': 'securityDefinitions'},
|
||||||
{'1': 'security', '3': 12, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement', '10': 'security'},
|
{'1': 'security', '3': 12, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement', '10': 'security'},
|
||||||
|
{'1': 'tags', '3': 13, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Tag', '10': 'tags'},
|
||||||
{'1': 'external_docs', '3': 14, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation', '10': 'externalDocs'},
|
{'1': 'external_docs', '3': 14, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation', '10': 'externalDocs'},
|
||||||
{'1': 'extensions', '3': 15, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry', '10': 'extensions'},
|
{'1': 'extensions', '3': 15, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Swagger.ExtensionsEntry', '10': 'extensions'},
|
||||||
],
|
],
|
||||||
@@ -52,7 +53,6 @@ const Swagger$json = {
|
|||||||
'9': [
|
'9': [
|
||||||
{'1': 8, '2': 9},
|
{'1': 8, '2': 9},
|
||||||
{'1': 9, '2': 10},
|
{'1': 9, '2': 10},
|
||||||
{'1': 13, '2': 14},
|
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -88,15 +88,16 @@ final $typed_data.Uint8List swaggerDescriptor = $convert.base64Decode(
|
|||||||
'VjdXJpdHlfZGVmaW5pdGlvbnMYCyABKAsyPi5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVu'
|
'VjdXJpdHlfZGVmaW5pdGlvbnMYCyABKAsyPi5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVu'
|
||||||
'YXBpdjIub3B0aW9ucy5TZWN1cml0eURlZmluaXRpb25zUhNzZWN1cml0eURlZmluaXRpb25zEl'
|
'YXBpdjIub3B0aW9ucy5TZWN1cml0eURlZmluaXRpb25zUhNzZWN1cml0eURlZmluaXRpb25zEl'
|
||||||
'oKCHNlY3VyaXR5GAwgAygLMj4uZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9w'
|
'oKCHNlY3VyaXR5GAwgAygLMj4uZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9w'
|
||||||
'dGlvbnMuU2VjdXJpdHlSZXF1aXJlbWVudFIIc2VjdXJpdHkSZQoNZXh0ZXJuYWxfZG9jcxgOIA'
|
'dGlvbnMuU2VjdXJpdHlSZXF1aXJlbWVudFIIc2VjdXJpdHkSQgoEdGFncxgNIAMoCzIuLmdycG'
|
||||||
'EoCzJALmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25zLkV4dGVybmFs'
|
'MuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25zLlRhZ1IEdGFncxJlCg1leHRl'
|
||||||
'RG9jdW1lbnRhdGlvblIMZXh0ZXJuYWxEb2NzEmIKCmV4dGVuc2lvbnMYDyADKAsyQi5ncnBjLm'
|
'cm5hbF9kb2NzGA4gASgLMkAuZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdG'
|
||||||
'dhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5Td2FnZ2VyLkV4dGVuc2lvbnNF'
|
'lvbnMuRXh0ZXJuYWxEb2N1bWVudGF0aW9uUgxleHRlcm5hbERvY3MSYgoKZXh0ZW5zaW9ucxgP'
|
||||||
'bnRyeVIKZXh0ZW5zaW9ucxpxCg5SZXNwb25zZXNFbnRyeRIQCgNrZXkYASABKAlSA2tleRJJCg'
|
'IAMoCzJCLmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25zLlN3YWdnZX'
|
||||||
'V2YWx1ZRgCIAEoCzIzLmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25z'
|
'IuRXh0ZW5zaW9uc0VudHJ5UgpleHRlbnNpb25zGnEKDlJlc3BvbnNlc0VudHJ5EhAKA2tleRgB'
|
||||||
'LlJlc3BvbnNlUgV2YWx1ZToCOAEaVQoPRXh0ZW5zaW9uc0VudHJ5EhAKA2tleRgBIAEoCVIDa2'
|
'IAEoCVIDa2V5EkkKBXZhbHVlGAIgASgLMjMuZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3Blbm'
|
||||||
'V5EiwKBXZhbHVlGAIgASgLMhYuZ29vZ2xlLnByb3RvYnVmLlZhbHVlUgV2YWx1ZToCOAFKBAgI'
|
'FwaXYyLm9wdGlvbnMuUmVzcG9uc2VSBXZhbHVlOgI4ARpVCg9FeHRlbnNpb25zRW50cnkSEAoD'
|
||||||
'EAlKBAgJEApKBAgNEA4=');
|
'a2V5GAEgASgJUgNrZXkSLAoFdmFsdWUYAiABKAsyFi5nb29nbGUucHJvdG9idWYuVmFsdWVSBX'
|
||||||
|
'ZhbHVlOgI4AUoECAgQCUoECAkQCg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use operationDescriptor instead')
|
@$core.Deprecated('Use operationDescriptor instead')
|
||||||
const Operation$json = {
|
const Operation$json = {
|
||||||
@@ -114,6 +115,7 @@ const Operation$json = {
|
|||||||
{'1': 'deprecated', '3': 11, '4': 1, '5': 8, '10': 'deprecated'},
|
{'1': 'deprecated', '3': 11, '4': 1, '5': 8, '10': 'deprecated'},
|
||||||
{'1': 'security', '3': 12, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement', '10': 'security'},
|
{'1': 'security', '3': 12, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement', '10': 'security'},
|
||||||
{'1': 'extensions', '3': 13, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry', '10': 'extensions'},
|
{'1': 'extensions', '3': 13, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Operation.ExtensionsEntry', '10': 'extensions'},
|
||||||
|
{'1': 'parameters', '3': 14, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Parameters', '10': 'parameters'},
|
||||||
],
|
],
|
||||||
'3': [Operation_ResponsesEntry$json, Operation_ExtensionsEntry$json],
|
'3': [Operation_ResponsesEntry$json, Operation_ExtensionsEntry$json],
|
||||||
'9': [
|
'9': [
|
||||||
@@ -155,11 +157,63 @@ final $typed_data.Uint8List operationDescriptor = $convert.base64Decode(
|
|||||||
'N1cml0eRgMIAMoCzI+LmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25z'
|
'N1cml0eRgMIAMoCzI+LmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29wZW5hcGl2Mi5vcHRpb25z'
|
||||||
'LlNlY3VyaXR5UmVxdWlyZW1lbnRSCHNlY3VyaXR5EmQKCmV4dGVuc2lvbnMYDSADKAsyRC5ncn'
|
'LlNlY3VyaXR5UmVxdWlyZW1lbnRSCHNlY3VyaXR5EmQKCmV4dGVuc2lvbnMYDSADKAsyRC5ncn'
|
||||||
'BjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5PcGVyYXRpb24uRXh0ZW5z'
|
'BjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5PcGVyYXRpb24uRXh0ZW5z'
|
||||||
'aW9uc0VudHJ5UgpleHRlbnNpb25zGnEKDlJlc3BvbnNlc0VudHJ5EhAKA2tleRgBIAEoCVIDa2'
|
'aW9uc0VudHJ5UgpleHRlbnNpb25zElUKCnBhcmFtZXRlcnMYDiABKAsyNS5ncnBjLmdhdGV3YX'
|
||||||
'V5EkkKBXZhbHVlGAIgASgLMjMuZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9w'
|
'kucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5QYXJhbWV0ZXJzUgpwYXJhbWV0ZXJzGnEK'
|
||||||
'dGlvbnMuUmVzcG9uc2VSBXZhbHVlOgI4ARpVCg9FeHRlbnNpb25zRW50cnkSEAoDa2V5GAEgAS'
|
'DlJlc3BvbnNlc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EkkKBXZhbHVlGAIgASgLMjMuZ3JwYy'
|
||||||
'gJUgNrZXkSLAoFdmFsdWUYAiABKAsyFi5nb29nbGUucHJvdG9idWYuVmFsdWVSBXZhbHVlOgI4'
|
'5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdGlvbnMuUmVzcG9uc2VSBXZhbHVlOgI4'
|
||||||
'AUoECAgQCQ==');
|
'ARpVCg9FeHRlbnNpb25zRW50cnkSEAoDa2V5GAEgASgJUgNrZXkSLAoFdmFsdWUYAiABKAsyFi'
|
||||||
|
'5nb29nbGUucHJvdG9idWYuVmFsdWVSBXZhbHVlOgI4AUoECAgQCQ==');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use parametersDescriptor instead')
|
||||||
|
const Parameters$json = {
|
||||||
|
'1': 'Parameters',
|
||||||
|
'2': [
|
||||||
|
{'1': 'headers', '3': 1, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter', '10': 'headers'},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `Parameters`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List parametersDescriptor = $convert.base64Decode(
|
||||||
|
'CgpQYXJhbWV0ZXJzElQKB2hlYWRlcnMYASADKAsyOi5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl'
|
||||||
|
'9vcGVuYXBpdjIub3B0aW9ucy5IZWFkZXJQYXJhbWV0ZXJSB2hlYWRlcnM=');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use headerParameterDescriptor instead')
|
||||||
|
const HeaderParameter$json = {
|
||||||
|
'1': 'HeaderParameter',
|
||||||
|
'2': [
|
||||||
|
{'1': 'name', '3': 1, '4': 1, '5': 9, '10': 'name'},
|
||||||
|
{'1': 'description', '3': 2, '4': 1, '5': 9, '10': 'description'},
|
||||||
|
{'1': 'type', '3': 3, '4': 1, '5': 14, '6': '.grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type', '10': 'type'},
|
||||||
|
{'1': 'format', '3': 4, '4': 1, '5': 9, '10': 'format'},
|
||||||
|
{'1': 'required', '3': 5, '4': 1, '5': 8, '10': 'required'},
|
||||||
|
],
|
||||||
|
'4': [HeaderParameter_Type$json],
|
||||||
|
'9': [
|
||||||
|
{'1': 6, '2': 7},
|
||||||
|
{'1': 7, '2': 8},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use headerParameterDescriptor instead')
|
||||||
|
const HeaderParameter_Type$json = {
|
||||||
|
'1': 'Type',
|
||||||
|
'2': [
|
||||||
|
{'1': 'UNKNOWN', '2': 0},
|
||||||
|
{'1': 'STRING', '2': 1},
|
||||||
|
{'1': 'NUMBER', '2': 2},
|
||||||
|
{'1': 'INTEGER', '2': 3},
|
||||||
|
{'1': 'BOOLEAN', '2': 4},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `HeaderParameter`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List headerParameterDescriptor = $convert.base64Decode(
|
||||||
|
'Cg9IZWFkZXJQYXJhbWV0ZXISEgoEbmFtZRgBIAEoCVIEbmFtZRIgCgtkZXNjcmlwdGlvbhgCIA'
|
||||||
|
'EoCVILZGVzY3JpcHRpb24SUwoEdHlwZRgDIAEoDjI/LmdycGMuZ2F0ZXdheS5wcm90b2NfZ2Vu'
|
||||||
|
'X29wZW5hcGl2Mi5vcHRpb25zLkhlYWRlclBhcmFtZXRlci5UeXBlUgR0eXBlEhYKBmZvcm1hdB'
|
||||||
|
'gEIAEoCVIGZm9ybWF0EhoKCHJlcXVpcmVkGAUgASgIUghyZXF1aXJlZCJFCgRUeXBlEgsKB1VO'
|
||||||
|
'S05PV04QABIKCgZTVFJJTkcQARIKCgZOVU1CRVIQAhILCgdJTlRFR0VSEAMSCwoHQk9PTEVBTh'
|
||||||
|
'AESgQIBhAHSgQIBxAI');
|
||||||
|
|
||||||
@$core.Deprecated('Use headerDescriptor instead')
|
@$core.Deprecated('Use headerDescriptor instead')
|
||||||
const Header$json = {
|
const Header$json = {
|
||||||
@@ -356,6 +410,45 @@ final $typed_data.Uint8List schemaDescriptor = $convert.base64Decode(
|
|||||||
'Lm9wdGlvbnMuRXh0ZXJuYWxEb2N1bWVudGF0aW9uUgxleHRlcm5hbERvY3MSGAoHZXhhbXBsZR'
|
'Lm9wdGlvbnMuRXh0ZXJuYWxEb2N1bWVudGF0aW9uUgxleHRlcm5hbERvY3MSGAoHZXhhbXBsZR'
|
||||||
'gGIAEoCVIHZXhhbXBsZUoECAQQBQ==');
|
'gGIAEoCVIHZXhhbXBsZUoECAQQBQ==');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use enumSchemaDescriptor instead')
|
||||||
|
const EnumSchema$json = {
|
||||||
|
'1': 'EnumSchema',
|
||||||
|
'2': [
|
||||||
|
{'1': 'description', '3': 1, '4': 1, '5': 9, '10': 'description'},
|
||||||
|
{'1': 'default', '3': 2, '4': 1, '5': 9, '10': 'default'},
|
||||||
|
{'1': 'title', '3': 3, '4': 1, '5': 9, '10': 'title'},
|
||||||
|
{'1': 'required', '3': 4, '4': 1, '5': 8, '10': 'required'},
|
||||||
|
{'1': 'read_only', '3': 5, '4': 1, '5': 8, '10': 'readOnly'},
|
||||||
|
{'1': 'external_docs', '3': 6, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation', '10': 'externalDocs'},
|
||||||
|
{'1': 'example', '3': 7, '4': 1, '5': 9, '10': 'example'},
|
||||||
|
{'1': 'ref', '3': 8, '4': 1, '5': 9, '10': 'ref'},
|
||||||
|
{'1': 'extensions', '3': 9, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.EnumSchema.ExtensionsEntry', '10': 'extensions'},
|
||||||
|
],
|
||||||
|
'3': [EnumSchema_ExtensionsEntry$json],
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use enumSchemaDescriptor instead')
|
||||||
|
const EnumSchema_ExtensionsEntry$json = {
|
||||||
|
'1': 'ExtensionsEntry',
|
||||||
|
'2': [
|
||||||
|
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||||
|
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.google.protobuf.Value', '10': 'value'},
|
||||||
|
],
|
||||||
|
'7': {'7': true},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `EnumSchema`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List enumSchemaDescriptor = $convert.base64Decode(
|
||||||
|
'CgpFbnVtU2NoZW1hEiAKC2Rlc2NyaXB0aW9uGAEgASgJUgtkZXNjcmlwdGlvbhIYCgdkZWZhdW'
|
||||||
|
'x0GAIgASgJUgdkZWZhdWx0EhQKBXRpdGxlGAMgASgJUgV0aXRsZRIaCghyZXF1aXJlZBgEIAEo'
|
||||||
|
'CFIIcmVxdWlyZWQSGwoJcmVhZF9vbmx5GAUgASgIUghyZWFkT25seRJlCg1leHRlcm5hbF9kb2'
|
||||||
|
'NzGAYgASgLMkAuZ3JwYy5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdGlvbnMuRXh0'
|
||||||
|
'ZXJuYWxEb2N1bWVudGF0aW9uUgxleHRlcm5hbERvY3MSGAoHZXhhbXBsZRgHIAEoCVIHZXhhbX'
|
||||||
|
'BsZRIQCgNyZWYYCCABKAlSA3JlZhJlCgpleHRlbnNpb25zGAkgAygLMkUuZ3JwYy5nYXRld2F5'
|
||||||
|
'LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdGlvbnMuRW51bVNjaGVtYS5FeHRlbnNpb25zRW50cn'
|
||||||
|
'lSCmV4dGVuc2lvbnMaVQoPRXh0ZW5zaW9uc0VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EiwKBXZh'
|
||||||
|
'bHVlGAIgASgLMhYuZ29vZ2xlLnByb3RvYnVmLlZhbHVlUgV2YWx1ZToCOAE=');
|
||||||
|
|
||||||
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
||||||
const JSONSchema$json = {
|
const JSONSchema$json = {
|
||||||
'1': 'JSONSchema',
|
'1': 'JSONSchema',
|
||||||
@@ -384,7 +477,10 @@ const JSONSchema$json = {
|
|||||||
{'1': 'type', '3': 35, '4': 3, '5': 14, '6': '.grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes', '10': 'type'},
|
{'1': 'type', '3': 35, '4': 3, '5': 14, '6': '.grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.JSONSchemaSimpleTypes', '10': 'type'},
|
||||||
{'1': 'format', '3': 36, '4': 1, '5': 9, '10': 'format'},
|
{'1': 'format', '3': 36, '4': 1, '5': 9, '10': 'format'},
|
||||||
{'1': 'enum', '3': 46, '4': 3, '5': 9, '10': 'enum'},
|
{'1': 'enum', '3': 46, '4': 3, '5': 9, '10': 'enum'},
|
||||||
|
{'1': 'field_configuration', '3': 1001, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.FieldConfiguration', '10': 'fieldConfiguration'},
|
||||||
|
{'1': 'extensions', '3': 48, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.JSONSchema.ExtensionsEntry', '10': 'extensions'},
|
||||||
],
|
],
|
||||||
|
'3': [JSONSchema_FieldConfiguration$json, JSONSchema_ExtensionsEntry$json],
|
||||||
'4': [JSONSchema_JSONSchemaSimpleTypes$json],
|
'4': [JSONSchema_JSONSchemaSimpleTypes$json],
|
||||||
'9': [
|
'9': [
|
||||||
{'1': 1, '2': 2},
|
{'1': 1, '2': 2},
|
||||||
@@ -403,6 +499,25 @@ const JSONSchema$json = {
|
|||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
||||||
|
const JSONSchema_FieldConfiguration$json = {
|
||||||
|
'1': 'FieldConfiguration',
|
||||||
|
'2': [
|
||||||
|
{'1': 'path_param_name', '3': 47, '4': 1, '5': 9, '10': 'pathParamName'},
|
||||||
|
{'1': 'deprecated', '3': 49, '4': 1, '5': 8, '10': 'deprecated'},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
||||||
|
const JSONSchema_ExtensionsEntry$json = {
|
||||||
|
'1': 'ExtensionsEntry',
|
||||||
|
'2': [
|
||||||
|
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||||
|
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.google.protobuf.Value', '10': 'value'},
|
||||||
|
],
|
||||||
|
'7': {'7': true},
|
||||||
|
};
|
||||||
|
|
||||||
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
@$core.Deprecated('Use jSONSchemaDescriptor instead')
|
||||||
const JSONSchema_JSONSchemaSimpleTypes$json = {
|
const JSONSchema_JSONSchemaSimpleTypes$json = {
|
||||||
'1': 'JSONSchemaSimpleTypes',
|
'1': 'JSONSchemaSimpleTypes',
|
||||||
@@ -434,28 +549,50 @@ final $typed_data.Uint8List jSONSchemaDescriptor = $convert.base64Decode(
|
|||||||
'JlZBgaIAMoCVIIcmVxdWlyZWQSFAoFYXJyYXkYIiADKAlSBWFycmF5El8KBHR5cGUYIyADKA4y'
|
'JlZBgaIAMoCVIIcmVxdWlyZWQSFAoFYXJyYXkYIiADKAlSBWFycmF5El8KBHR5cGUYIyADKA4y'
|
||||||
'Sy5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5KU09OU2NoZW1hLk'
|
'Sy5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5KU09OU2NoZW1hLk'
|
||||||
'pTT05TY2hlbWFTaW1wbGVUeXBlc1IEdHlwZRIWCgZmb3JtYXQYJCABKAlSBmZvcm1hdBISCgRl'
|
'pTT05TY2hlbWFTaW1wbGVUeXBlc1IEdHlwZRIWCgZmb3JtYXQYJCABKAlSBmZvcm1hdBISCgRl'
|
||||||
'bnVtGC4gAygJUgRlbnVtIncKFUpTT05TY2hlbWFTaW1wbGVUeXBlcxILCgdVTktOT1dOEAASCQ'
|
'bnVtGC4gAygJUgRlbnVtEnoKE2ZpZWxkX2NvbmZpZ3VyYXRpb24Y6QcgASgLMkguZ3JwYy5nYX'
|
||||||
'oFQVJSQVkQARILCgdCT09MRUFOEAISCwoHSU5URUdFUhADEggKBE5VTEwQBBIKCgZOVU1CRVIQ'
|
'Rld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdGlvbnMuSlNPTlNjaGVtYS5GaWVsZENvbmZp'
|
||||||
'BRIKCgZPQkpFQ1QQBhIKCgZTVFJJTkcQB0oECAEQAkoECAIQA0oECAQQBUoECBIQE0oECBMQFE'
|
'Z3VyYXRpb25SEmZpZWxkQ29uZmlndXJhdGlvbhJlCgpleHRlbnNpb25zGDAgAygLMkUuZ3JwYy'
|
||||||
'oECBcQGEoECBsQHEoECBwQHUoECB0QHkoECB4QIkoECCUQKkoECCoQK0oECCsQLg==');
|
'5nYXRld2F5LnByb3RvY19nZW5fb3BlbmFwaXYyLm9wdGlvbnMuSlNPTlNjaGVtYS5FeHRlbnNp'
|
||||||
|
'b25zRW50cnlSCmV4dGVuc2lvbnMaXAoSRmllbGRDb25maWd1cmF0aW9uEiYKD3BhdGhfcGFyYW'
|
||||||
|
'1fbmFtZRgvIAEoCVINcGF0aFBhcmFtTmFtZRIeCgpkZXByZWNhdGVkGDEgASgIUgpkZXByZWNh'
|
||||||
|
'dGVkGlUKD0V4dGVuc2lvbnNFbnRyeRIQCgNrZXkYASABKAlSA2tleRIsCgV2YWx1ZRgCIAEoCz'
|
||||||
|
'IWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZVIFdmFsdWU6AjgBIncKFUpTT05TY2hlbWFTaW1wbGVU'
|
||||||
|
'eXBlcxILCgdVTktOT1dOEAASCQoFQVJSQVkQARILCgdCT09MRUFOEAISCwoHSU5URUdFUhADEg'
|
||||||
|
'gKBE5VTEwQBBIKCgZOVU1CRVIQBRIKCgZPQkpFQ1QQBhIKCgZTVFJJTkcQB0oECAEQAkoECAIQ'
|
||||||
|
'A0oECAQQBUoECBIQE0oECBMQFEoECBcQGEoECBsQHEoECBwQHUoECB0QHkoECB4QIkoECCUQKk'
|
||||||
|
'oECCoQK0oECCsQLg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use tagDescriptor instead')
|
@$core.Deprecated('Use tagDescriptor instead')
|
||||||
const Tag$json = {
|
const Tag$json = {
|
||||||
'1': 'Tag',
|
'1': 'Tag',
|
||||||
'2': [
|
'2': [
|
||||||
|
{'1': 'name', '3': 1, '4': 1, '5': 9, '10': 'name'},
|
||||||
{'1': 'description', '3': 2, '4': 1, '5': 9, '10': 'description'},
|
{'1': 'description', '3': 2, '4': 1, '5': 9, '10': 'description'},
|
||||||
{'1': 'external_docs', '3': 3, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation', '10': 'externalDocs'},
|
{'1': 'external_docs', '3': 3, '4': 1, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.ExternalDocumentation', '10': 'externalDocs'},
|
||||||
|
{'1': 'extensions', '3': 4, '4': 3, '5': 11, '6': '.grpc.gateway.protoc_gen_openapiv2.options.Tag.ExtensionsEntry', '10': 'extensions'},
|
||||||
],
|
],
|
||||||
'9': [
|
'3': [Tag_ExtensionsEntry$json],
|
||||||
{'1': 1, '2': 2},
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use tagDescriptor instead')
|
||||||
|
const Tag_ExtensionsEntry$json = {
|
||||||
|
'1': 'ExtensionsEntry',
|
||||||
|
'2': [
|
||||||
|
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||||
|
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.google.protobuf.Value', '10': 'value'},
|
||||||
],
|
],
|
||||||
|
'7': {'7': true},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `Tag`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `Tag`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List tagDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List tagDescriptor = $convert.base64Decode(
|
||||||
'CgNUYWcSIAoLZGVzY3JpcHRpb24YAiABKAlSC2Rlc2NyaXB0aW9uEmUKDWV4dGVybmFsX2RvY3'
|
'CgNUYWcSEgoEbmFtZRgBIAEoCVIEbmFtZRIgCgtkZXNjcmlwdGlvbhgCIAEoCVILZGVzY3JpcH'
|
||||||
'MYAyABKAsyQC5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0aW9ucy5FeHRl'
|
'Rpb24SZQoNZXh0ZXJuYWxfZG9jcxgDIAEoCzJALmdycGMuZ2F0ZXdheS5wcm90b2NfZ2VuX29w'
|
||||||
'cm5hbERvY3VtZW50YXRpb25SDGV4dGVybmFsRG9jc0oECAEQAg==');
|
'ZW5hcGl2Mi5vcHRpb25zLkV4dGVybmFsRG9jdW1lbnRhdGlvblIMZXh0ZXJuYWxEb2NzEl4KCm'
|
||||||
|
'V4dGVuc2lvbnMYBCADKAsyPi5ncnBjLmdhdGV3YXkucHJvdG9jX2dlbl9vcGVuYXBpdjIub3B0'
|
||||||
|
'aW9ucy5UYWcuRXh0ZW5zaW9uc0VudHJ5UgpleHRlbnNpb25zGlUKD0V4dGVuc2lvbnNFbnRyeR'
|
||||||
|
'IQCgNrZXkYASABKAlSA2tleRIsCgV2YWx1ZRgCIAEoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1'
|
||||||
|
'ZVIFdmFsdWU6AjgB');
|
||||||
|
|
||||||
@$core.Deprecated('Use securityDefinitionsDescriptor instead')
|
@$core.Deprecated('Use securityDefinitionsDescriptor instead')
|
||||||
const SecurityDefinitions$json = {
|
const SecurityDefinitions$json = {
|
||||||
|
|||||||
@@ -1442,636 +1442,6 @@ class ListProjectComposedFieldResult extends $pb.GeneratedMessage {
|
|||||||
$pb.PbList<ComposedField> get results => $_getList(0);
|
$pb.PbList<ComposedField> get results => $_getList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// IDs of the Composed Field
|
|
||||||
class GetSiteComposedFieldRequest extends $pb.GeneratedMessage {
|
|
||||||
factory GetSiteComposedFieldRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? composedFieldID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (composedFieldID != null) result.composedFieldID = composedFieldID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetSiteComposedFieldRequest._();
|
|
||||||
|
|
||||||
factory GetSiteComposedFieldRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetSiteComposedFieldRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetSiteComposedFieldRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'ComposedFieldID', protoName: 'ComposedFieldID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteComposedFieldRequest clone() => GetSiteComposedFieldRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteComposedFieldRequest copyWith(void Function(GetSiteComposedFieldRequest) updates) => super.copyWith((message) => updates(message as GetSiteComposedFieldRequest)) as GetSiteComposedFieldRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteComposedFieldRequest create() => GetSiteComposedFieldRequest._();
|
|
||||||
@$core.override
|
|
||||||
GetSiteComposedFieldRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetSiteComposedFieldRequest> createRepeated() => $pb.PbList<GetSiteComposedFieldRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteComposedFieldRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetSiteComposedFieldRequest>(create);
|
|
||||||
static GetSiteComposedFieldRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Composed Field
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get composedFieldID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set composedFieldID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasComposedFieldID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearComposedFieldID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// All the Content about the composed field
|
|
||||||
class GetSiteComposedFieldResult extends $pb.GeneratedMessage {
|
|
||||||
factory GetSiteComposedFieldResult({
|
|
||||||
ComposedField? result,
|
|
||||||
}) {
|
|
||||||
final result$ = create();
|
|
||||||
if (result != null) result$.result = result;
|
|
||||||
return result$;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetSiteComposedFieldResult._();
|
|
||||||
|
|
||||||
factory GetSiteComposedFieldResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetSiteComposedFieldResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetSiteComposedFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<ComposedField>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: ComposedField.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteComposedFieldResult clone() => GetSiteComposedFieldResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteComposedFieldResult copyWith(void Function(GetSiteComposedFieldResult) updates) => super.copyWith((message) => updates(message as GetSiteComposedFieldResult)) as GetSiteComposedFieldResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteComposedFieldResult create() => GetSiteComposedFieldResult._();
|
|
||||||
@$core.override
|
|
||||||
GetSiteComposedFieldResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetSiteComposedFieldResult> createRepeated() => $pb.PbList<GetSiteComposedFieldResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteComposedFieldResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetSiteComposedFieldResult>(create);
|
|
||||||
static GetSiteComposedFieldResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
ComposedField get result => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set result(ComposedField value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasResult() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearResult() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
ComposedField ensureResult() => $_ensure(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Content that needs to be stored
|
|
||||||
class CreateSiteComposedFieldRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreateSiteComposedFieldRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? name,
|
|
||||||
$core.String? screenID,
|
|
||||||
$core.String? tabID,
|
|
||||||
$core.String? payload,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (screenID != null) result.screenID = screenID;
|
|
||||||
if (tabID != null) result.tabID = tabID;
|
|
||||||
if (payload != null) result.payload = payload;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreateSiteComposedFieldRequest._();
|
|
||||||
|
|
||||||
factory CreateSiteComposedFieldRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreateSiteComposedFieldRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateSiteComposedFieldRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'ScreenID', protoName: 'ScreenID')
|
|
||||||
..aOS(4, _omitFieldNames ? '' : 'TabID', protoName: 'TabID')
|
|
||||||
..aOS(5, _omitFieldNames ? '' : 'Payload', protoName: 'Payload')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteComposedFieldRequest clone() => CreateSiteComposedFieldRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteComposedFieldRequest copyWith(void Function(CreateSiteComposedFieldRequest) updates) => super.copyWith((message) => updates(message as CreateSiteComposedFieldRequest)) as CreateSiteComposedFieldRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteComposedFieldRequest create() => CreateSiteComposedFieldRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreateSiteComposedFieldRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreateSiteComposedFieldRequest> createRepeated() => $pb.PbList<CreateSiteComposedFieldRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteComposedFieldRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateSiteComposedFieldRequest>(create);
|
|
||||||
static CreateSiteComposedFieldRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Name of the Composed Field
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get name => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set name($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasName() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearName() => $_clearField(2);
|
|
||||||
|
|
||||||
/// Identifier of the Screen
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get screenID => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set screenID($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasScreenID() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearScreenID() => $_clearField(3);
|
|
||||||
|
|
||||||
/// Identifier of the Tab
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.String get tabID => $_getSZ(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set tabID($core.String value) => $_setString(3, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasTabID() => $_has(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearTabID() => $_clearField(4);
|
|
||||||
|
|
||||||
/// Content in the Composed Field
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.String get payload => $_getSZ(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
set payload($core.String value) => $_setString(4, value);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool hasPayload() => $_has(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
void clearPayload() => $_clearField(5);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// ID of the created Composed Field
|
|
||||||
class CreateSiteComposedFieldResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreateSiteComposedFieldResult({
|
|
||||||
$core.String? composedFieldID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (composedFieldID != null) result.composedFieldID = composedFieldID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreateSiteComposedFieldResult._();
|
|
||||||
|
|
||||||
factory CreateSiteComposedFieldResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreateSiteComposedFieldResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateSiteComposedFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ComposedFieldID', protoName: 'ComposedFieldID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteComposedFieldResult clone() => CreateSiteComposedFieldResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteComposedFieldResult copyWith(void Function(CreateSiteComposedFieldResult) updates) => super.copyWith((message) => updates(message as CreateSiteComposedFieldResult)) as CreateSiteComposedFieldResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteComposedFieldResult create() => CreateSiteComposedFieldResult._();
|
|
||||||
@$core.override
|
|
||||||
CreateSiteComposedFieldResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreateSiteComposedFieldResult> createRepeated() => $pb.PbList<CreateSiteComposedFieldResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteComposedFieldResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateSiteComposedFieldResult>(create);
|
|
||||||
static CreateSiteComposedFieldResult? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the Composed Field
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get composedFieldID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set composedFieldID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasComposedFieldID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearComposedFieldID() => $_clearField(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Content that needs to be updated
|
|
||||||
class UpdateSiteComposedFieldRequest extends $pb.GeneratedMessage {
|
|
||||||
factory UpdateSiteComposedFieldRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? composedFieldID,
|
|
||||||
$core.String? name,
|
|
||||||
$core.String? screenID,
|
|
||||||
$core.String? tabID,
|
|
||||||
$core.String? payload,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (composedFieldID != null) result.composedFieldID = composedFieldID;
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (screenID != null) result.screenID = screenID;
|
|
||||||
if (tabID != null) result.tabID = tabID;
|
|
||||||
if (payload != null) result.payload = payload;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateSiteComposedFieldRequest._();
|
|
||||||
|
|
||||||
factory UpdateSiteComposedFieldRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory UpdateSiteComposedFieldRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateSiteComposedFieldRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'ComposedFieldID', protoName: 'ComposedFieldID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..aOS(4, _omitFieldNames ? '' : 'ScreenID', protoName: 'ScreenID')
|
|
||||||
..aOS(5, _omitFieldNames ? '' : 'TabID', protoName: 'TabID')
|
|
||||||
..aOS(6, _omitFieldNames ? '' : 'Payload', protoName: 'Payload')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteComposedFieldRequest clone() => UpdateSiteComposedFieldRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteComposedFieldRequest copyWith(void Function(UpdateSiteComposedFieldRequest) updates) => super.copyWith((message) => updates(message as UpdateSiteComposedFieldRequest)) as UpdateSiteComposedFieldRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteComposedFieldRequest create() => UpdateSiteComposedFieldRequest._();
|
|
||||||
@$core.override
|
|
||||||
UpdateSiteComposedFieldRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<UpdateSiteComposedFieldRequest> createRepeated() => $pb.PbList<UpdateSiteComposedFieldRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteComposedFieldRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateSiteComposedFieldRequest>(create);
|
|
||||||
static UpdateSiteComposedFieldRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Composed Field
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get composedFieldID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set composedFieldID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasComposedFieldID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearComposedFieldID() => $_clearField(2);
|
|
||||||
|
|
||||||
/// Name of the Composed Field
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get name => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set name($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasName() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearName() => $_clearField(3);
|
|
||||||
|
|
||||||
/// Identifier of the Screen
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.String get screenID => $_getSZ(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set screenID($core.String value) => $_setString(3, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasScreenID() => $_has(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearScreenID() => $_clearField(4);
|
|
||||||
|
|
||||||
/// Identifier of the Tab
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.String get tabID => $_getSZ(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
set tabID($core.String value) => $_setString(4, value);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool hasTabID() => $_has(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
void clearTabID() => $_clearField(5);
|
|
||||||
|
|
||||||
/// Content in the Composed Field
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
$core.String get payload => $_getSZ(5);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
set payload($core.String value) => $_setString(5, value);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
$core.bool hasPayload() => $_has(5);
|
|
||||||
@$pb.TagNumber(6)
|
|
||||||
void clearPayload() => $_clearField(6);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Updated dashboard ID
|
|
||||||
class UpdateSiteComposedFieldResult extends $pb.GeneratedMessage {
|
|
||||||
factory UpdateSiteComposedFieldResult({
|
|
||||||
$core.String? composedFieldID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (composedFieldID != null) result.composedFieldID = composedFieldID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateSiteComposedFieldResult._();
|
|
||||||
|
|
||||||
factory UpdateSiteComposedFieldResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory UpdateSiteComposedFieldResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateSiteComposedFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ComposedFieldID', protoName: 'ComposedFieldID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteComposedFieldResult clone() => UpdateSiteComposedFieldResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteComposedFieldResult copyWith(void Function(UpdateSiteComposedFieldResult) updates) => super.copyWith((message) => updates(message as UpdateSiteComposedFieldResult)) as UpdateSiteComposedFieldResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteComposedFieldResult create() => UpdateSiteComposedFieldResult._();
|
|
||||||
@$core.override
|
|
||||||
UpdateSiteComposedFieldResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<UpdateSiteComposedFieldResult> createRepeated() => $pb.PbList<UpdateSiteComposedFieldResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteComposedFieldResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateSiteComposedFieldResult>(create);
|
|
||||||
static UpdateSiteComposedFieldResult? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the Composed Field
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get composedFieldID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set composedFieldID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasComposedFieldID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearComposedFieldID() => $_clearField(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// IDs of the Composed Field to be deleted
|
|
||||||
class DeleteSiteComposedFieldRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteSiteComposedFieldRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? composedFieldID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (composedFieldID != null) result.composedFieldID = composedFieldID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeleteSiteComposedFieldRequest._();
|
|
||||||
|
|
||||||
factory DeleteSiteComposedFieldRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteSiteComposedFieldRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteSiteComposedFieldRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'ComposedFieldID', protoName: 'ComposedFieldID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteComposedFieldRequest clone() => DeleteSiteComposedFieldRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteComposedFieldRequest copyWith(void Function(DeleteSiteComposedFieldRequest) updates) => super.copyWith((message) => updates(message as DeleteSiteComposedFieldRequest)) as DeleteSiteComposedFieldRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteComposedFieldRequest create() => DeleteSiteComposedFieldRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeleteSiteComposedFieldRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteSiteComposedFieldRequest> createRepeated() => $pb.PbList<DeleteSiteComposedFieldRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteComposedFieldRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteSiteComposedFieldRequest>(create);
|
|
||||||
static DeleteSiteComposedFieldRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Composed Field
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get composedFieldID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set composedFieldID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasComposedFieldID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearComposedFieldID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteSiteComposedFieldResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteSiteComposedFieldResult() => create();
|
|
||||||
|
|
||||||
DeleteSiteComposedFieldResult._();
|
|
||||||
|
|
||||||
factory DeleteSiteComposedFieldResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteSiteComposedFieldResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteSiteComposedFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteComposedFieldResult clone() => DeleteSiteComposedFieldResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteComposedFieldResult copyWith(void Function(DeleteSiteComposedFieldResult) updates) => super.copyWith((message) => updates(message as DeleteSiteComposedFieldResult)) as DeleteSiteComposedFieldResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteComposedFieldResult create() => DeleteSiteComposedFieldResult._();
|
|
||||||
@$core.override
|
|
||||||
DeleteSiteComposedFieldResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteSiteComposedFieldResult> createRepeated() => $pb.PbList<DeleteSiteComposedFieldResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteComposedFieldResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteSiteComposedFieldResult>(create);
|
|
||||||
static DeleteSiteComposedFieldResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class ListSiteComposedFieldRequest extends $pb.GeneratedMessage {
|
|
||||||
factory ListSiteComposedFieldRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? screenID,
|
|
||||||
$core.String? tabID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (screenID != null) result.screenID = screenID;
|
|
||||||
if (tabID != null) result.tabID = tabID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListSiteComposedFieldRequest._();
|
|
||||||
|
|
||||||
factory ListSiteComposedFieldRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ListSiteComposedFieldRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSiteComposedFieldRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'ScreenID', protoName: 'ScreenID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'TabID', protoName: 'TabID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteComposedFieldRequest clone() => ListSiteComposedFieldRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteComposedFieldRequest copyWith(void Function(ListSiteComposedFieldRequest) updates) => super.copyWith((message) => updates(message as ListSiteComposedFieldRequest)) as ListSiteComposedFieldRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteComposedFieldRequest create() => ListSiteComposedFieldRequest._();
|
|
||||||
@$core.override
|
|
||||||
ListSiteComposedFieldRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ListSiteComposedFieldRequest> createRepeated() => $pb.PbList<ListSiteComposedFieldRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteComposedFieldRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSiteComposedFieldRequest>(create);
|
|
||||||
static ListSiteComposedFieldRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Screen
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get screenID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set screenID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasScreenID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearScreenID() => $_clearField(2);
|
|
||||||
|
|
||||||
/// Identifier of the Tab
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get tabID => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set tabID($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasTabID() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearTabID() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// List of Composed Fields
|
|
||||||
class ListSiteComposedFieldResult extends $pb.GeneratedMessage {
|
|
||||||
factory ListSiteComposedFieldResult({
|
|
||||||
$core.Iterable<ComposedField>? results,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (results != null) result.results.addAll(results);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListSiteComposedFieldResult._();
|
|
||||||
|
|
||||||
factory ListSiteComposedFieldResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ListSiteComposedFieldResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSiteComposedFieldResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<ComposedField>(1, _omitFieldNames ? '' : 'Results', $pb.PbFieldType.PM, protoName: 'Results', subBuilder: ComposedField.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteComposedFieldResult clone() => ListSiteComposedFieldResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteComposedFieldResult copyWith(void Function(ListSiteComposedFieldResult) updates) => super.copyWith((message) => updates(message as ListSiteComposedFieldResult)) as ListSiteComposedFieldResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteComposedFieldResult create() => ListSiteComposedFieldResult._();
|
|
||||||
@$core.override
|
|
||||||
ListSiteComposedFieldResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ListSiteComposedFieldResult> createRepeated() => $pb.PbList<ListSiteComposedFieldResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteComposedFieldResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSiteComposedFieldResult>(create);
|
|
||||||
static ListSiteComposedFieldResult? _defaultInstance;
|
|
||||||
|
|
||||||
/// All Content in a Composed Field
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<ComposedField> get results => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||||
|
|||||||
@@ -72,26 +72,6 @@ class ComposedFieldServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$listProject, request, options: options);
|
return $createUnaryCall(_$listProject, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetSiteComposedFieldResult> getSite($0.GetSiteComposedFieldRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$getSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateSiteComposedFieldResult> createSite($0.CreateSiteComposedFieldRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.UpdateSiteComposedFieldResult> updateSite($0.UpdateSiteComposedFieldRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$updateSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteSiteComposedFieldResult> deleteSite($0.DeleteSiteComposedFieldRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ListSiteComposedFieldResult> listSite($0.ListSiteComposedFieldRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$listSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
// method descriptors
|
// method descriptors
|
||||||
|
|
||||||
static final _$get = $grpc.ClientMethod<$0.GetComposedFieldRequest, $0.GetComposedFieldResult>(
|
static final _$get = $grpc.ClientMethod<$0.GetComposedFieldRequest, $0.GetComposedFieldResult>(
|
||||||
@@ -134,26 +114,6 @@ class ComposedFieldServiceClient extends $grpc.Client {
|
|||||||
'/vizapi.ComposedFieldService/ListProject',
|
'/vizapi.ComposedFieldService/ListProject',
|
||||||
($0.ListProjectComposedFieldRequest value) => value.writeToBuffer(),
|
($0.ListProjectComposedFieldRequest value) => value.writeToBuffer(),
|
||||||
$0.ListProjectComposedFieldResult.fromBuffer);
|
$0.ListProjectComposedFieldResult.fromBuffer);
|
||||||
static final _$getSite = $grpc.ClientMethod<$0.GetSiteComposedFieldRequest, $0.GetSiteComposedFieldResult>(
|
|
||||||
'/vizapi.ComposedFieldService/GetSite',
|
|
||||||
($0.GetSiteComposedFieldRequest value) => value.writeToBuffer(),
|
|
||||||
$0.GetSiteComposedFieldResult.fromBuffer);
|
|
||||||
static final _$createSite = $grpc.ClientMethod<$0.CreateSiteComposedFieldRequest, $0.CreateSiteComposedFieldResult>(
|
|
||||||
'/vizapi.ComposedFieldService/CreateSite',
|
|
||||||
($0.CreateSiteComposedFieldRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreateSiteComposedFieldResult.fromBuffer);
|
|
||||||
static final _$updateSite = $grpc.ClientMethod<$0.UpdateSiteComposedFieldRequest, $0.UpdateSiteComposedFieldResult>(
|
|
||||||
'/vizapi.ComposedFieldService/UpdateSite',
|
|
||||||
($0.UpdateSiteComposedFieldRequest value) => value.writeToBuffer(),
|
|
||||||
$0.UpdateSiteComposedFieldResult.fromBuffer);
|
|
||||||
static final _$deleteSite = $grpc.ClientMethod<$0.DeleteSiteComposedFieldRequest, $0.DeleteSiteComposedFieldResult>(
|
|
||||||
'/vizapi.ComposedFieldService/DeleteSite',
|
|
||||||
($0.DeleteSiteComposedFieldRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteSiteComposedFieldResult.fromBuffer);
|
|
||||||
static final _$listSite = $grpc.ClientMethod<$0.ListSiteComposedFieldRequest, $0.ListSiteComposedFieldResult>(
|
|
||||||
'/vizapi.ComposedFieldService/ListSite',
|
|
||||||
($0.ListSiteComposedFieldRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ListSiteComposedFieldResult.fromBuffer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.ComposedFieldService')
|
@$pb.GrpcServiceName('vizapi.ComposedFieldService')
|
||||||
@@ -231,41 +191,6 @@ abstract class ComposedFieldServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.ListProjectComposedFieldRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.ListProjectComposedFieldRequest.fromBuffer(value),
|
||||||
($0.ListProjectComposedFieldResult value) => value.writeToBuffer()));
|
($0.ListProjectComposedFieldResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetSiteComposedFieldRequest, $0.GetSiteComposedFieldResult>(
|
|
||||||
'GetSite',
|
|
||||||
getSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.GetSiteComposedFieldRequest.fromBuffer(value),
|
|
||||||
($0.GetSiteComposedFieldResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateSiteComposedFieldRequest, $0.CreateSiteComposedFieldResult>(
|
|
||||||
'CreateSite',
|
|
||||||
createSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreateSiteComposedFieldRequest.fromBuffer(value),
|
|
||||||
($0.CreateSiteComposedFieldResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.UpdateSiteComposedFieldRequest, $0.UpdateSiteComposedFieldResult>(
|
|
||||||
'UpdateSite',
|
|
||||||
updateSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.UpdateSiteComposedFieldRequest.fromBuffer(value),
|
|
||||||
($0.UpdateSiteComposedFieldResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteSiteComposedFieldRequest, $0.DeleteSiteComposedFieldResult>(
|
|
||||||
'DeleteSite',
|
|
||||||
deleteSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteSiteComposedFieldRequest.fromBuffer(value),
|
|
||||||
($0.DeleteSiteComposedFieldResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ListSiteComposedFieldRequest, $0.ListSiteComposedFieldResult>(
|
|
||||||
'ListSite',
|
|
||||||
listSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ListSiteComposedFieldRequest.fromBuffer(value),
|
|
||||||
($0.ListSiteComposedFieldResult value) => value.writeToBuffer()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.GetComposedFieldResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetComposedFieldRequest> $request) async {
|
$async.Future<$0.GetComposedFieldResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetComposedFieldRequest> $request) async {
|
||||||
@@ -328,34 +253,4 @@ abstract class ComposedFieldServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.ListProjectComposedFieldResult> listProject($grpc.ServiceCall call, $0.ListProjectComposedFieldRequest request);
|
$async.Future<$0.ListProjectComposedFieldResult> listProject($grpc.ServiceCall call, $0.ListProjectComposedFieldRequest request);
|
||||||
|
|
||||||
$async.Future<$0.GetSiteComposedFieldResult> getSite_Pre($grpc.ServiceCall $call, $async.Future<$0.GetSiteComposedFieldRequest> $request) async {
|
|
||||||
return getSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetSiteComposedFieldResult> getSite($grpc.ServiceCall call, $0.GetSiteComposedFieldRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteComposedFieldResult> createSite_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateSiteComposedFieldRequest> $request) async {
|
|
||||||
return createSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteComposedFieldResult> createSite($grpc.ServiceCall call, $0.CreateSiteComposedFieldRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteComposedFieldResult> updateSite_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateSiteComposedFieldRequest> $request) async {
|
|
||||||
return updateSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteComposedFieldResult> updateSite($grpc.ServiceCall call, $0.UpdateSiteComposedFieldRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteComposedFieldResult> deleteSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteSiteComposedFieldRequest> $request) async {
|
|
||||||
return deleteSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteComposedFieldResult> deleteSite($grpc.ServiceCall call, $0.DeleteSiteComposedFieldRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteComposedFieldResult> listSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ListSiteComposedFieldRequest> $request) async {
|
|
||||||
return listSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteComposedFieldResult> listSite($grpc.ServiceCall call, $0.ListSiteComposedFieldRequest request);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,22 +35,22 @@ const ComposedField$json = {
|
|||||||
final $typed_data.Uint8List composedFieldDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List composedFieldDescriptor = $convert.base64Decode(
|
||||||
'Cg1Db21wb3NlZEZpZWxkEk8KD0NvbXBvc2VkRmllbGRJRBgBIAEoCUIlkkEiMiBJZGVudGlmaW'
|
'Cg1Db21wb3NlZEZpZWxkEk8KD0NvbXBvc2VkRmllbGRJRBgBIAEoCUIlkkEiMiBJZGVudGlmaW'
|
||||||
'VyIG9mIHRoZSBDb21wb3NlZCBGaWVsZFIPQ29tcG9zZWRGaWVsZElEEjMKBE5hbWUYAiABKAlC'
|
'VyIG9mIHRoZSBDb21wb3NlZCBGaWVsZFIPQ29tcG9zZWRGaWVsZElEEjMKBE5hbWUYAiABKAlC'
|
||||||
'H5JBHDIaTmFtZSBvZiB0aGUgQ29tcG9zZWQgRmllbGRSBE5hbWUSQwoJUHJvamVjdElEGAMgAS'
|
'H5JBHDIaTmFtZSBvZiB0aGUgQ29tcG9zZWQgRmllbGRSBE5hbWUSRAoJUHJvamVjdElEGAMgAS'
|
||||||
'gJQiWSQRsyGUlkZW50aWZpZXIgb2YgdGhlIHByb2plY3T6QgRyAhABUglQcm9qZWN0SUQSOQoI'
|
'gJQiaSQRsyGUlkZW50aWZpZXIgb2YgdGhlIHByb2plY3S6gQEEcgIQAVIJUHJvamVjdElEEjkK'
|
||||||
'U2NyZWVuSUQYBCABKAlCHZJBGjIYSWRlbnRpZmllciBvZiB0aGUgU2NyZWVuUghTY3JlZW5JRB'
|
'CFNjcmVlbklEGAQgASgJQh2SQRoyGElkZW50aWZpZXIgb2YgdGhlIFNjcmVlblIIU2NyZWVuSU'
|
||||||
'JLCgxDcmVhdGVVc2VySUQYBSABKAlCJ5JBJDIiSWRlbnRpZmllciBvZiB0aGUgdXNlciB3aG8g'
|
'QSSwoMQ3JlYXRlVXNlcklEGAUgASgJQieSQSQyIklkZW50aWZpZXIgb2YgdGhlIHVzZXIgd2hv'
|
||||||
'Y3JlYXRlZFIMQ3JlYXRlVXNlcklEElcKDFVwZGF0ZVVzZXJJRBgGIAEoCUIzkkEwMi5JZGVudG'
|
'IGNyZWF0ZWRSDENyZWF0ZVVzZXJJRBJXCgxVcGRhdGVVc2VySUQYBiABKAlCM5JBMDIuSWRlbn'
|
||||||
'lmaWVyIG9mIHRoZSB1c2VyIHdobyBkaWQgdGhlIGxhc3QgdXBkYXRlUgxVcGRhdGVVc2VySUQS'
|
'RpZmllciBvZiB0aGUgdXNlciB3aG8gZGlkIHRoZSBsYXN0IHVwZGF0ZVIMVXBkYXRlVXNlcklE'
|
||||||
'wgEKDkNyZWF0ZURhdGVUaW1lGAcgASgJQpkBkkGVATKSAURhdGUgb2YgY3JlYXRpb24gaW4gPG'
|
'EsIBCg5DcmVhdGVEYXRlVGltZRgHIAEoCUKZAZJBlQEykgFEYXRlIG9mIGNyZWF0aW9uIGluID'
|
||||||
'EgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEiPklTTyA4NjAx'
|
'xhIGhyZWY9Imh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0lTT184NjAxIj5JU08gODYw'
|
||||||
'PC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdGVkIHR6ZCBmb3JtYXRzOiBbKzAxOj'
|
'MTwvYT4gZm9ybWF0IHdpdGggdGltZSB6b25lIChhY2NlcHRlZCB0emQgZm9ybWF0czogWyswMT'
|
||||||
'AwLCAtMDE6MDAsIFpdUg5DcmVhdGVEYXRlVGltZRLFAQoOVXBkYXRlRGF0ZVRpbWUYCCABKAlC'
|
'owMCwgLTAxOjAwLCBaXVIOQ3JlYXRlRGF0ZVRpbWUSxQEKDlVwZGF0ZURhdGVUaW1lGAggASgJ'
|
||||||
'nAGSQZgBMpUBRGF0ZSBvZiBsYXN0IHVwZGF0ZSBpbiA8YSBocmVmPSJodHRwczovL2VuLndpa2'
|
'QpwBkkGYATKVAURhdGUgb2YgbGFzdCB1cGRhdGUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aW'
|
||||||
'lwZWRpYS5vcmcvd2lraS9JU09fODYwMSI+SVNPIDg2MDE8L2E+IGZvcm1hdCB3aXRoIHRpbWUg'
|
'tpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1l'
|
||||||
'em9uZSAoYWNjZXB0ZWQgdHpkIGZvcm1hdHM6IFsrMDE6MDAsIC0wMTowMCwgWl1SDlVwZGF0ZU'
|
'IHpvbmUgKGFjY2VwdGVkIHR6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdUg5VcGRhdG'
|
||||||
'RhdGVUaW1lEjAKBVRhYklEGAkgASgJQhqSQRcyFUlkZW50aWZpZXIgb2YgdGhlIFRhYlIFVGFi'
|
'VEYXRlVGltZRIwCgVUYWJJRBgJIAEoCUIakkEXMhVJZGVudGlmaWVyIG9mIHRoZSBUYWJSBVRh'
|
||||||
'SUQSPAoHUGF5bG9hZBgKIAEoCUIikkEfMh1Db250ZW50IGluIHRoZSBDb21wb3NlZCBGaWVsZF'
|
'YklEEjwKB1BheWxvYWQYCiABKAlCIpJBHzIdQ29udGVudCBpbiB0aGUgQ29tcG9zZWQgRmllbG'
|
||||||
'IHUGF5bG9hZA==');
|
'RSB1BheWxvYWQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use getComposedFieldRequestDescriptor instead')
|
@$core.Deprecated('Use getComposedFieldRequestDescriptor instead')
|
||||||
const GetComposedFieldRequest$json = {
|
const GetComposedFieldRequest$json = {
|
||||||
@@ -64,11 +64,11 @@ const GetComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'ChdHZXRDb21wb3NlZEZpZWxkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
'ChdHZXRDb21wb3NlZEZpZWxkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
||||||
'Byb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISVgoPQ29tcG9zZWRGaWVsZElEGAIgASgJ'
|
'Byb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyElcKD0NvbXBvc2VkRmllbGRJRBgCIAEo'
|
||||||
'QiySQSIyIElkZW50aWZpZXIgb2YgdGhlIENvbXBvc2VkIEZpZWxk+kIEcgIQAVIPQ29tcG9zZW'
|
'CUItkkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZLqBAQRyAhABUg9Db21wb3'
|
||||||
'RGaWVsZElEOjuSQTgKNjIZSURzIG9mIHRoZSBDb21wb3NlZCBGaWVsZNIBBkhlYWRlctIBD0Nv'
|
'NlZEZpZWxkSUQ6O5JBOAo2MhlJRHMgb2YgdGhlIENvbXBvc2VkIEZpZWxk0gEGSGVhZGVy0gEP'
|
||||||
'bXBvc2VkRmllbGRJRA==');
|
'Q29tcG9zZWRGaWVsZElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use getComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use getComposedFieldResultDescriptor instead')
|
||||||
const GetComposedFieldResult$json = {
|
const GetComposedFieldResult$json = {
|
||||||
@@ -100,14 +100,14 @@ const CreateComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'ChpDcmVhdGVDb21wb3NlZEZpZWxkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
'ChpDcmVhdGVDb21wb3NlZEZpZWxkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISOgoETmFtZRgCIAEoCUImkkEcMhpO'
|
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjsKBE5hbWUYAiABKAlCJ5JBHDIa'
|
||||||
'YW1lIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFSBE5hbWUSQAoIU2NyZWVuSUQYAyABKA'
|
'TmFtZSBvZiB0aGUgQ29tcG9zZWQgRmllbGS6gQEEcgIQAVIETmFtZRJBCghTY3JlZW5JRBgDIA'
|
||||||
'lCJJJBGjIYSWRlbnRpZmllciBvZiB0aGUgU2NyZWVu+kIEcgIQAVIIU2NyZWVuSUQSNwoFVGFi'
|
'EoCUIlkkEaMhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW66gQEEcgIQAVIIU2NyZWVuSUQSOAoF'
|
||||||
'SUQYBCABKAlCIZJBFzIVSWRlbnRpZmllciBvZiB0aGUgVGFi+kIEcgIQAVIFVGFiSUQSQwoHUG'
|
'VGFiSUQYBCABKAlCIpJBFzIVSWRlbnRpZmllciBvZiB0aGUgVGFiuoEBBHICEAFSBVRhYklEEk'
|
||||||
'F5bG9hZBgFIAEoCUIpkkEfMh1Db250ZW50IGluIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFS'
|
'QKB1BheWxvYWQYBSABKAlCKpJBHzIdQ29udGVudCBpbiB0aGUgQ29tcG9zZWQgRmllbGS6gQEE'
|
||||||
'B1BheWxvYWQ6VJJBUQpPMiBDb250ZW50IHRoYXQgbmVlZHMgdG8gYmUgc3RvcmVkINIBBkhlYW'
|
'cgIQAVIHUGF5bG9hZDpUkkFRCk8yIENvbnRlbnQgdGhhdCBuZWVkcyB0byBiZSBzdG9yZWQg0g'
|
||||||
'RlctIBBE5hbWXSAQhTY3JlZW5JRNIBBVRhYklE0gEHUGF5bG9hZA==');
|
'EGSGVhZGVy0gEETmFtZdIBCFNjcmVlbklE0gEFVGFiSUTSAQdQYXlsb2Fk');
|
||||||
|
|
||||||
@$core.Deprecated('Use createComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use createComposedFieldResultDescriptor instead')
|
||||||
const CreateComposedFieldResult$json = {
|
const CreateComposedFieldResult$json = {
|
||||||
@@ -140,16 +140,16 @@ const UpdateComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'ChpVcGRhdGVDb21wb3NlZEZpZWxkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
'ChpVcGRhdGVDb21wb3NlZEZpZWxkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISVgoPQ29tcG9zZWRGaWVsZElEGAIg'
|
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyElcKD0NvbXBvc2VkRmllbGRJRBgC'
|
||||||
'ASgJQiySQSIyIElkZW50aWZpZXIgb2YgdGhlIENvbXBvc2VkIEZpZWxk+kIEcgIQAVIPQ29tcG'
|
'IAEoCUItkkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZLqBAQRyAhABUg9Db2'
|
||||||
'9zZWRGaWVsZElEEjoKBE5hbWUYAyABKAlCJpJBHDIaTmFtZSBvZiB0aGUgQ29tcG9zZWQgRmll'
|
'1wb3NlZEZpZWxkSUQSOwoETmFtZRgDIAEoCUInkkEcMhpOYW1lIG9mIHRoZSBDb21wb3NlZCBG'
|
||||||
'bGT6QgRyAhABUgROYW1lEkAKCFNjcmVlbklEGAQgASgJQiSSQRoyGElkZW50aWZpZXIgb2YgdG'
|
'aWVsZLqBAQRyAhABUgROYW1lEkEKCFNjcmVlbklEGAQgASgJQiWSQRoyGElkZW50aWZpZXIgb2'
|
||||||
'hlIFNjcmVlbvpCBHICEAFSCFNjcmVlbklEEjcKBVRhYklEGAUgASgJQiGSQRcyFUlkZW50aWZp'
|
'YgdGhlIFNjcmVlbrqBAQRyAhABUghTY3JlZW5JRBI4CgVUYWJJRBgFIAEoCUIikkEXMhVJZGVu'
|
||||||
'ZXIgb2YgdGhlIFRhYvpCBHICEAFSBVRhYklEEkMKB1BheWxvYWQYBiABKAlCKZJBHzIdQ29udG'
|
'dGlmaWVyIG9mIHRoZSBUYWK6gQEEcgIQAVIFVGFiSUQSRAoHUGF5bG9hZBgGIAEoCUIqkkEfMh'
|
||||||
'VudCBpbiB0aGUgQ29tcG9zZWQgRmllbGT6QgRyAhABUgdQYXlsb2FkOmaSQWMKYTIgQ29udGVu'
|
'1Db250ZW50IGluIHRoZSBDb21wb3NlZCBGaWVsZLqBAQRyAhABUgdQYXlsb2FkOmaSQWMKYTIg'
|
||||||
'dCB0aGF0IG5lZWRzIHRvIGJlIHVwZGF0ZWTSAQZIZWFkZXLSAQ9Db21wb3NlZEZpZWxkSUTSAQ'
|
'Q29udGVudCB0aGF0IG5lZWRzIHRvIGJlIHVwZGF0ZWTSAQZIZWFkZXLSAQ9Db21wb3NlZEZpZW'
|
||||||
'ROYW1l0gEIU2NyZWVuSUTSAQVUYWJJRNIBB1BheWxvYWQ=');
|
'xkSUTSAQROYW1l0gEIU2NyZWVuSUTSAQVUYWJJRNIBB1BheWxvYWQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use updateComposedFieldResultDescriptor instead')
|
||||||
const UpdateComposedFieldResult$json = {
|
const UpdateComposedFieldResult$json = {
|
||||||
@@ -178,11 +178,11 @@ const DeleteComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'ChpEZWxldGVDb21wb3NlZEZpZWxkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
'ChpEZWxldGVDb21wb3NlZEZpZWxkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISVgoPQ29tcG9zZWRGaWVsZElEGAIg'
|
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyElcKD0NvbXBvc2VkRmllbGRJRBgC'
|
||||||
'ASgJQiySQSIyIElkZW50aWZpZXIgb2YgdGhlIENvbXBvc2VkIEZpZWxk+kIEcgIQAVIPQ29tcG'
|
'IAEoCUItkkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZLqBAQRyAhABUg9Db2'
|
||||||
'9zZWRGaWVsZElEOkmSQUYKRDInSURzIG9mIHRoZSBDb21wb3NlZCBGaWVsZCB0byBiZSBkZWxl'
|
'1wb3NlZEZpZWxkSUQ6SZJBRgpEMidJRHMgb2YgdGhlIENvbXBvc2VkIEZpZWxkIHRvIGJlIGRl'
|
||||||
'dGVk0gEGSGVhZGVy0gEPQ29tcG9zZWRGaWVsZElE');
|
'bGV0ZWTSAQZIZWFkZXLSAQ9Db21wb3NlZEZpZWxkSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use deleteComposedFieldResultDescriptor instead')
|
||||||
const DeleteComposedFieldResult$json = {
|
const DeleteComposedFieldResult$json = {
|
||||||
@@ -206,10 +206,10 @@ const ListComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'ChhMaXN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
'ChhMaXN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjkKCFNjcmVlbklEGAIgASgJQh2SQRoy'
|
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEoCUIdkkEa'
|
||||||
'GElkZW50aWZpZXIgb2YgdGhlIFNjcmVlblIIU2NyZWVuSUQSMAoFVGFiSUQYAyABKAlCGpJBFz'
|
'MhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEEjAKBVRhYklEGAMgASgJQhqSQR'
|
||||||
'IVSWRlbnRpZmllciBvZiB0aGUgVGFiUgVUYWJJRDoOkkELCgnSAQZIZWFkZXI=');
|
'cyFUlkZW50aWZpZXIgb2YgdGhlIFRhYlIFVGFiSUQ6DpJBCwoJ0gEGSGVhZGVy');
|
||||||
|
|
||||||
@$core.Deprecated('Use listComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use listComposedFieldResultDescriptor instead')
|
||||||
const ListComposedFieldResult$json = {
|
const ListComposedFieldResult$json = {
|
||||||
@@ -238,11 +238,11 @@ const GetProjectComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch5HZXRQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
'Ch5HZXRQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLl'
|
||||||
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmllbGRJ'
|
'JlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJXCg9Db21wb3NlZEZpZWxk'
|
||||||
'RBgCIAEoCUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFSD0'
|
'SUQYAiABKAlCLZJBIjIgSWRlbnRpZmllciBvZiB0aGUgQ29tcG9zZWQgRmllbGS6gQEEcgIQAV'
|
||||||
'NvbXBvc2VkRmllbGRJRDo7kkE4CjYyGUlEcyBvZiB0aGUgQ29tcG9zZWQgRmllbGTSAQZIZWFk'
|
'IPQ29tcG9zZWRGaWVsZElEOjuSQTgKNjIZSURzIG9mIHRoZSBDb21wb3NlZCBGaWVsZNIBBkhl'
|
||||||
'ZXLSAQ9Db21wb3NlZEZpZWxkSUQ=');
|
'YWRlctIBD0NvbXBvc2VkRmllbGRJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use getProjectComposedFieldResultDescriptor instead')
|
||||||
const GetProjectComposedFieldResult$json = {
|
const GetProjectComposedFieldResult$json = {
|
||||||
@@ -274,14 +274,14 @@ const CreateProjectComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'CiFDcmVhdGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYX'
|
'CiFDcmVhdGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYX'
|
||||||
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBE5hbWUYAiABKAlC'
|
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchI7CgROYW1lGAIgASgJ'
|
||||||
'JpJBHDIaTmFtZSBvZiB0aGUgQ29tcG9zZWQgRmllbGT6QgRyAhABUgROYW1lEkAKCFNjcmVlbk'
|
'QieSQRwyGk5hbWUgb2YgdGhlIENvbXBvc2VkIEZpZWxkuoEBBHICEAFSBE5hbWUSQQoIU2NyZW'
|
||||||
'lEGAMgASgJQiSSQRoyGElkZW50aWZpZXIgb2YgdGhlIFNjcmVlbvpCBHICEAFSCFNjcmVlbklE'
|
'VuSUQYAyABKAlCJZJBGjIYSWRlbnRpZmllciBvZiB0aGUgU2NyZWVuuoEBBHICEAFSCFNjcmVl'
|
||||||
'EjcKBVRhYklEGAQgASgJQiGSQRcyFUlkZW50aWZpZXIgb2YgdGhlIFRhYvpCBHICEAFSBVRhYk'
|
'bklEEjgKBVRhYklEGAQgASgJQiKSQRcyFUlkZW50aWZpZXIgb2YgdGhlIFRhYrqBAQRyAhABUg'
|
||||||
'lEEkMKB1BheWxvYWQYBSABKAlCKZJBHzIdQ29udGVudCBpbiB0aGUgQ29tcG9zZWQgRmllbGT6'
|
'VUYWJJRBJECgdQYXlsb2FkGAUgASgJQiqSQR8yHUNvbnRlbnQgaW4gdGhlIENvbXBvc2VkIEZp'
|
||||||
'QgRyAhABUgdQYXlsb2FkOlSSQVEKTzIgQ29udGVudCB0aGF0IG5lZWRzIHRvIGJlIHN0b3JlZC'
|
'ZWxkuoEBBHICEAFSB1BheWxvYWQ6VJJBUQpPMiBDb250ZW50IHRoYXQgbmVlZHMgdG8gYmUgc3'
|
||||||
'DSAQZIZWFkZXLSAQROYW1l0gEIU2NyZWVuSUTSAQVUYWJJRNIBB1BheWxvYWQ=');
|
'RvcmVkINIBBkhlYWRlctIBBE5hbWXSAQhTY3JlZW5JRNIBBVRhYklE0gEHUGF5bG9hZA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use createProjectComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use createProjectComposedFieldResultDescriptor instead')
|
||||||
const CreateProjectComposedFieldResult$json = {
|
const CreateProjectComposedFieldResult$json = {
|
||||||
@@ -314,16 +314,16 @@ const UpdateProjectComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'CiFVcGRhdGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYX'
|
'CiFVcGRhdGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYX'
|
||||||
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmll'
|
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJXCg9Db21wb3NlZEZp'
|
||||||
'bGRJRBgCIAEoCUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEA'
|
'ZWxkSUQYAiABKAlCLZJBIjIgSWRlbnRpZmllciBvZiB0aGUgQ29tcG9zZWQgRmllbGS6gQEEcg'
|
||||||
'FSD0NvbXBvc2VkRmllbGRJRBI6CgROYW1lGAMgASgJQiaSQRwyGk5hbWUgb2YgdGhlIENvbXBv'
|
'IQAVIPQ29tcG9zZWRGaWVsZElEEjsKBE5hbWUYAyABKAlCJ5JBHDIaTmFtZSBvZiB0aGUgQ29t'
|
||||||
'c2VkIEZpZWxk+kIEcgIQAVIETmFtZRJACghTY3JlZW5JRBgEIAEoCUIkkkEaMhhJZGVudGlmaW'
|
'cG9zZWQgRmllbGS6gQEEcgIQAVIETmFtZRJBCghTY3JlZW5JRBgEIAEoCUIlkkEaMhhJZGVudG'
|
||||||
'VyIG9mIHRoZSBTY3JlZW76QgRyAhABUghTY3JlZW5JRBI3CgVUYWJJRBgFIAEoCUIhkkEXMhVJ'
|
'lmaWVyIG9mIHRoZSBTY3JlZW66gQEEcgIQAVIIU2NyZWVuSUQSOAoFVGFiSUQYBSABKAlCIpJB'
|
||||||
'ZGVudGlmaWVyIG9mIHRoZSBUYWL6QgRyAhABUgVUYWJJRBJDCgdQYXlsb2FkGAYgASgJQimSQR'
|
'FzIVSWRlbnRpZmllciBvZiB0aGUgVGFiuoEBBHICEAFSBVRhYklEEkQKB1BheWxvYWQYBiABKA'
|
||||||
'8yHUNvbnRlbnQgaW4gdGhlIENvbXBvc2VkIEZpZWxk+kIEcgIQAVIHUGF5bG9hZDpmkkFjCmEy'
|
'lCKpJBHzIdQ29udGVudCBpbiB0aGUgQ29tcG9zZWQgRmllbGS6gQEEcgIQAVIHUGF5bG9hZDpm'
|
||||||
'IENvbnRlbnQgdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gEPQ29tcG9zZWRGaW'
|
'kkFjCmEyIENvbnRlbnQgdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gEPQ29tcG'
|
||||||
'VsZElE0gEETmFtZdIBCFNjcmVlbklE0gEFVGFiSUTSAQdQYXlsb2Fk');
|
'9zZWRGaWVsZElE0gEETmFtZdIBCFNjcmVlbklE0gEFVGFiSUTSAQdQYXlsb2Fk');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateProjectComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use updateProjectComposedFieldResultDescriptor instead')
|
||||||
const UpdateProjectComposedFieldResult$json = {
|
const UpdateProjectComposedFieldResult$json = {
|
||||||
@@ -352,11 +352,11 @@ const DeleteProjectComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'CiFEZWxldGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYX'
|
'CiFEZWxldGVQcm9qZWN0Q29tcG9zZWRGaWVsZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYX'
|
||||||
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmll'
|
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJXCg9Db21wb3NlZEZp'
|
||||||
'bGRJRBgCIAEoCUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEA'
|
'ZWxkSUQYAiABKAlCLZJBIjIgSWRlbnRpZmllciBvZiB0aGUgQ29tcG9zZWQgRmllbGS6gQEEcg'
|
||||||
'FSD0NvbXBvc2VkRmllbGRJRDpJkkFGCkQyJ0lEcyBvZiB0aGUgQ29tcG9zZWQgRmllbGQgdG8g'
|
'IQAVIPQ29tcG9zZWRGaWVsZElEOkmSQUYKRDInSURzIG9mIHRoZSBDb21wb3NlZCBGaWVsZCB0'
|
||||||
'YmUgZGVsZXRlZNIBBkhlYWRlctIBD0NvbXBvc2VkRmllbGRJRA==');
|
'byBiZSBkZWxldGVk0gEGSGVhZGVy0gEPQ29tcG9zZWRGaWVsZElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use deleteProjectComposedFieldResultDescriptor instead')
|
||||||
const DeleteProjectComposedFieldResult$json = {
|
const DeleteProjectComposedFieldResult$json = {
|
||||||
@@ -380,10 +380,10 @@ const ListProjectComposedFieldRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListProjectComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listProjectComposedFieldRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch9MaXN0UHJvamVjdENvbXBvc2VkRmllbGRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS'
|
'Ch9MaXN0UHJvamVjdENvbXBvc2VkRmllbGRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS'
|
||||||
'5SZXF1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEo'
|
'5SZXF1ZXN0UHJvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISOQoIU2NyZWVuSUQYAiAB'
|
||||||
'CUIdkkEaMhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEEjAKBVRhYklEGAMgAS'
|
'KAlCHZJBGjIYSWRlbnRpZmllciBvZiB0aGUgU2NyZWVuUghTY3JlZW5JRBIwCgVUYWJJRBgDIA'
|
||||||
'gJQhqSQRcyFUlkZW50aWZpZXIgb2YgdGhlIFRhYlIFVGFiSUQ6DpJBCwoJ0gEGSGVhZGVy');
|
'EoCUIakkEXMhVJZGVudGlmaWVyIG9mIHRoZSBUYWJSBVRhYklEOg6SQQsKCdIBBkhlYWRlcg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectComposedFieldResultDescriptor instead')
|
@$core.Deprecated('Use listProjectComposedFieldResultDescriptor instead')
|
||||||
const ListProjectComposedFieldResult$json = {
|
const ListProjectComposedFieldResult$json = {
|
||||||
@@ -400,177 +400,3 @@ final $typed_data.Uint8List listProjectComposedFieldResultDescriptor = $convert.
|
|||||||
'FwaS5Db21wb3NlZEZpZWxkQiSSQSEyH0FsbCBDb250ZW50IGluIGEgQ29tcG9zZWQgRmllbGRS'
|
'FwaS5Db21wb3NlZEZpZWxkQiSSQSEyH0FsbCBDb250ZW50IGluIGEgQ29tcG9zZWQgRmllbGRS'
|
||||||
'B1Jlc3VsdHM6HpJBGwoZMhdMaXN0IG9mIENvbXBvc2VkIEZpZWxkcw==');
|
'B1Jlc3VsdHM6HpJBGwoZMhdMaXN0IG9mIENvbXBvc2VkIEZpZWxkcw==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteComposedFieldRequestDescriptor instead')
|
|
||||||
const GetSiteComposedFieldRequest$json = {
|
|
||||||
'1': 'GetSiteComposedFieldRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ComposedFieldID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ComposedFieldID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteComposedFieldRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChtHZXRTaXRlQ29tcG9zZWRGaWVsZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcX'
|
|
||||||
'Vlc3RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmllbGRJRBgCIAEo'
|
|
||||||
'CUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFSD0NvbXBvc2'
|
|
||||||
'VkRmllbGRJRDo7kkE4CjYyGUlEcyBvZiB0aGUgQ29tcG9zZWQgRmllbGTSAQZIZWFkZXLSAQ9D'
|
|
||||||
'b21wb3NlZEZpZWxkSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteComposedFieldResultDescriptor instead')
|
|
||||||
const GetSiteComposedFieldResult$json = {
|
|
||||||
'1': 'GetSiteComposedFieldResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.ComposedField', '10': 'Result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteComposedFieldResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteComposedFieldResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChpHZXRTaXRlQ29tcG9zZWRGaWVsZFJlc3VsdBItCgZSZXN1bHQYASABKAsyFS52aXphcGkuQ2'
|
|
||||||
'9tcG9zZWRGaWVsZFIGUmVzdWx0Oi+SQSwKKjIoQWxsIHRoZSBDb250ZW50IGFib3V0IHRoZSBj'
|
|
||||||
'b21wb3NlZCBmaWVsZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteComposedFieldRequestDescriptor instead')
|
|
||||||
const CreateSiteComposedFieldRequest$json = {
|
|
||||||
'1': 'CreateSiteComposedFieldRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'TabID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'TabID'},
|
|
||||||
{'1': 'Payload', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createSiteComposedFieldRequestDescriptor = $convert.base64Decode(
|
|
||||||
'Ch5DcmVhdGVTaXRlQ29tcG9zZWRGaWVsZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLl'
|
|
||||||
'JlcXVlc3RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBE5hbWUYAiABKAlCJpJBHDIa'
|
|
||||||
'TmFtZSBvZiB0aGUgQ29tcG9zZWQgRmllbGT6QgRyAhABUgROYW1lEkAKCFNjcmVlbklEGAMgAS'
|
|
||||||
'gJQiSSQRoyGElkZW50aWZpZXIgb2YgdGhlIFNjcmVlbvpCBHICEAFSCFNjcmVlbklEEjcKBVRh'
|
|
||||||
'YklEGAQgASgJQiGSQRcyFUlkZW50aWZpZXIgb2YgdGhlIFRhYvpCBHICEAFSBVRhYklEEkMKB1'
|
|
||||||
'BheWxvYWQYBSABKAlCKZJBHzIdQ29udGVudCBpbiB0aGUgQ29tcG9zZWQgRmllbGT6QgRyAhAB'
|
|
||||||
'UgdQYXlsb2FkOlSSQVEKTzIgQ29udGVudCB0aGF0IG5lZWRzIHRvIGJlIHN0b3JlZCDSAQZIZW'
|
|
||||||
'FkZXLSAQROYW1l0gEIU2NyZWVuSUTSAQVUYWJJRNIBB1BheWxvYWQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteComposedFieldResultDescriptor instead')
|
|
||||||
const CreateSiteComposedFieldResult$json = {
|
|
||||||
'1': 'CreateSiteComposedFieldResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ComposedFieldID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ComposedFieldID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteComposedFieldResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createSiteComposedFieldResultDescriptor = $convert.base64Decode(
|
|
||||||
'Ch1DcmVhdGVTaXRlQ29tcG9zZWRGaWVsZFJlc3VsdBJPCg9Db21wb3NlZEZpZWxkSUQYASABKA'
|
|
||||||
'lCJZJBIjIgSWRlbnRpZmllciBvZiB0aGUgQ29tcG9zZWQgRmllbGRSD0NvbXBvc2VkRmllbGRJ'
|
|
||||||
'RDonkkEkCiIyIElEIG9mIHRoZSBjcmVhdGVkIENvbXBvc2VkIEZpZWxk');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteComposedFieldRequestDescriptor instead')
|
|
||||||
const UpdateSiteComposedFieldRequest$json = {
|
|
||||||
'1': 'UpdateSiteComposedFieldRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ComposedFieldID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ComposedFieldID'},
|
|
||||||
{'1': 'Name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'TabID', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'TabID'},
|
|
||||||
{'1': 'Payload', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteComposedFieldRequestDescriptor = $convert.base64Decode(
|
|
||||||
'Ch5VcGRhdGVTaXRlQ29tcG9zZWRGaWVsZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLl'
|
|
||||||
'JlcXVlc3RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmllbGRJRBgC'
|
|
||||||
'IAEoCUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFSD0NvbX'
|
|
||||||
'Bvc2VkRmllbGRJRBI6CgROYW1lGAMgASgJQiaSQRwyGk5hbWUgb2YgdGhlIENvbXBvc2VkIEZp'
|
|
||||||
'ZWxk+kIEcgIQAVIETmFtZRJACghTY3JlZW5JRBgEIAEoCUIkkkEaMhhJZGVudGlmaWVyIG9mIH'
|
|
||||||
'RoZSBTY3JlZW76QgRyAhABUghTY3JlZW5JRBI3CgVUYWJJRBgFIAEoCUIhkkEXMhVJZGVudGlm'
|
|
||||||
'aWVyIG9mIHRoZSBUYWL6QgRyAhABUgVUYWJJRBJDCgdQYXlsb2FkGAYgASgJQimSQR8yHUNvbn'
|
|
||||||
'RlbnQgaW4gdGhlIENvbXBvc2VkIEZpZWxk+kIEcgIQAVIHUGF5bG9hZDpmkkFjCmEyIENvbnRl'
|
|
||||||
'bnQgdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gEPQ29tcG9zZWRGaWVsZElE0g'
|
|
||||||
'EETmFtZdIBCFNjcmVlbklE0gEFVGFiSUTSAQdQYXlsb2Fk');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteComposedFieldResultDescriptor instead')
|
|
||||||
const UpdateSiteComposedFieldResult$json = {
|
|
||||||
'1': 'UpdateSiteComposedFieldResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ComposedFieldID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ComposedFieldID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteComposedFieldResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteComposedFieldResultDescriptor = $convert.base64Decode(
|
|
||||||
'Ch1VcGRhdGVTaXRlQ29tcG9zZWRGaWVsZFJlc3VsdBJPCg9Db21wb3NlZEZpZWxkSUQYASABKA'
|
|
||||||
'lCJZJBIjIgSWRlbnRpZmllciBvZiB0aGUgQ29tcG9zZWQgRmllbGRSD0NvbXBvc2VkRmllbGRJ'
|
|
||||||
'RDobkkEYChYyFFVwZGF0ZWQgZGFzaGJvYXJkIElE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSiteComposedFieldRequestDescriptor instead')
|
|
||||||
const DeleteSiteComposedFieldRequest$json = {
|
|
||||||
'1': 'DeleteSiteComposedFieldRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ComposedFieldID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ComposedFieldID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteComposedFieldRequestDescriptor = $convert.base64Decode(
|
|
||||||
'Ch5EZWxldGVTaXRlQ29tcG9zZWRGaWVsZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLl'
|
|
||||||
'JlcXVlc3RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyElYKD0NvbXBvc2VkRmllbGRJRBgC'
|
|
||||||
'IAEoCUIskkEiMiBJZGVudGlmaWVyIG9mIHRoZSBDb21wb3NlZCBGaWVsZPpCBHICEAFSD0NvbX'
|
|
||||||
'Bvc2VkRmllbGRJRDpJkkFGCkQyJ0lEcyBvZiB0aGUgQ29tcG9zZWQgRmllbGQgdG8gYmUgZGVs'
|
|
||||||
'ZXRlZNIBBkhlYWRlctIBD0NvbXBvc2VkRmllbGRJRA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSiteComposedFieldResultDescriptor instead')
|
|
||||||
const DeleteSiteComposedFieldResult$json = {
|
|
||||||
'1': 'DeleteSiteComposedFieldResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteComposedFieldResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteComposedFieldResultDescriptor = $convert.base64Decode(
|
|
||||||
'Ch1EZWxldGVTaXRlQ29tcG9zZWRGaWVsZFJlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteComposedFieldRequestDescriptor instead')
|
|
||||||
const ListSiteComposedFieldRequest$json = {
|
|
||||||
'1': 'ListSiteComposedFieldRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ScreenID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'TabID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'TabID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListSiteComposedFieldRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listSiteComposedFieldRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChxMaXN0U2l0ZUNvbXBvc2VkRmllbGRSZXF1ZXN0EjgKBkhlYWRlchgBIAEoCzIWLmFwaS5SZX'
|
|
||||||
'F1ZXN0U2l0ZUhlYWRlckII+kIFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEoCUIdkkEa'
|
|
||||||
'MhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEEjAKBVRhYklEGAMgASgJQhqSQR'
|
|
||||||
'cyFUlkZW50aWZpZXIgb2YgdGhlIFRhYlIFVGFiSUQ6DpJBCwoJ0gEGSGVhZGVy');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteComposedFieldResultDescriptor instead')
|
|
||||||
const ListSiteComposedFieldResult$json = {
|
|
||||||
'1': 'ListSiteComposedFieldResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.vizapi.ComposedField', '8': {}, '10': 'Results'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListSiteComposedFieldResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listSiteComposedFieldResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChtMaXN0U2l0ZUNvbXBvc2VkRmllbGRSZXN1bHQSVQoHUmVzdWx0cxgBIAMoCzIVLnZpemFwaS'
|
|
||||||
'5Db21wb3NlZEZpZWxkQiSSQSEyH0FsbCBDb250ZW50IGluIGEgQ29tcG9zZWQgRmllbGRSB1Jl'
|
|
||||||
'c3VsdHM6HpJBGwoZMhdMaXN0IG9mIENvbXBvc2VkIEZpZWxkcw==');
|
|
||||||
|
|
||||||
|
|||||||
@@ -655,84 +655,6 @@ class DeleteDashboardsForProjectResult extends $pb.GeneratedMessage {
|
|||||||
static DeleteDashboardsForProjectResult? _defaultInstance;
|
static DeleteDashboardsForProjectResult? _defaultInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Project identifier to delete the dashboards from
|
|
||||||
class DeleteDashboardsForSiteRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteDashboardsForSiteRequest({
|
|
||||||
$core.String? siteID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (siteID != null) result.siteID = siteID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeleteDashboardsForSiteRequest._();
|
|
||||||
|
|
||||||
factory DeleteDashboardsForSiteRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteDashboardsForSiteRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForSiteRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteDashboardsForSiteRequest clone() => DeleteDashboardsForSiteRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteDashboardsForSiteRequest copyWith(void Function(DeleteDashboardsForSiteRequest) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForSiteRequest)) as DeleteDashboardsForSiteRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteDashboardsForSiteRequest create() => DeleteDashboardsForSiteRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeleteDashboardsForSiteRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteDashboardsForSiteRequest> createRepeated() => $pb.PbList<DeleteDashboardsForSiteRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteDashboardsForSiteRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForSiteRequest>(create);
|
|
||||||
static DeleteDashboardsForSiteRequest? _defaultInstance;
|
|
||||||
|
|
||||||
/// Identifier of the Project
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get siteID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set siteID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasSiteID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearSiteID() => $_clearField(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteDashboardsForSiteResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteDashboardsForSiteResult() => create();
|
|
||||||
|
|
||||||
DeleteDashboardsForSiteResult._();
|
|
||||||
|
|
||||||
factory DeleteDashboardsForSiteResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteDashboardsForSiteResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteDashboardsForSiteResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteDashboardsForSiteResult clone() => DeleteDashboardsForSiteResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteDashboardsForSiteResult copyWith(void Function(DeleteDashboardsForSiteResult) updates) => super.copyWith((message) => updates(message as DeleteDashboardsForSiteResult)) as DeleteDashboardsForSiteResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteDashboardsForSiteResult create() => DeleteDashboardsForSiteResult._();
|
|
||||||
@$core.override
|
|
||||||
DeleteDashboardsForSiteResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteDashboardsForSiteResult> createRepeated() => $pb.PbList<DeleteDashboardsForSiteResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteDashboardsForSiteResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteDashboardsForSiteResult>(create);
|
|
||||||
static DeleteDashboardsForSiteResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Information that needs to be updated
|
/// Information that needs to be updated
|
||||||
class UpdateDashboardRequest extends $pb.GeneratedMessage {
|
class UpdateDashboardRequest extends $pb.GeneratedMessage {
|
||||||
factory UpdateDashboardRequest({
|
factory UpdateDashboardRequest({
|
||||||
@@ -1872,199 +1794,82 @@ class CopyProjectDashboardResult extends $pb.GeneratedMessage {
|
|||||||
Dashboard ensureResult() => $_ensure(0);
|
Dashboard ensureResult() => $_ensure(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
class ListSiteDashboardRequest extends $pb.GeneratedMessage {
|
class SetOwnerDashboardRequest extends $pb.GeneratedMessage {
|
||||||
factory ListSiteDashboardRequest({
|
factory SetOwnerDashboardRequest({
|
||||||
$1.RequestSiteHeader? header,
|
$1.RequestProjectHeader? header,
|
||||||
|
$core.String? dashboardID,
|
||||||
|
$core.String? userID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
|
if (dashboardID != null) result.dashboardID = dashboardID;
|
||||||
|
if (userID != null) result.userID = userID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
ListSiteDashboardRequest._();
|
SetOwnerDashboardRequest._();
|
||||||
|
|
||||||
factory ListSiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SetOwnerDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory ListSiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SetOwnerDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetOwnerDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
||||||
|
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
|
||||||
|
..aOS(3, _omitFieldNames ? '' : 'UserID', protoName: 'UserID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
ListSiteDashboardRequest clone() => ListSiteDashboardRequest()..mergeFromMessage(this);
|
SetOwnerDashboardRequest clone() => SetOwnerDashboardRequest()..mergeFromMessage(this);
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
ListSiteDashboardRequest copyWith(void Function(ListSiteDashboardRequest) updates) => super.copyWith((message) => updates(message as ListSiteDashboardRequest)) as ListSiteDashboardRequest;
|
SetOwnerDashboardRequest copyWith(void Function(SetOwnerDashboardRequest) updates) => super.copyWith((message) => updates(message as SetOwnerDashboardRequest)) as SetOwnerDashboardRequest;
|
||||||
|
|
||||||
@$core.override
|
@$core.override
|
||||||
$pb.BuilderInfo get info_ => _i;
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
@$core.pragma('dart2js:noInline')
|
||||||
static ListSiteDashboardRequest create() => ListSiteDashboardRequest._();
|
static SetOwnerDashboardRequest create() => SetOwnerDashboardRequest._();
|
||||||
@$core.override
|
@$core.override
|
||||||
ListSiteDashboardRequest createEmptyInstance() => create();
|
SetOwnerDashboardRequest createEmptyInstance() => create();
|
||||||
static $pb.PbList<ListSiteDashboardRequest> createRepeated() => $pb.PbList<ListSiteDashboardRequest>();
|
static $pb.PbList<SetOwnerDashboardRequest> createRepeated() => $pb.PbList<SetOwnerDashboardRequest>();
|
||||||
@$core.pragma('dart2js:noInline')
|
@$core.pragma('dart2js:noInline')
|
||||||
static ListSiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSiteDashboardRequest>(create);
|
static SetOwnerDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SetOwnerDashboardRequest>(create);
|
||||||
static ListSiteDashboardRequest? _defaultInstance;
|
static SetOwnerDashboardRequest? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
$1.RequestProjectHeader get header => $_getN(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$core.bool hasHeader() => $_has(0);
|
$core.bool hasHeader() => $_has(0);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
void clearHeader() => $_clearField(1);
|
void clearHeader() => $_clearField(1);
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||||
|
|
||||||
|
/// Identifier of the Dashboard
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.String get dashboardID => $_getSZ(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
set dashboardID($core.String value) => $_setString(1, value);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
$core.bool hasDashboardID() => $_has(1);
|
||||||
|
@$pb.TagNumber(2)
|
||||||
|
void clearDashboardID() => $_clearField(2);
|
||||||
|
|
||||||
|
/// Identifier of the new owner of the Dashboard
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.String get userID => $_getSZ(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set userID($core.String value) => $_setString(2, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasUserID() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearUserID() => $_clearField(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// List of Dashboards
|
class SetOwnerDashboardResult extends $pb.GeneratedMessage {
|
||||||
class ListSiteDashboardResult extends $pb.GeneratedMessage {
|
factory SetOwnerDashboardResult({
|
||||||
factory ListSiteDashboardResult({
|
|
||||||
$core.Iterable<Dashboard>? results,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (results != null) result.results.addAll(results);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListSiteDashboardResult._();
|
|
||||||
|
|
||||||
factory ListSiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ListSiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListSiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<Dashboard>(1, _omitFieldNames ? '' : 'Results', $pb.PbFieldType.PM, protoName: 'Results', subBuilder: Dashboard.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteDashboardResult clone() => ListSiteDashboardResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListSiteDashboardResult copyWith(void Function(ListSiteDashboardResult) updates) => super.copyWith((message) => updates(message as ListSiteDashboardResult)) as ListSiteDashboardResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteDashboardResult create() => ListSiteDashboardResult._();
|
|
||||||
@$core.override
|
|
||||||
ListSiteDashboardResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ListSiteDashboardResult> createRepeated() => $pb.PbList<ListSiteDashboardResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListSiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListSiteDashboardResult>(create);
|
|
||||||
static ListSiteDashboardResult? _defaultInstance;
|
|
||||||
|
|
||||||
/// All information in a Dashboard
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<Dashboard> get results => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Information that needs to be stored
|
|
||||||
class CreateSiteDashboardRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreateSiteDashboardRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? name,
|
|
||||||
$core.String? content,
|
|
||||||
$core.bool? isPrivate,
|
|
||||||
$core.int? autoRefresh,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (content != null) result.content = content;
|
|
||||||
if (isPrivate != null) result.isPrivate = isPrivate;
|
|
||||||
if (autoRefresh != null) result.autoRefresh = autoRefresh;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreateSiteDashboardRequest._();
|
|
||||||
|
|
||||||
factory CreateSiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreateSiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateSiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'content')
|
|
||||||
..aOB(4, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate')
|
|
||||||
..a<$core.int>(8, _omitFieldNames ? '' : 'AutoRefresh', $pb.PbFieldType.O3, protoName: 'AutoRefresh')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteDashboardRequest clone() => CreateSiteDashboardRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateSiteDashboardRequest copyWith(void Function(CreateSiteDashboardRequest) updates) => super.copyWith((message) => updates(message as CreateSiteDashboardRequest)) as CreateSiteDashboardRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteDashboardRequest create() => CreateSiteDashboardRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreateSiteDashboardRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreateSiteDashboardRequest> createRepeated() => $pb.PbList<CreateSiteDashboardRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateSiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateSiteDashboardRequest>(create);
|
|
||||||
static CreateSiteDashboardRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Name of the Dashboard
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get name => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set name($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasName() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearName() => $_clearField(2);
|
|
||||||
|
|
||||||
/// All widgets in Dashboard
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get content => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set content($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasContent() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearContent() => $_clearField(3);
|
|
||||||
|
|
||||||
/// Visibility of the Dashboard
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool get isPrivate => $_getBF(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set isPrivate($core.bool value) => $_setBool(3, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasIsPrivate() => $_has(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearIsPrivate() => $_clearField(4);
|
|
||||||
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$core.int get autoRefresh => $_getIZ(4);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
set autoRefresh($core.int value) => $_setSignedInt32(4, value);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
$core.bool hasAutoRefresh() => $_has(4);
|
|
||||||
@$pb.TagNumber(8)
|
|
||||||
void clearAutoRefresh() => $_clearField(8);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Created Dashboard
|
|
||||||
class CreateSiteDashboardResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreateSiteDashboardResult({
|
|
||||||
Dashboard? result,
|
Dashboard? result,
|
||||||
}) {
|
}) {
|
||||||
final result$ = create();
|
final result$ = create();
|
||||||
@@ -2072,528 +1877,32 @@ class CreateSiteDashboardResult extends $pb.GeneratedMessage {
|
|||||||
return result$;
|
return result$;
|
||||||
}
|
}
|
||||||
|
|
||||||
CreateSiteDashboardResult._();
|
SetOwnerDashboardResult._();
|
||||||
|
|
||||||
factory CreateSiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
factory SetOwnerDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||||
factory CreateSiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
factory SetOwnerDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateSiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SetOwnerDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
||||||
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
|
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
CreateSiteDashboardResult clone() => CreateSiteDashboardResult()..mergeFromMessage(this);
|
SetOwnerDashboardResult clone() => SetOwnerDashboardResult()..mergeFromMessage(this);
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||||
CreateSiteDashboardResult copyWith(void Function(CreateSiteDashboardResult) updates) => super.copyWith((message) => updates(message as CreateSiteDashboardResult)) as CreateSiteDashboardResult;
|
SetOwnerDashboardResult copyWith(void Function(SetOwnerDashboardResult) updates) => super.copyWith((message) => updates(message as SetOwnerDashboardResult)) as SetOwnerDashboardResult;
|
||||||
|
|
||||||
@$core.override
|
@$core.override
|
||||||
$pb.BuilderInfo get info_ => _i;
|
$pb.BuilderInfo get info_ => _i;
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
@$core.pragma('dart2js:noInline')
|
||||||
static CreateSiteDashboardResult create() => CreateSiteDashboardResult._();
|
static SetOwnerDashboardResult create() => SetOwnerDashboardResult._();
|
||||||
@$core.override
|
@$core.override
|
||||||
CreateSiteDashboardResult createEmptyInstance() => create();
|
SetOwnerDashboardResult createEmptyInstance() => create();
|
||||||
static $pb.PbList<CreateSiteDashboardResult> createRepeated() => $pb.PbList<CreateSiteDashboardResult>();
|
static $pb.PbList<SetOwnerDashboardResult> createRepeated() => $pb.PbList<SetOwnerDashboardResult>();
|
||||||
@$core.pragma('dart2js:noInline')
|
@$core.pragma('dart2js:noInline')
|
||||||
static CreateSiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateSiteDashboardResult>(create);
|
static SetOwnerDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SetOwnerDashboardResult>(create);
|
||||||
static CreateSiteDashboardResult? _defaultInstance;
|
static SetOwnerDashboardResult? _defaultInstance;
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard get result => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set result(Dashboard value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasResult() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearResult() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard ensureResult() => $_ensure(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// IDs of the Dashboard to be deleted
|
|
||||||
class DeleteSiteDashboardRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteSiteDashboardRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? dashboardID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (dashboardID != null) result.dashboardID = dashboardID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeleteSiteDashboardRequest._();
|
|
||||||
|
|
||||||
factory DeleteSiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteSiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteSiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteDashboardRequest clone() => DeleteSiteDashboardRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteDashboardRequest copyWith(void Function(DeleteSiteDashboardRequest) updates) => super.copyWith((message) => updates(message as DeleteSiteDashboardRequest)) as DeleteSiteDashboardRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteDashboardRequest create() => DeleteSiteDashboardRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeleteSiteDashboardRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteSiteDashboardRequest> createRepeated() => $pb.PbList<DeleteSiteDashboardRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteSiteDashboardRequest>(create);
|
|
||||||
static DeleteSiteDashboardRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Dashboard
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get dashboardID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set dashboardID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasDashboardID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearDashboardID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteSiteDashboardResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteSiteDashboardResult() => create();
|
|
||||||
|
|
||||||
DeleteSiteDashboardResult._();
|
|
||||||
|
|
||||||
factory DeleteSiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteSiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteSiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteDashboardResult clone() => DeleteSiteDashboardResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteSiteDashboardResult copyWith(void Function(DeleteSiteDashboardResult) updates) => super.copyWith((message) => updates(message as DeleteSiteDashboardResult)) as DeleteSiteDashboardResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteDashboardResult create() => DeleteSiteDashboardResult._();
|
|
||||||
@$core.override
|
|
||||||
DeleteSiteDashboardResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteSiteDashboardResult> createRepeated() => $pb.PbList<DeleteSiteDashboardResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteSiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteSiteDashboardResult>(create);
|
|
||||||
static DeleteSiteDashboardResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Information that needs to be updated
|
|
||||||
class UpdateSiteDashboardRequest extends $pb.GeneratedMessage {
|
|
||||||
factory UpdateSiteDashboardRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? dashboardID,
|
|
||||||
$1.StringObject? name,
|
|
||||||
$1.StringObject? content,
|
|
||||||
$1.BoolObject? isPrivate,
|
|
||||||
$1.Int32Object? autoRefresh,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (dashboardID != null) result.dashboardID = dashboardID;
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (content != null) result.content = content;
|
|
||||||
if (isPrivate != null) result.isPrivate = isPrivate;
|
|
||||||
if (autoRefresh != null) result.autoRefresh = autoRefresh;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateSiteDashboardRequest._();
|
|
||||||
|
|
||||||
factory UpdateSiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory UpdateSiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateSiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
|
|
||||||
..aOM<$1.StringObject>(3, _omitFieldNames ? '' : 'Name', protoName: 'Name', subBuilder: $1.StringObject.create)
|
|
||||||
..aOM<$1.StringObject>(4, _omitFieldNames ? '' : 'Content', protoName: 'Content', subBuilder: $1.StringObject.create)
|
|
||||||
..aOM<$1.BoolObject>(5, _omitFieldNames ? '' : 'IsPrivate', protoName: 'IsPrivate', subBuilder: $1.BoolObject.create)
|
|
||||||
..aOM<$1.Int32Object>(9, _omitFieldNames ? '' : 'AutoRefresh', protoName: 'AutoRefresh', subBuilder: $1.Int32Object.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteDashboardRequest clone() => UpdateSiteDashboardRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteDashboardRequest copyWith(void Function(UpdateSiteDashboardRequest) updates) => super.copyWith((message) => updates(message as UpdateSiteDashboardRequest)) as UpdateSiteDashboardRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteDashboardRequest create() => UpdateSiteDashboardRequest._();
|
|
||||||
@$core.override
|
|
||||||
UpdateSiteDashboardRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<UpdateSiteDashboardRequest> createRepeated() => $pb.PbList<UpdateSiteDashboardRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateSiteDashboardRequest>(create);
|
|
||||||
static UpdateSiteDashboardRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Dashboard
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get dashboardID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set dashboardID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasDashboardID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearDashboardID() => $_clearField(2);
|
|
||||||
|
|
||||||
/// Name of the Dashboard
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$1.StringObject get name => $_getN(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set name($1.StringObject value) => $_setField(3, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasName() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearName() => $_clearField(3);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$1.StringObject ensureName() => $_ensure(2);
|
|
||||||
|
|
||||||
/// All the widgets in Dashboard
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$1.StringObject get content => $_getN(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set content($1.StringObject value) => $_setField(4, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasContent() => $_has(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearContent() => $_clearField(4);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$1.StringObject ensureContent() => $_ensure(3);
|
|
||||||
|
|
||||||
/// Visibility of the Dashboard
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$1.BoolObject get isPrivate => $_getN(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
set isPrivate($1.BoolObject value) => $_setField(5, value);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$core.bool hasIsPrivate() => $_has(4);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
void clearIsPrivate() => $_clearField(5);
|
|
||||||
@$pb.TagNumber(5)
|
|
||||||
$1.BoolObject ensureIsPrivate() => $_ensure(4);
|
|
||||||
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$1.Int32Object get autoRefresh => $_getN(5);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
set autoRefresh($1.Int32Object value) => $_setField(9, value);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$core.bool hasAutoRefresh() => $_has(5);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
void clearAutoRefresh() => $_clearField(9);
|
|
||||||
@$pb.TagNumber(9)
|
|
||||||
$1.Int32Object ensureAutoRefresh() => $_ensure(5);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Updated Dashboard information
|
|
||||||
class UpdateSiteDashboardResult extends $pb.GeneratedMessage {
|
|
||||||
factory UpdateSiteDashboardResult({
|
|
||||||
Dashboard? result,
|
|
||||||
}) {
|
|
||||||
final result$ = create();
|
|
||||||
if (result != null) result$.result = result;
|
|
||||||
return result$;
|
|
||||||
}
|
|
||||||
|
|
||||||
UpdateSiteDashboardResult._();
|
|
||||||
|
|
||||||
factory UpdateSiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory UpdateSiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateSiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteDashboardResult clone() => UpdateSiteDashboardResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
UpdateSiteDashboardResult copyWith(void Function(UpdateSiteDashboardResult) updates) => super.copyWith((message) => updates(message as UpdateSiteDashboardResult)) as UpdateSiteDashboardResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteDashboardResult create() => UpdateSiteDashboardResult._();
|
|
||||||
@$core.override
|
|
||||||
UpdateSiteDashboardResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<UpdateSiteDashboardResult> createRepeated() => $pb.PbList<UpdateSiteDashboardResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static UpdateSiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<UpdateSiteDashboardResult>(create);
|
|
||||||
static UpdateSiteDashboardResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard get result => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set result(Dashboard value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasResult() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearResult() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard ensureResult() => $_ensure(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// IDs of the Dashboard
|
|
||||||
class GetSiteDashboardRequest extends $pb.GeneratedMessage {
|
|
||||||
factory GetSiteDashboardRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? dashboardID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (dashboardID != null) result.dashboardID = dashboardID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetSiteDashboardRequest._();
|
|
||||||
|
|
||||||
factory GetSiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetSiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetSiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteDashboardRequest clone() => GetSiteDashboardRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteDashboardRequest copyWith(void Function(GetSiteDashboardRequest) updates) => super.copyWith((message) => updates(message as GetSiteDashboardRequest)) as GetSiteDashboardRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteDashboardRequest create() => GetSiteDashboardRequest._();
|
|
||||||
@$core.override
|
|
||||||
GetSiteDashboardRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetSiteDashboardRequest> createRepeated() => $pb.PbList<GetSiteDashboardRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetSiteDashboardRequest>(create);
|
|
||||||
static GetSiteDashboardRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Dashboard
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get dashboardID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set dashboardID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasDashboardID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearDashboardID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// All information about the Dashboard
|
|
||||||
class GetSiteDashboardResult extends $pb.GeneratedMessage {
|
|
||||||
factory GetSiteDashboardResult({
|
|
||||||
Dashboard? result,
|
|
||||||
}) {
|
|
||||||
final result$ = create();
|
|
||||||
if (result != null) result$.result = result;
|
|
||||||
return result$;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetSiteDashboardResult._();
|
|
||||||
|
|
||||||
factory GetSiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetSiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetSiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'result', subBuilder: Dashboard.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteDashboardResult clone() => GetSiteDashboardResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetSiteDashboardResult copyWith(void Function(GetSiteDashboardResult) updates) => super.copyWith((message) => updates(message as GetSiteDashboardResult)) as GetSiteDashboardResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteDashboardResult create() => GetSiteDashboardResult._();
|
|
||||||
@$core.override
|
|
||||||
GetSiteDashboardResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetSiteDashboardResult> createRepeated() => $pb.PbList<GetSiteDashboardResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetSiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetSiteDashboardResult>(create);
|
|
||||||
static GetSiteDashboardResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard get result => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set result(Dashboard value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasResult() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearResult() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
Dashboard ensureResult() => $_ensure(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
class CopySiteDashboardRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CopySiteDashboardRequest({
|
|
||||||
$1.RequestSiteHeader? header,
|
|
||||||
$core.String? dashboardID,
|
|
||||||
$core.String? name,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (dashboardID != null) result.dashboardID = dashboardID;
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CopySiteDashboardRequest._();
|
|
||||||
|
|
||||||
factory CopySiteDashboardRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CopySiteDashboardRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopySiteDashboardRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestSiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestSiteHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'DashboardID', protoName: 'DashboardID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CopySiteDashboardRequest clone() => CopySiteDashboardRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CopySiteDashboardRequest copyWith(void Function(CopySiteDashboardRequest) updates) => super.copyWith((message) => updates(message as CopySiteDashboardRequest)) as CopySiteDashboardRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CopySiteDashboardRequest create() => CopySiteDashboardRequest._();
|
|
||||||
@$core.override
|
|
||||||
CopySiteDashboardRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CopySiteDashboardRequest> createRepeated() => $pb.PbList<CopySiteDashboardRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CopySiteDashboardRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopySiteDashboardRequest>(create);
|
|
||||||
static CopySiteDashboardRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestSiteHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestSiteHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
/// Identifier of the Dashboard
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get dashboardID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set dashboardID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasDashboardID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearDashboardID() => $_clearField(2);
|
|
||||||
|
|
||||||
/// Name of the new Dashboard
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get name => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set name($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasName() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearName() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// New copied dashboard
|
|
||||||
class CopySiteDashboardResult extends $pb.GeneratedMessage {
|
|
||||||
factory CopySiteDashboardResult({
|
|
||||||
Dashboard? result,
|
|
||||||
}) {
|
|
||||||
final result$ = create();
|
|
||||||
if (result != null) result$.result = result;
|
|
||||||
return result$;
|
|
||||||
}
|
|
||||||
|
|
||||||
CopySiteDashboardResult._();
|
|
||||||
|
|
||||||
factory CopySiteDashboardResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CopySiteDashboardResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CopySiteDashboardResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<Dashboard>(1, _omitFieldNames ? '' : 'Result', protoName: 'Result', subBuilder: Dashboard.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CopySiteDashboardResult clone() => CopySiteDashboardResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CopySiteDashboardResult copyWith(void Function(CopySiteDashboardResult) updates) => super.copyWith((message) => updates(message as CopySiteDashboardResult)) as CopySiteDashboardResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CopySiteDashboardResult create() => CopySiteDashboardResult._();
|
|
||||||
@$core.override
|
|
||||||
CopySiteDashboardResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CopySiteDashboardResult> createRepeated() => $pb.PbList<CopySiteDashboardResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CopySiteDashboardResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CopySiteDashboardResult>(create);
|
|
||||||
static CopySiteDashboardResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
@$pb.TagNumber(1)
|
||||||
Dashboard get result => $_getN(0);
|
Dashboard get result => $_getN(0);
|
||||||
|
|||||||
@@ -64,6 +64,10 @@ class DashboardServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$copy, request, options: options);
|
return $createUnaryCall(_$copy, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$grpc.ResponseFuture<$0.SetOwnerDashboardResult> setOwner($0.SetOwnerDashboardRequest request, {$grpc.CallOptions? options,}) {
|
||||||
|
return $createUnaryCall(_$setOwner, request, options: options);
|
||||||
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateProjectDashboardResult> createProject($0.CreateProjectDashboardRequest request, {$grpc.CallOptions? options,}) {
|
$grpc.ResponseFuture<$0.CreateProjectDashboardResult> createProject($0.CreateProjectDashboardRequest request, {$grpc.CallOptions? options,}) {
|
||||||
return $createUnaryCall(_$createProject, request, options: options);
|
return $createUnaryCall(_$createProject, request, options: options);
|
||||||
}
|
}
|
||||||
@@ -88,34 +92,6 @@ class DashboardServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$copyProject, request, options: options);
|
return $createUnaryCall(_$copyProject, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateSiteDashboardResult> createSite($0.CreateSiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ListSiteDashboardResult> listSite($0.ListSiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$listSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteSiteDashboardResult> deleteSite($0.DeleteSiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteDashboardsForSiteResult> deleteDashboardsForSite($0.DeleteDashboardsForSiteRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteDashboardsForSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.UpdateSiteDashboardResult> updateSite($0.UpdateSiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$updateSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetSiteDashboardResult> getSite($0.GetSiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$getSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CopySiteDashboardResult> copySite($0.CopySiteDashboardRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$copySite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
// method descriptors
|
// method descriptors
|
||||||
|
|
||||||
static final _$create = $grpc.ClientMethod<$0.CreateDashboardRequest, $0.CreateDashboardResult>(
|
static final _$create = $grpc.ClientMethod<$0.CreateDashboardRequest, $0.CreateDashboardResult>(
|
||||||
@@ -150,6 +126,10 @@ class DashboardServiceClient extends $grpc.Client {
|
|||||||
'/vizapi.DashboardService/Copy',
|
'/vizapi.DashboardService/Copy',
|
||||||
($0.CopyDashboardRequest value) => value.writeToBuffer(),
|
($0.CopyDashboardRequest value) => value.writeToBuffer(),
|
||||||
$0.CopyDashboardResult.fromBuffer);
|
$0.CopyDashboardResult.fromBuffer);
|
||||||
|
static final _$setOwner = $grpc.ClientMethod<$0.SetOwnerDashboardRequest, $0.SetOwnerDashboardResult>(
|
||||||
|
'/vizapi.DashboardService/SetOwner',
|
||||||
|
($0.SetOwnerDashboardRequest value) => value.writeToBuffer(),
|
||||||
|
$0.SetOwnerDashboardResult.fromBuffer);
|
||||||
static final _$createProject = $grpc.ClientMethod<$0.CreateProjectDashboardRequest, $0.CreateProjectDashboardResult>(
|
static final _$createProject = $grpc.ClientMethod<$0.CreateProjectDashboardRequest, $0.CreateProjectDashboardResult>(
|
||||||
'/vizapi.DashboardService/CreateProject',
|
'/vizapi.DashboardService/CreateProject',
|
||||||
($0.CreateProjectDashboardRequest value) => value.writeToBuffer(),
|
($0.CreateProjectDashboardRequest value) => value.writeToBuffer(),
|
||||||
@@ -174,34 +154,6 @@ class DashboardServiceClient extends $grpc.Client {
|
|||||||
'/vizapi.DashboardService/CopyProject',
|
'/vizapi.DashboardService/CopyProject',
|
||||||
($0.CopyProjectDashboardRequest value) => value.writeToBuffer(),
|
($0.CopyProjectDashboardRequest value) => value.writeToBuffer(),
|
||||||
$0.CopyProjectDashboardResult.fromBuffer);
|
$0.CopyProjectDashboardResult.fromBuffer);
|
||||||
static final _$createSite = $grpc.ClientMethod<$0.CreateSiteDashboardRequest, $0.CreateSiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/CreateSite',
|
|
||||||
($0.CreateSiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreateSiteDashboardResult.fromBuffer);
|
|
||||||
static final _$listSite = $grpc.ClientMethod<$0.ListSiteDashboardRequest, $0.ListSiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/ListSite',
|
|
||||||
($0.ListSiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ListSiteDashboardResult.fromBuffer);
|
|
||||||
static final _$deleteSite = $grpc.ClientMethod<$0.DeleteSiteDashboardRequest, $0.DeleteSiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/DeleteSite',
|
|
||||||
($0.DeleteSiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteSiteDashboardResult.fromBuffer);
|
|
||||||
static final _$deleteDashboardsForSite = $grpc.ClientMethod<$0.DeleteDashboardsForSiteRequest, $0.DeleteDashboardsForSiteResult>(
|
|
||||||
'/vizapi.DashboardService/DeleteDashboardsForSite',
|
|
||||||
($0.DeleteDashboardsForSiteRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteDashboardsForSiteResult.fromBuffer);
|
|
||||||
static final _$updateSite = $grpc.ClientMethod<$0.UpdateSiteDashboardRequest, $0.UpdateSiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/UpdateSite',
|
|
||||||
($0.UpdateSiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.UpdateSiteDashboardResult.fromBuffer);
|
|
||||||
static final _$getSite = $grpc.ClientMethod<$0.GetSiteDashboardRequest, $0.GetSiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/GetSite',
|
|
||||||
($0.GetSiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.GetSiteDashboardResult.fromBuffer);
|
|
||||||
static final _$copySite = $grpc.ClientMethod<$0.CopySiteDashboardRequest, $0.CopySiteDashboardResult>(
|
|
||||||
'/vizapi.DashboardService/CopySite',
|
|
||||||
($0.CopySiteDashboardRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CopySiteDashboardResult.fromBuffer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.DashboardService')
|
@$pb.GrpcServiceName('vizapi.DashboardService')
|
||||||
@@ -265,6 +217,13 @@ abstract class DashboardServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.CopyDashboardRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.CopyDashboardRequest.fromBuffer(value),
|
||||||
($0.CopyDashboardResult value) => value.writeToBuffer()));
|
($0.CopyDashboardResult value) => value.writeToBuffer()));
|
||||||
|
$addMethod($grpc.ServiceMethod<$0.SetOwnerDashboardRequest, $0.SetOwnerDashboardResult>(
|
||||||
|
'SetOwner',
|
||||||
|
setOwner_Pre,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
($core.List<$core.int> value) => $0.SetOwnerDashboardRequest.fromBuffer(value),
|
||||||
|
($0.SetOwnerDashboardResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateProjectDashboardRequest, $0.CreateProjectDashboardResult>(
|
$addMethod($grpc.ServiceMethod<$0.CreateProjectDashboardRequest, $0.CreateProjectDashboardResult>(
|
||||||
'CreateProject',
|
'CreateProject',
|
||||||
createProject_Pre,
|
createProject_Pre,
|
||||||
@@ -307,55 +266,6 @@ abstract class DashboardServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.CopyProjectDashboardRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.CopyProjectDashboardRequest.fromBuffer(value),
|
||||||
($0.CopyProjectDashboardResult value) => value.writeToBuffer()));
|
($0.CopyProjectDashboardResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateSiteDashboardRequest, $0.CreateSiteDashboardResult>(
|
|
||||||
'CreateSite',
|
|
||||||
createSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreateSiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.CreateSiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ListSiteDashboardRequest, $0.ListSiteDashboardResult>(
|
|
||||||
'ListSite',
|
|
||||||
listSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ListSiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.ListSiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteSiteDashboardRequest, $0.DeleteSiteDashboardResult>(
|
|
||||||
'DeleteSite',
|
|
||||||
deleteSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteSiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.DeleteSiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteDashboardsForSiteRequest, $0.DeleteDashboardsForSiteResult>(
|
|
||||||
'DeleteDashboardsForSite',
|
|
||||||
deleteDashboardsForSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteDashboardsForSiteRequest.fromBuffer(value),
|
|
||||||
($0.DeleteDashboardsForSiteResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.UpdateSiteDashboardRequest, $0.UpdateSiteDashboardResult>(
|
|
||||||
'UpdateSite',
|
|
||||||
updateSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.UpdateSiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.UpdateSiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetSiteDashboardRequest, $0.GetSiteDashboardResult>(
|
|
||||||
'GetSite',
|
|
||||||
getSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.GetSiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.GetSiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CopySiteDashboardRequest, $0.CopySiteDashboardResult>(
|
|
||||||
'CopySite',
|
|
||||||
copySite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CopySiteDashboardRequest.fromBuffer(value),
|
|
||||||
($0.CopySiteDashboardResult value) => value.writeToBuffer()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.CreateDashboardResult> create_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateDashboardRequest> $request) async {
|
$async.Future<$0.CreateDashboardResult> create_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateDashboardRequest> $request) async {
|
||||||
@@ -406,6 +316,12 @@ abstract class DashboardServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.CopyDashboardResult> copy($grpc.ServiceCall call, $0.CopyDashboardRequest request);
|
$async.Future<$0.CopyDashboardResult> copy($grpc.ServiceCall call, $0.CopyDashboardRequest request);
|
||||||
|
|
||||||
|
$async.Future<$0.SetOwnerDashboardResult> setOwner_Pre($grpc.ServiceCall $call, $async.Future<$0.SetOwnerDashboardRequest> $request) async {
|
||||||
|
return setOwner($call, await $request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$async.Future<$0.SetOwnerDashboardResult> setOwner($grpc.ServiceCall call, $0.SetOwnerDashboardRequest request);
|
||||||
|
|
||||||
$async.Future<$0.CreateProjectDashboardResult> createProject_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateProjectDashboardRequest> $request) async {
|
$async.Future<$0.CreateProjectDashboardResult> createProject_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateProjectDashboardRequest> $request) async {
|
||||||
return createProject($call, await $request);
|
return createProject($call, await $request);
|
||||||
}
|
}
|
||||||
@@ -442,46 +358,4 @@ abstract class DashboardServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.CopyProjectDashboardResult> copyProject($grpc.ServiceCall call, $0.CopyProjectDashboardRequest request);
|
$async.Future<$0.CopyProjectDashboardResult> copyProject($grpc.ServiceCall call, $0.CopyProjectDashboardRequest request);
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteDashboardResult> createSite_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateSiteDashboardRequest> $request) async {
|
|
||||||
return createSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteDashboardResult> createSite($grpc.ServiceCall call, $0.CreateSiteDashboardRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteDashboardResult> listSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ListSiteDashboardRequest> $request) async {
|
|
||||||
return listSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteDashboardResult> listSite($grpc.ServiceCall call, $0.ListSiteDashboardRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteDashboardResult> deleteSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteSiteDashboardRequest> $request) async {
|
|
||||||
return deleteSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteDashboardResult> deleteSite($grpc.ServiceCall call, $0.DeleteSiteDashboardRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteDashboardsForSiteResult> deleteDashboardsForSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteDashboardsForSiteRequest> $request) async {
|
|
||||||
return deleteDashboardsForSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteDashboardsForSiteResult> deleteDashboardsForSite($grpc.ServiceCall call, $0.DeleteDashboardsForSiteRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteDashboardResult> updateSite_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateSiteDashboardRequest> $request) async {
|
|
||||||
return updateSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteDashboardResult> updateSite($grpc.ServiceCall call, $0.UpdateSiteDashboardRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.GetSiteDashboardResult> getSite_Pre($grpc.ServiceCall $call, $async.Future<$0.GetSiteDashboardRequest> $request) async {
|
|
||||||
return getSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetSiteDashboardResult> getSite($grpc.ServiceCall call, $0.GetSiteDashboardRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CopySiteDashboardResult> copySite_Pre($grpc.ServiceCall $call, $async.Future<$0.CopySiteDashboardRequest> $request) async {
|
|
||||||
return copySite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CopySiteDashboardResult> copySite($grpc.ServiceCall call, $0.CopySiteDashboardRequest request);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,8 +60,8 @@ const ListDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChRMaXN0RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
'ChRMaXN0RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||||
'plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6DpJBCwoJ0gEGSGVhZGVy');
|
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use listDashboardResultDescriptor instead')
|
@$core.Deprecated('Use listDashboardResultDescriptor instead')
|
||||||
const ListDashboardResult$json = {
|
const ListDashboardResult$json = {
|
||||||
@@ -93,13 +93,13 @@ const CreateDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChZDcmVhdGVEYXNoYm9hcmRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
'ChZDcmVhdGVEYXNoYm9hcmRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchI1CgROYW1lGAIgASgJQiGSQRcyFU5hbWUg'
|
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISNgoETmFtZRgCIAEoCUIikkEXMhVOYW1l'
|
||||||
'b2YgdGhlIERhc2hib2FyZPpCBHICEAFSBE5hbWUSNwoHY29udGVudBgDIAEoCUIdkkEaMhhBbG'
|
'IG9mIHRoZSBEYXNoYm9hcmS6gQEEcgIQAVIETmFtZRI3Cgdjb250ZW50GAMgASgJQh2SQRoyGE'
|
||||||
'wgd2lkZ2V0cyBpbiBEYXNoYm9hcmRSB2NvbnRlbnQSPgoJSXNQcml2YXRlGAQgASgIQiCSQR0y'
|
'FsbCB3aWRnZXRzIGluIERhc2hib2FyZFIHY29udGVudBI+CglJc1ByaXZhdGUYBCABKAhCIJJB'
|
||||||
'G1Zpc2liaWxpdHkgb2YgdGhlIERhc2hib2FyZFIJSXNQcml2YXRlEiAKC0F1dG9SZWZyZXNoGA'
|
'HTIbVmlzaWJpbGl0eSBvZiB0aGUgRGFzaGJvYXJkUglJc1ByaXZhdGUSIAoLQXV0b1JlZnJlc2'
|
||||||
'ggASgFUgtBdXRvUmVmcmVzaDo6kkE3CjUyI0luZm9ybWF0aW9uIHRoYXQgbmVlZHMgdG8gYmUg'
|
'gYCCABKAVSC0F1dG9SZWZyZXNoOjqSQTcKNTIjSW5mb3JtYXRpb24gdGhhdCBuZWVkcyB0byBi'
|
||||||
'c3RvcmVk0gEGSGVhZGVy0gEETmFtZQ==');
|
'ZSBzdG9yZWTSAQZIZWFkZXLSAQROYW1l');
|
||||||
|
|
||||||
@$core.Deprecated('Use createDashboardResultDescriptor instead')
|
@$core.Deprecated('Use createDashboardResultDescriptor instead')
|
||||||
const CreateDashboardResult$json = {
|
const CreateDashboardResult$json = {
|
||||||
@@ -127,11 +127,11 @@ const DeleteDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChZEZWxldGVEYXNoYm9hcmRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
'ChZEZWxldGVEYXNoYm9hcmRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchJJCgtEYXNoYm9hcmRJRBgCIAEoCUInkkEd'
|
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISSgoLRGFzaGJvYXJkSUQYAiABKAlCKJJB'
|
||||||
'MhtJZGVudGlmaWVyIG9mIHRoZSBEYXNoYm9hcmT6QgRyAhABUgtEYXNoYm9hcmRJRDpAkkE9Cj'
|
'HTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJkuoEBBHICEAFSC0Rhc2hib2FyZElEOkCSQT'
|
||||||
'syIklEcyBvZiB0aGUgRGFzaGJvYXJkIHRvIGJlIGRlbGV0ZWTSAQZIZWFkZXLSAQtEYXNoYm9h'
|
'0KOzIiSURzIG9mIHRoZSBEYXNoYm9hcmQgdG8gYmUgZGVsZXRlZNIBBkhlYWRlctIBC0Rhc2hi'
|
||||||
'cmRJRA==');
|
'b2FyZElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteDashboardResultDescriptor instead')
|
@$core.Deprecated('Use deleteDashboardResultDescriptor instead')
|
||||||
const DeleteDashboardResult$json = {
|
const DeleteDashboardResult$json = {
|
||||||
@@ -153,10 +153,10 @@ const DeleteDashboardsForOrganisationRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteDashboardsForOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteDashboardsForOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteDashboardsForOrganisationRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteDashboardsForOrganisationRequestDescriptor = $convert.base64Decode(
|
||||||
'CiZEZWxldGVEYXNoYm9hcmRzRm9yT3JnYW5pc2F0aW9uUmVxdWVzdBJSCg5PcmdhbmlzYXRpb2'
|
'CiZEZWxldGVEYXNoYm9hcmRzRm9yT3JnYW5pc2F0aW9uUmVxdWVzdBJTCg5PcmdhbmlzYXRpb2'
|
||||||
'5JRBgCIAEoCUIqkkEgMh5JZGVudGlmaWVyIG9mIHRoZSBPcmdhbml6YXRpb276QgRyAhABUg5P'
|
'5JRBgCIAEoCUIrkkEgMh5JZGVudGlmaWVyIG9mIHRoZSBPcmdhbml6YXRpb266gQEEcgIQAVIO'
|
||||||
'cmdhbmlzYXRpb25JRDpNkkFKCkgyNU9yZ2FuaXphdGlvbiBpZGVudGlmaWVyIHRvIGRlbGV0ZS'
|
'T3JnYW5pc2F0aW9uSUQ6TZJBSgpIMjVPcmdhbml6YXRpb24gaWRlbnRpZmllciB0byBkZWxldG'
|
||||||
'B0aGUgZGFzaGJvYXJkcyBmcm9t0gEOT3JnYW5pc2F0aW9uSUQ=');
|
'UgdGhlIGRhc2hib2FyZHMgZnJvbdIBDk9yZ2FuaXNhdGlvbklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteDashboardsForOrganisationResultDescriptor instead')
|
@$core.Deprecated('Use deleteDashboardsForOrganisationResultDescriptor instead')
|
||||||
const DeleteDashboardsForOrganisationResult$json = {
|
const DeleteDashboardsForOrganisationResult$json = {
|
||||||
@@ -178,10 +178,10 @@ const DeleteDashboardsForProjectRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteDashboardsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteDashboardsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteDashboardsForProjectRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteDashboardsForProjectRequestDescriptor = $convert.base64Decode(
|
||||||
'CiFEZWxldGVEYXNoYm9hcmRzRm9yUHJvamVjdFJlcXVlc3QSQwoJUHJvamVjdElEGAEgASgJQi'
|
'CiFEZWxldGVEYXNoYm9hcmRzRm9yUHJvamVjdFJlcXVlc3QSRAoJUHJvamVjdElEGAEgASgJQi'
|
||||||
'WSQRsyGUlkZW50aWZpZXIgb2YgdGhlIFByb2plY3T6QgRyAhABUglQcm9qZWN0SUQ6Q5JBQAo+'
|
'aSQRsyGUlkZW50aWZpZXIgb2YgdGhlIFByb2plY3S6gQEEcgIQAVIJUHJvamVjdElEOkOSQUAK'
|
||||||
'MjBQcm9qZWN0IGlkZW50aWZpZXIgdG8gZGVsZXRlIHRoZSBkYXNoYm9hcmRzIGZyb23SAQlQcm'
|
'PjIwUHJvamVjdCBpZGVudGlmaWVyIHRvIGRlbGV0ZSB0aGUgZGFzaGJvYXJkcyBmcm9t0gEJUH'
|
||||||
'9qZWN0SUQ=');
|
'JvamVjdElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteDashboardsForProjectResultDescriptor instead')
|
@$core.Deprecated('Use deleteDashboardsForProjectResultDescriptor instead')
|
||||||
const DeleteDashboardsForProjectResult$json = {
|
const DeleteDashboardsForProjectResult$json = {
|
||||||
@@ -192,30 +192,6 @@ const DeleteDashboardsForProjectResult$json = {
|
|||||||
final $typed_data.Uint8List deleteDashboardsForProjectResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteDashboardsForProjectResultDescriptor = $convert.base64Decode(
|
||||||
'CiBEZWxldGVEYXNoYm9hcmRzRm9yUHJvamVjdFJlc3VsdA==');
|
'CiBEZWxldGVEYXNoYm9hcmRzRm9yUHJvamVjdFJlc3VsdA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteDashboardsForSiteRequestDescriptor instead')
|
|
||||||
const DeleteDashboardsForSiteRequest$json = {
|
|
||||||
'1': 'DeleteDashboardsForSiteRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteDashboardsForSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteDashboardsForSiteRequestDescriptor = $convert.base64Decode(
|
|
||||||
'Ch5EZWxldGVEYXNoYm9hcmRzRm9yU2l0ZVJlcXVlc3QSOgoGU2l0ZUlEGAEgASgJQiKSQRgyFk'
|
|
||||||
'lkZW50aWZpZXIgb2YgdGhlIFNpdGX6QgRyAhABUgZTaXRlSUQ6PZJBOgo4Mi1TaXRlIGlkZW50'
|
|
||||||
'aWZpZXIgdG8gZGVsZXRlIHRoZSBkYXNoYm9hcmRzIGZyb23SAQZTaXRlSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteDashboardsForSiteResultDescriptor instead')
|
|
||||||
const DeleteDashboardsForSiteResult$json = {
|
|
||||||
'1': 'DeleteDashboardsForSiteResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteDashboardsForSiteResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteDashboardsForSiteResultDescriptor = $convert.base64Decode(
|
|
||||||
'Ch1EZWxldGVEYXNoYm9hcmRzRm9yU2l0ZVJlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateDashboardRequestDescriptor instead')
|
@$core.Deprecated('Use updateDashboardRequestDescriptor instead')
|
||||||
const UpdateDashboardRequest$json = {
|
const UpdateDashboardRequest$json = {
|
||||||
'1': 'UpdateDashboardRequest',
|
'1': 'UpdateDashboardRequest',
|
||||||
@@ -232,16 +208,16 @@ const UpdateDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChZVcGRhdGVEYXNoYm9hcmRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
'ChZVcGRhdGVEYXNoYm9hcmRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchJJCgtEYXNoYm9hcmRJRBgCIAEoCUInkkEd'
|
'JvamVjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISSgoLRGFzaGJvYXJkSUQYAiABKAlCKJJB'
|
||||||
'MhtJZGVudGlmaWVyIG9mIHRoZSBEYXNoYm9hcmT6QgRyAhABUgtEYXNoYm9hcmRJRBJBCgROYW'
|
'HTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJkuoEBBHICEAFSC0Rhc2hib2FyZElEEkEKBE'
|
||||||
'1lGAMgASgLMhEuYXBpLlN0cmluZ09iamVjdEIakkEXMhVOYW1lIG9mIHRoZSBEYXNoYm9hcmRS'
|
'5hbWUYAyABKAsyES5hcGkuU3RyaW5nT2JqZWN0QhqSQRcyFU5hbWUgb2YgdGhlIERhc2hib2Fy'
|
||||||
'BE5hbWUSTgoHQ29udGVudBgEIAEoCzIRLmFwaS5TdHJpbmdPYmplY3RCIZJBHjIcQWxsIHRoZS'
|
'ZFIETmFtZRJOCgdDb250ZW50GAQgASgLMhEuYXBpLlN0cmluZ09iamVjdEIhkkEeMhxBbGwgdG'
|
||||||
'B3aWRnZXRzIGluIERhc2hib2FyZFIHQ29udGVudBJPCglJc1ByaXZhdGUYBSABKAsyDy5hcGku'
|
'hlIHdpZGdldHMgaW4gRGFzaGJvYXJkUgdDb250ZW50Ek8KCUlzUHJpdmF0ZRgFIAEoCzIPLmFw'
|
||||||
'Qm9vbE9iamVjdEIgkkEdMhtWaXNpYmlsaXR5IG9mIHRoZSBEYXNoYm9hcmRSCUlzUHJpdmF0ZR'
|
'aS5Cb29sT2JqZWN0QiCSQR0yG1Zpc2liaWxpdHkgb2YgdGhlIERhc2hib2FyZFIJSXNQcml2YX'
|
||||||
'IyCgtBdXRvUmVmcmVzaBgJIAEoCzIQLmFwaS5JbnQzMk9iamVjdFILQXV0b1JlZnJlc2g6QpJB'
|
'RlEjIKC0F1dG9SZWZyZXNoGAkgASgLMhAuYXBpLkludDMyT2JqZWN0UgtBdXRvUmVmcmVzaDpC'
|
||||||
'Pwo9MiRJbmZvcm1hdGlvbiB0aGF0IG5lZWRzIHRvIGJlIHVwZGF0ZWTSAQZIZWFkZXLSAQtEYX'
|
'kkE/Cj0yJEluZm9ybWF0aW9uIHRoYXQgbmVlZHMgdG8gYmUgdXBkYXRlZNIBBkhlYWRlctIBC0'
|
||||||
'NoYm9hcmRJRA==');
|
'Rhc2hib2FyZElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateDashboardResultDescriptor instead')
|
@$core.Deprecated('Use updateDashboardResultDescriptor instead')
|
||||||
const UpdateDashboardResult$json = {
|
const UpdateDashboardResult$json = {
|
||||||
@@ -269,10 +245,10 @@ const GetDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChNHZXREYXNoYm9hcmRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
'ChNHZXREYXNoYm9hcmRSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchJJCgtEYXNoYm9hcmRJRBgCIAEoCUInkkEdMhtJ'
|
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISSgoLRGFzaGJvYXJkSUQYAiABKAlCKJJBHTIb'
|
||||||
'ZGVudGlmaWVyIG9mIHRoZSBEYXNoYm9hcmT6QgRyAhABUgtEYXNoYm9hcmRJRDoykkEvCi0yFE'
|
'SWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJkuoEBBHICEAFSC0Rhc2hib2FyZElEOjKSQS8KLT'
|
||||||
'lEcyBvZiB0aGUgRGFzaGJvYXJk0gEGSGVhZGVy0gELRGFzaGJvYXJkSUQ=');
|
'IUSURzIG9mIHRoZSBEYXNoYm9hcmTSAQZIZWFkZXLSAQtEYXNoYm9hcmRJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getDashboardResultDescriptor instead')
|
@$core.Deprecated('Use getDashboardResultDescriptor instead')
|
||||||
const GetDashboardResult$json = {
|
const GetDashboardResult$json = {
|
||||||
@@ -301,11 +277,11 @@ const CopyDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CopyDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CopyDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List copyDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List copyDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChRDb3B5RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
'ChRDb3B5RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2'
|
||||||
'plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiABKAlCJ5JBHTIb'
|
'plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkoKC0Rhc2hib2FyZElEGAIgASgJQiiSQR0y'
|
||||||
'SWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSUQSOQoETmFtZR'
|
'G0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZLqBAQRyAhABUgtEYXNoYm9hcmRJRBI6CgROYW'
|
||||||
'gDIAEoCUIlkkEbMhlOYW1lIG9mIHRoZSBuZXcgRGFzaGJvYXJk+kIEcgIQAVIETmFtZTojkkEg'
|
'1lGAMgASgJQiaSQRsyGU5hbWUgb2YgdGhlIG5ldyBEYXNoYm9hcmS6gQEEcgIQAVIETmFtZToj'
|
||||||
'Ch7SAQZIZWFkZXLSAQtEYXNoYm9hcmRJRNIBBE5hbWU=');
|
'kkEgCh7SAQZIZWFkZXLSAQtEYXNoYm9hcmRJRNIBBE5hbWU=');
|
||||||
|
|
||||||
@$core.Deprecated('Use copyDashboardResultDescriptor instead')
|
@$core.Deprecated('Use copyDashboardResultDescriptor instead')
|
||||||
const CopyDashboardResult$json = {
|
const CopyDashboardResult$json = {
|
||||||
@@ -332,8 +308,8 @@ const ListProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChtMaXN0UHJvamVjdERhc2hib2FyZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
'ChtMaXN0UHJvamVjdERhc2hib2FyZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlcjoOkkELCgnSAQZIZWFkZXI=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use listProjectDashboardResultDescriptor instead')
|
||||||
const ListProjectDashboardResult$json = {
|
const ListProjectDashboardResult$json = {
|
||||||
@@ -365,13 +341,13 @@ const CreateProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch1DcmVhdGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
'Ch1DcmVhdGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISNQoETmFtZRgCIAEoCUIhkkEX'
|
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjYKBE5hbWUYAiABKAlCIpJB'
|
||||||
'MhVOYW1lIG9mIHRoZSBEYXNoYm9hcmT6QgRyAhABUgROYW1lEjcKB2NvbnRlbnQYAyABKAlCHZ'
|
'FzIVTmFtZSBvZiB0aGUgRGFzaGJvYXJkuoEBBHICEAFSBE5hbWUSNwoHY29udGVudBgDIAEoCU'
|
||||||
'JBGjIYQWxsIHdpZGdldHMgaW4gRGFzaGJvYXJkUgdjb250ZW50Ej4KCUlzUHJpdmF0ZRgEIAEo'
|
'IdkkEaMhhBbGwgd2lkZ2V0cyBpbiBEYXNoYm9hcmRSB2NvbnRlbnQSPgoJSXNQcml2YXRlGAQg'
|
||||||
'CEIgkkEdMhtWaXNpYmlsaXR5IG9mIHRoZSBEYXNoYm9hcmRSCUlzUHJpdmF0ZRIgCgtBdXRvUm'
|
'ASgIQiCSQR0yG1Zpc2liaWxpdHkgb2YgdGhlIERhc2hib2FyZFIJSXNQcml2YXRlEiAKC0F1dG'
|
||||||
'VmcmVzaBgIIAEoBVILQXV0b1JlZnJlc2g6OpJBNwo1MiNJbmZvcm1hdGlvbiB0aGF0IG5lZWRz'
|
'9SZWZyZXNoGAggASgFUgtBdXRvUmVmcmVzaDo6kkE3CjUyI0luZm9ybWF0aW9uIHRoYXQgbmVl'
|
||||||
'IHRvIGJlIHN0b3JlZNIBBkhlYWRlctIBBE5hbWU=');
|
'ZHMgdG8gYmUgc3RvcmVk0gEGSGVhZGVy0gEETmFtZQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use createProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use createProjectDashboardResultDescriptor instead')
|
||||||
const CreateProjectDashboardResult$json = {
|
const CreateProjectDashboardResult$json = {
|
||||||
@@ -399,11 +375,11 @@ const DeleteProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch1EZWxldGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
'Ch1EZWxldGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiAB'
|
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkoKC0Rhc2hib2FyZElEGAIg'
|
||||||
'KAlCJ5JBHTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSU'
|
'ASgJQiiSQR0yG0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZLqBAQRyAhABUgtEYXNoYm9hcm'
|
||||||
'Q6QJJBPQo7MiJJRHMgb2YgdGhlIERhc2hib2FyZCB0byBiZSBkZWxldGVk0gEGSGVhZGVy0gEL'
|
'RJRDpAkkE9CjsyIklEcyBvZiB0aGUgRGFzaGJvYXJkIHRvIGJlIGRlbGV0ZWTSAQZIZWFkZXLS'
|
||||||
'RGFzaGJvYXJkSUQ=');
|
'AQtEYXNoYm9hcmRJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use deleteProjectDashboardResultDescriptor instead')
|
||||||
const DeleteProjectDashboardResult$json = {
|
const DeleteProjectDashboardResult$json = {
|
||||||
@@ -430,16 +406,16 @@ const UpdateProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch1VcGRhdGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
'Ch1VcGRhdGVQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUm'
|
||||||
'VxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiAB'
|
'VxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkoKC0Rhc2hib2FyZElEGAIg'
|
||||||
'KAlCJ5JBHTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSU'
|
'ASgJQiiSQR0yG0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZLqBAQRyAhABUgtEYXNoYm9hcm'
|
||||||
'QSQQoETmFtZRgDIAEoCzIRLmFwaS5TdHJpbmdPYmplY3RCGpJBFzIVTmFtZSBvZiB0aGUgRGFz'
|
'RJRBJBCgROYW1lGAMgASgLMhEuYXBpLlN0cmluZ09iamVjdEIakkEXMhVOYW1lIG9mIHRoZSBE'
|
||||||
'aGJvYXJkUgROYW1lEk4KB0NvbnRlbnQYBCABKAsyES5hcGkuU3RyaW5nT2JqZWN0QiGSQR4yHE'
|
'YXNoYm9hcmRSBE5hbWUSTgoHQ29udGVudBgEIAEoCzIRLmFwaS5TdHJpbmdPYmplY3RCIZJBHj'
|
||||||
'FsbCB0aGUgd2lkZ2V0cyBpbiBEYXNoYm9hcmRSB0NvbnRlbnQSTwoJSXNQcml2YXRlGAUgASgL'
|
'IcQWxsIHRoZSB3aWRnZXRzIGluIERhc2hib2FyZFIHQ29udGVudBJPCglJc1ByaXZhdGUYBSAB'
|
||||||
'Mg8uYXBpLkJvb2xPYmplY3RCIJJBHTIbVmlzaWJpbGl0eSBvZiB0aGUgRGFzaGJvYXJkUglJc1'
|
'KAsyDy5hcGkuQm9vbE9iamVjdEIgkkEdMhtWaXNpYmlsaXR5IG9mIHRoZSBEYXNoYm9hcmRSCU'
|
||||||
'ByaXZhdGUSMgoLQXV0b1JlZnJlc2gYCSABKAsyEC5hcGkuSW50MzJPYmplY3RSC0F1dG9SZWZy'
|
'lzUHJpdmF0ZRIyCgtBdXRvUmVmcmVzaBgJIAEoCzIQLmFwaS5JbnQzMk9iamVjdFILQXV0b1Jl'
|
||||||
'ZXNoOkKSQT8KPTIkSW5mb3JtYXRpb24gdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZG'
|
'ZnJlc2g6QpJBPwo9MiRJbmZvcm1hdGlvbiB0aGF0IG5lZWRzIHRvIGJlIHVwZGF0ZWTSAQZIZW'
|
||||||
'Vy0gELRGFzaGJvYXJkSUQ=');
|
'FkZXLSAQtEYXNoYm9hcmRJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use updateProjectDashboardResultDescriptor instead')
|
||||||
const UpdateProjectDashboardResult$json = {
|
const UpdateProjectDashboardResult$json = {
|
||||||
@@ -467,10 +443,10 @@ const GetProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChpHZXRQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
'ChpHZXRQcm9qZWN0RGFzaGJvYXJkUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiABKAlC'
|
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEkoKC0Rhc2hib2FyZElEGAIgASgJ'
|
||||||
'J5JBHTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSUQ6Mp'
|
'QiiSQR0yG0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZLqBAQRyAhABUgtEYXNoYm9hcmRJRD'
|
||||||
'JBLwotMhRJRHMgb2YgdGhlIERhc2hib2FyZNIBBkhlYWRlctIBC0Rhc2hib2FyZElE');
|
'oykkEvCi0yFElEcyBvZiB0aGUgRGFzaGJvYXJk0gEGSGVhZGVy0gELRGFzaGJvYXJkSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use getProjectDashboardResultDescriptor instead')
|
||||||
const GetProjectDashboardResult$json = {
|
const GetProjectDashboardResult$json = {
|
||||||
@@ -500,11 +476,11 @@ const CopyProjectDashboardRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CopyProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CopyProjectDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List copyProjectDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List copyProjectDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChtDb3B5UHJvamVjdERhc2hib2FyZFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
'ChtDb3B5UHJvamVjdERhc2hib2FyZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkkKC0Rhc2hib2FyZElEGAIgASgJ'
|
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJKCgtEYXNoYm9hcmRJRBgCIAEo'
|
||||||
'QieSQR0yG0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZPpCBHICEAFSC0Rhc2hib2FyZElEEj'
|
'CUIokkEdMhtJZGVudGlmaWVyIG9mIHRoZSBEYXNoYm9hcmS6gQEEcgIQAVILRGFzaGJvYXJkSU'
|
||||||
'kKBE5hbWUYAyABKAlCJZJBGzIZTmFtZSBvZiB0aGUgbmV3IERhc2hib2FyZPpCBHICEAFSBE5h'
|
'QSOgoETmFtZRgDIAEoCUImkkEbMhlOYW1lIG9mIHRoZSBuZXcgRGFzaGJvYXJkuoEBBHICEAFS'
|
||||||
'bWU6I5JBIAoe0gEGSGVhZGVy0gELRGFzaGJvYXJkSUTSAQROYW1l');
|
'BE5hbWU6I5JBIAoe0gEGSGVhZGVy0gELRGFzaGJvYXJkSUTSAQROYW1l');
|
||||||
|
|
||||||
@$core.Deprecated('Use copyProjectDashboardResultDescriptor instead')
|
@$core.Deprecated('Use copyProjectDashboardResultDescriptor instead')
|
||||||
const CopyProjectDashboardResult$json = {
|
const CopyProjectDashboardResult$json = {
|
||||||
@@ -520,201 +496,38 @@ final $typed_data.Uint8List copyProjectDashboardResultDescriptor = $convert.base
|
|||||||
'ChpDb3B5UHJvamVjdERhc2hib2FyZFJlc3VsdBIpCgZSZXN1bHQYASABKAsyES52aXphcGkuRG'
|
'ChpDb3B5UHJvamVjdERhc2hib2FyZFJlc3VsdBIpCgZSZXN1bHQYASABKAsyES52aXphcGkuRG'
|
||||||
'FzaGJvYXJkUgZSZXN1bHQ6G5JBGAoWMhROZXcgY29waWVkIGRhc2hib2FyZA==');
|
'FzaGJvYXJkUgZSZXN1bHQ6G5JBGAoWMhROZXcgY29waWVkIGRhc2hib2FyZA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteDashboardRequestDescriptor instead')
|
@$core.Deprecated('Use setOwnerDashboardRequestDescriptor instead')
|
||||||
const ListSiteDashboardRequest$json = {
|
const SetOwnerDashboardRequest$json = {
|
||||||
'1': 'ListSiteDashboardRequest',
|
'1': 'SetOwnerDashboardRequest',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||||
|
{'1': 'DashboardID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DashboardID'},
|
||||||
|
{'1': 'UserID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'UserID'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `ListSiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `SetOwnerDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listSiteDashboardRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List setOwnerDashboardRequestDescriptor = $convert.base64Decode(
|
||||||
'ChhMaXN0U2l0ZURhc2hib2FyZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
|
'ChhTZXRPd25lckRhc2hib2FyZFJlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||||
'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOg6SQQsKCdIBBkhlYWRlcg==');
|
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJKCgtEYXNoYm9hcmRJRBgCIAEoCUIo'
|
||||||
|
'kkEdMhtJZGVudGlmaWVyIG9mIHRoZSBEYXNoYm9hcmS6gQEEcgIQAVILRGFzaGJvYXJkSUQSUQ'
|
||||||
|
'oGVXNlcklEGAMgASgJQjmSQS4yLElkZW50aWZpZXIgb2YgdGhlIG5ldyBvd25lciBvZiB0aGUg'
|
||||||
|
'RGFzaGJvYXJkuoEBBHICEAFSBlVzZXJJRDpTkkFQCk4yK0luZm9ybWF0aW9uIHRvIHNldCB0aG'
|
||||||
|
'Ugb3duZXIgb2YgYSBkYXNoYm9hcmTSAQZIZWFkZXLSAQtEYXNoYm9hcmRJRNIBB093bmVySUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteDashboardResultDescriptor instead')
|
@$core.Deprecated('Use setOwnerDashboardResultDescriptor instead')
|
||||||
const ListSiteDashboardResult$json = {
|
const SetOwnerDashboardResult$json = {
|
||||||
'1': 'ListSiteDashboardResult',
|
'1': 'SetOwnerDashboardResult',
|
||||||
'2': [
|
|
||||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.vizapi.Dashboard', '8': {}, '10': 'Results'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListSiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listSiteDashboardResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChdMaXN0U2l0ZURhc2hib2FyZFJlc3VsdBJQCgdSZXN1bHRzGAEgAygLMhEudml6YXBpLkRhc2'
|
|
||||||
'hib2FyZEIjkkEgMh5BbGwgaW5mb3JtYXRpb24gaW4gYSBEYXNoYm9hcmRSB1Jlc3VsdHM6GZJB'
|
|
||||||
'FgoUMhJMaXN0IG9mIERhc2hib2FyZHM=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteDashboardRequestDescriptor instead')
|
|
||||||
const CreateSiteDashboardRequest$json = {
|
|
||||||
'1': 'CreateSiteDashboardRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'content', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'content'},
|
|
||||||
{'1': 'IsPrivate', '3': 4, '4': 1, '5': 8, '8': {}, '10': 'IsPrivate'},
|
|
||||||
{'1': 'AutoRefresh', '3': 8, '4': 1, '5': 5, '10': 'AutoRefresh'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createSiteDashboardRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChpDcmVhdGVTaXRlRGFzaGJvYXJkUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdW'
|
|
||||||
'VzdFNpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISNQoETmFtZRgCIAEoCUIhkkEXMhVOYW1l'
|
|
||||||
'IG9mIHRoZSBEYXNoYm9hcmT6QgRyAhABUgROYW1lEjcKB2NvbnRlbnQYAyABKAlCHZJBGjIYQW'
|
|
||||||
'xsIHdpZGdldHMgaW4gRGFzaGJvYXJkUgdjb250ZW50Ej4KCUlzUHJpdmF0ZRgEIAEoCEIgkkEd'
|
|
||||||
'MhtWaXNpYmlsaXR5IG9mIHRoZSBEYXNoYm9hcmRSCUlzUHJpdmF0ZRIgCgtBdXRvUmVmcmVzaB'
|
|
||||||
'gIIAEoBVILQXV0b1JlZnJlc2g6OpJBNwo1MiNJbmZvcm1hdGlvbiB0aGF0IG5lZWRzIHRvIGJl'
|
|
||||||
'IHN0b3JlZNIBBkhlYWRlctIBBE5hbWU=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteDashboardResultDescriptor instead')
|
|
||||||
const CreateSiteDashboardResult$json = {
|
|
||||||
'1': 'CreateSiteDashboardResult',
|
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.Dashboard', '10': 'Result'},
|
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.Dashboard', '10': 'Result'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `SetOwnerDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createSiteDashboardResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List setOwnerDashboardResultDescriptor = $convert.base64Decode(
|
||||||
'ChlDcmVhdGVTaXRlRGFzaGJvYXJkUmVzdWx0EikKBlJlc3VsdBgBIAEoCzIRLnZpemFwaS5EYX'
|
'ChdTZXRPd25lckRhc2hib2FyZFJlc3VsdBIpCgZSZXN1bHQYASABKAsyES52aXphcGkuRGFzaG'
|
||||||
'NoYm9hcmRSBlJlc3VsdDoYkkEVChMyEUNyZWF0ZWQgRGFzaGJvYXJk');
|
'JvYXJkUgZSZXN1bHQ6MZJBLgosMipSZXN1bHQgb2Ygc2V0dGluZyB0aGUgb3duZXIgb2YgYSBk'
|
||||||
|
'YXNoYm9hcmQ=');
|
||||||
@$core.Deprecated('Use deleteSiteDashboardRequestDescriptor instead')
|
|
||||||
const DeleteSiteDashboardRequest$json = {
|
|
||||||
'1': 'DeleteSiteDashboardRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'DashboardID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DashboardID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteDashboardRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChpEZWxldGVTaXRlRGFzaGJvYXJkUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdW'
|
|
||||||
'VzdFNpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiABKAlCJ5JB'
|
|
||||||
'HTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSUQ6QJJBPQ'
|
|
||||||
'o7MiJJRHMgb2YgdGhlIERhc2hib2FyZCB0byBiZSBkZWxldGVk0gEGSGVhZGVy0gELRGFzaGJv'
|
|
||||||
'YXJkSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSiteDashboardResultDescriptor instead')
|
|
||||||
const DeleteSiteDashboardResult$json = {
|
|
||||||
'1': 'DeleteSiteDashboardResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteDashboardResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChlEZWxldGVTaXRlRGFzaGJvYXJkUmVzdWx0');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteDashboardRequestDescriptor instead')
|
|
||||||
const UpdateSiteDashboardRequest$json = {
|
|
||||||
'1': 'UpdateSiteDashboardRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'DashboardID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DashboardID'},
|
|
||||||
{'1': 'Name', '3': 3, '4': 1, '5': 11, '6': '.api.StringObject', '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'Content', '3': 4, '4': 1, '5': 11, '6': '.api.StringObject', '8': {}, '10': 'Content'},
|
|
||||||
{'1': 'IsPrivate', '3': 5, '4': 1, '5': 11, '6': '.api.BoolObject', '8': {}, '10': 'IsPrivate'},
|
|
||||||
{'1': 'AutoRefresh', '3': 9, '4': 1, '5': 11, '6': '.api.Int32Object', '10': 'AutoRefresh'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteDashboardRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChpVcGRhdGVTaXRlRGFzaGJvYXJkUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdW'
|
|
||||||
'VzdFNpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiABKAlCJ5JB'
|
|
||||||
'HTIbSWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSUQSQQoETm'
|
|
||||||
'FtZRgDIAEoCzIRLmFwaS5TdHJpbmdPYmplY3RCGpJBFzIVTmFtZSBvZiB0aGUgRGFzaGJvYXJk'
|
|
||||||
'UgROYW1lEk4KB0NvbnRlbnQYBCABKAsyES5hcGkuU3RyaW5nT2JqZWN0QiGSQR4yHEFsbCB0aG'
|
|
||||||
'Ugd2lkZ2V0cyBpbiBEYXNoYm9hcmRSB0NvbnRlbnQSTwoJSXNQcml2YXRlGAUgASgLMg8uYXBp'
|
|
||||||
'LkJvb2xPYmplY3RCIJJBHTIbVmlzaWJpbGl0eSBvZiB0aGUgRGFzaGJvYXJkUglJc1ByaXZhdG'
|
|
||||||
'USMgoLQXV0b1JlZnJlc2gYCSABKAsyEC5hcGkuSW50MzJPYmplY3RSC0F1dG9SZWZyZXNoOkKS'
|
|
||||||
'QT8KPTIkSW5mb3JtYXRpb24gdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gELRG'
|
|
||||||
'FzaGJvYXJkSUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteDashboardResultDescriptor instead')
|
|
||||||
const UpdateSiteDashboardResult$json = {
|
|
||||||
'1': 'UpdateSiteDashboardResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.Dashboard', '10': 'Result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteDashboardResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChlVcGRhdGVTaXRlRGFzaGJvYXJkUmVzdWx0EikKBlJlc3VsdBgBIAEoCzIRLnZpemFwaS5EYX'
|
|
||||||
'NoYm9hcmRSBlJlc3VsdDokkkEhCh8yHVVwZGF0ZWQgRGFzaGJvYXJkIGluZm9ybWF0aW9u');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteDashboardRequestDescriptor instead')
|
|
||||||
const GetSiteDashboardRequest$json = {
|
|
||||||
'1': 'GetSiteDashboardRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'DashboardID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DashboardID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteDashboardRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChdHZXRTaXRlRGFzaGJvYXJkUmVxdWVzdBI4CgZIZWFkZXIYASABKAsyFi5hcGkuUmVxdWVzdF'
|
|
||||||
'NpdGVIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISSQoLRGFzaGJvYXJkSUQYAiABKAlCJ5JBHTIb'
|
|
||||||
'SWRlbnRpZmllciBvZiB0aGUgRGFzaGJvYXJk+kIEcgIQAVILRGFzaGJvYXJkSUQ6MpJBLwotMh'
|
|
||||||
'RJRHMgb2YgdGhlIERhc2hib2FyZNIBBkhlYWRlctIBC0Rhc2hib2FyZElE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteDashboardResultDescriptor instead')
|
|
||||||
const GetSiteDashboardResult$json = {
|
|
||||||
'1': 'GetSiteDashboardResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.Dashboard', '10': 'result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteDashboardResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChZHZXRTaXRlRGFzaGJvYXJkUmVzdWx0EikKBnJlc3VsdBgBIAEoCzIRLnZpemFwaS5EYXNoYm'
|
|
||||||
'9hcmRSBnJlc3VsdDoqkkEnCiUyI0FsbCBpbmZvcm1hdGlvbiBhYm91dCB0aGUgRGFzaGJvYXJk');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use copySiteDashboardRequestDescriptor instead')
|
|
||||||
const CopySiteDashboardRequest$json = {
|
|
||||||
'1': 'CopySiteDashboardRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'DashboardID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'DashboardID'},
|
|
||||||
{'1': 'Name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CopySiteDashboardRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List copySiteDashboardRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChhDb3B5U2l0ZURhc2hib2FyZFJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3'
|
|
||||||
'RTaXRlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkkKC0Rhc2hib2FyZElEGAIgASgJQieSQR0y'
|
|
||||||
'G0lkZW50aWZpZXIgb2YgdGhlIERhc2hib2FyZPpCBHICEAFSC0Rhc2hib2FyZElEEjkKBE5hbW'
|
|
||||||
'UYAyABKAlCJZJBGzIZTmFtZSBvZiB0aGUgbmV3IERhc2hib2FyZPpCBHICEAFSBE5hbWU6I5JB'
|
|
||||||
'IAoe0gEGSGVhZGVy0gELRGFzaGJvYXJkSUTSAQROYW1l');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use copySiteDashboardResultDescriptor instead')
|
|
||||||
const CopySiteDashboardResult$json = {
|
|
||||||
'1': 'CopySiteDashboardResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.Dashboard', '10': 'Result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CopySiteDashboardResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List copySiteDashboardResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChdDb3B5U2l0ZURhc2hib2FyZFJlc3VsdBIpCgZSZXN1bHQYASABKAsyES52aXphcGkuRGFzaG'
|
|
||||||
'JvYXJkUgZSZXN1bHQ6G5JBGAoWMhROZXcgY29waWVkIGRhc2hib2FyZA==');
|
|
||||||
|
|
||||||
|
|||||||
@@ -27,11 +27,11 @@ const UpdatePlatformDefaultViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdatePlatformDefaultViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdatePlatformDefaultViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updatePlatformDefaultViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updatePlatformDefaultViewRequestDescriptor = $convert.base64Decode(
|
||||||
'CiBVcGRhdGVQbGF0Zm9ybURlZmF1bHRWaWV3UmVxdWVzdBI6CgZWaWV3SUQYASABKAlCIpJBGD'
|
'CiBVcGRhdGVQbGF0Zm9ybURlZmF1bHRWaWV3UmVxdWVzdBI7CgZWaWV3SUQYASABKAlCI5JBGD'
|
||||||
'IWSWRlbnRpZmllciBvZiB0aGUgVmlld/pCBHICEAFSBlZpZXdJRBI5CgdQYXlsb2FkGAQgASgJ'
|
'IWSWRlbnRpZmllciBvZiB0aGUgVmlld7qBAQRyAhABUgZWaWV3SUQSOgoHUGF5bG9hZBgEIAEo'
|
||||||
'Qh+SQRUyE0NvbnRlbnQgb2YgdGhlIFZpZXf6QgRyAhABUgdQYXlsb2FkEjkKCUlzUHJpdmF0ZR'
|
'CUIgkkEVMhNDb250ZW50IG9mIHRoZSBWaWV3uoEBBHICEAFSB1BheWxvYWQSOQoJSXNQcml2YX'
|
||||||
'gFIAEoCEIbkkEYMhZWaXNpYmlsaXR5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGU6GJJBFQoT0gEG'
|
'RlGAUgASgIQhuSQRgyFlZpc2liaWxpdHkgb2YgdGhlIFZpZXdSCUlzUHJpdmF0ZToYkkEVChPS'
|
||||||
'Vmlld0lE0gEHUGF5bG9hZA==');
|
'AQZWaWV3SUTSAQdQYXlsb2Fk');
|
||||||
|
|
||||||
@$core.Deprecated('Use createPlatformDefaultViewRequestDescriptor instead')
|
@$core.Deprecated('Use createPlatformDefaultViewRequestDescriptor instead')
|
||||||
const CreatePlatformDefaultViewRequest$json = {
|
const CreatePlatformDefaultViewRequest$json = {
|
||||||
@@ -46,11 +46,11 @@ const CreatePlatformDefaultViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreatePlatformDefaultViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreatePlatformDefaultViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createPlatformDefaultViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createPlatformDefaultViewRequestDescriptor = $convert.base64Decode(
|
||||||
'CiBDcmVhdGVQbGF0Zm9ybURlZmF1bHRWaWV3UmVxdWVzdBJACghTY3JlZW5JRBgBIAEoCUIkkk'
|
'CiBDcmVhdGVQbGF0Zm9ybURlZmF1bHRWaWV3UmVxdWVzdBJBCghTY3JlZW5JRBgBIAEoCUIlkk'
|
||||||
'EaMhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW76QgRyAhABUghTY3JlZW5JRBI5CgdQYXlsb2Fk'
|
'EaMhhJZGVudGlmaWVyIG9mIHRoZSBTY3JlZW66gQEEcgIQAVIIU2NyZWVuSUQSOgoHUGF5bG9h'
|
||||||
'GAQgASgJQh+SQRUyE0NvbnRlbnQgb2YgdGhlIFZpZXf6QgRyAhABUgdQYXlsb2FkEjkKCUlzUH'
|
'ZBgEIAEoCUIgkkEVMhNDb250ZW50IG9mIHRoZSBWaWV3uoEBBHICEAFSB1BheWxvYWQSOQoJSX'
|
||||||
'JpdmF0ZRgFIAEoCEIbkkEYMhZWaXNpYmlsaXR5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGU6GpJB'
|
'NQcml2YXRlGAUgASgIQhuSQRgyFlZpc2liaWxpdHkgb2YgdGhlIFZpZXdSCUlzUHJpdmF0ZToa'
|
||||||
'FwoV0gEIU2NyZWVuSUTSAQdQYXlsb2Fk');
|
'kkEXChXSAQhTY3JlZW5JRNIBB1BheWxvYWQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use createPlatformDefaultViewResultDescriptor instead')
|
@$core.Deprecated('Use createPlatformDefaultViewResultDescriptor instead')
|
||||||
const CreatePlatformDefaultViewResult$json = {
|
const CreatePlatformDefaultViewResult$json = {
|
||||||
|
|||||||
@@ -75,16 +75,16 @@ const CreateMotdRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createMotdRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createMotdRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFDcmVhdGVNb3RkUmVxdWVzdBLWAQoJU3RhcnREYXRlGAEgASgJQrcBkkGrATKQAVVUQyBkYX'
|
'ChFDcmVhdGVNb3RkUmVxdWVzdBLXAQoJU3RhcnREYXRlGAEgASgJQrgBkkGrATKQAVVUQyBkYX'
|
||||||
'RlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2'
|
'RlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2'
|
||||||
'MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdGVkIHR6ZCBmb3'
|
'MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdGVkIHR6ZCBmb3'
|
||||||
'JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFUMDA6MDA6MDBaIvpCBXID'
|
'JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFUMDA6MDA6MDBaIrqBAQVy'
|
||||||
'0AEBUglTdGFydERhdGUS0gEKB0VuZERhdGUYAiABKAlCtwGSQasBMpABVVRDIGRhdGUvdGltZS'
|
'A9ABAVIJU3RhcnREYXRlEtMBCgdFbmREYXRlGAIgASgJQrgBkkGrATKQAVVUQyBkYXRlL3RpbW'
|
||||||
'BpbiA8YSBocmVmPSJodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSI+SVNP'
|
'UgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzg2MDEiPklT'
|
||||||
'IDg2MDE8L2E+IGZvcm1hdCB3aXRoIHRpbWUgem9uZSAoYWNjZXB0ZWQgdHpkIGZvcm1hdHM6IF'
|
'TyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdGVkIHR6ZCBmb3JtYXRzOi'
|
||||||
'srMDE6MDAsIC0wMTowMCwgWl0pShYiMjAyMy0wMS0wMVQwMDowMDowMFoi+kIFcgPQAQFSB0Vu'
|
'BbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFUMDA6MDA6MDBaIrqBAQVyA9ABAVIH'
|
||||||
'ZERhdGUSLQoHTWVzc2FnZRgDIAMoCzITLnZpemFwaS5Nb3RkTWVzc2FnZVIHTWVzc2FnZTo1kk'
|
'RW5kRGF0ZRItCgdNZXNzYWdlGAMgAygLMhMudml6YXBpLk1vdGRNZXNzYWdlUgdNZXNzYWdlOj'
|
||||||
'EyCjAyLk1lc3NhZ2UgcmVxdWVzdCB3aXRoIHRoZSBjb250ZW50IGFuZCB0aGUgZGF0ZXM=');
|
'WSQTIKMDIuTWVzc2FnZSByZXF1ZXN0IHdpdGggdGhlIGNvbnRlbnQgYW5kIHRoZSBkYXRlcw==');
|
||||||
|
|
||||||
@$core.Deprecated('Use createMotdResultDescriptor instead')
|
@$core.Deprecated('Use createMotdResultDescriptor instead')
|
||||||
const CreateMotdResult$json = {
|
const CreateMotdResult$json = {
|
||||||
@@ -100,17 +100,17 @@ const CreateMotdResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateMotdResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateMotdResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createMotdResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createMotdResultDescriptor = $convert.base64Decode(
|
||||||
'ChBDcmVhdGVNb3RkUmVzdWx0Eg4KAklEGAEgASgJUgJJRBLWAQoJU3RhcnREYXRlGAIgASgJQr'
|
'ChBDcmVhdGVNb3RkUmVzdWx0Eg4KAklEGAEgASgJUgJJRBLXAQoJU3RhcnREYXRlGAIgASgJQr'
|
||||||
'cBkkGrATKQAVVUQyBkYXRlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEu'
|
'gBkkGrATKQAVVUQyBkYXRlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEu'
|
||||||
'b3JnL3dpa2kvSVNPXzg2MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKG'
|
'b3JnL3dpa2kvSVNPXzg2MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKG'
|
||||||
'FjY2VwdGVkIHR6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFU'
|
'FjY2VwdGVkIHR6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFU'
|
||||||
'MDA6MDA6MDBaIvpCBXID0AEBUglTdGFydERhdGUS0gEKB0VuZERhdGUYAyABKAlCtwGSQasBMp'
|
'MDA6MDA6MDBaIrqBAQVyA9ABAVIJU3RhcnREYXRlEtMBCgdFbmREYXRlGAMgASgJQrgBkkGrAT'
|
||||||
'ABVVRDIGRhdGUvdGltZSBpbiA8YSBocmVmPSJodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lr'
|
'KQAVVUQyBkYXRlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dp'
|
||||||
'aS9JU09fODYwMSI+SVNPIDg2MDE8L2E+IGZvcm1hdCB3aXRoIHRpbWUgem9uZSAoYWNjZXB0ZW'
|
'a2kvSVNPXzg2MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdG'
|
||||||
'QgdHpkIGZvcm1hdHM6IFsrMDE6MDAsIC0wMTowMCwgWl0pShYiMjAyMy0wMS0wMVQwMDowMDow'
|
'VkIHR6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFUMDA6MDA6'
|
||||||
'MVoi+kIFcgPQAQFSB0VuZERhdGUSMAoHTWVzc2FnZRgEIAMoCzIWLnZpemFwaS5Nb3RkTWVzc2'
|
'MDFaIrqBAQVyA9ABAVIHRW5kRGF0ZRIwCgdNZXNzYWdlGAQgAygLMhYudml6YXBpLk1vdGRNZX'
|
||||||
'FnZVJlc1IHTWVzc2FnZTowkkEtCisyKU1lc3NhZ2UgcmVzdWx0IHdpdGggSUQsIGNvbnRlbnQg'
|
'NzYWdlUmVzUgdNZXNzYWdlOjCSQS0KKzIpTWVzc2FnZSByZXN1bHQgd2l0aCBJRCwgY29udGVu'
|
||||||
'YW5kIGRhdGVz');
|
'dCBhbmQgZGF0ZXM=');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateMotdRequestDescriptor instead')
|
@$core.Deprecated('Use updateMotdRequestDescriptor instead')
|
||||||
const UpdateMotdRequest$json = {
|
const UpdateMotdRequest$json = {
|
||||||
@@ -126,17 +126,17 @@ const UpdateMotdRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateMotdRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateMotdRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFVcGRhdGVNb3RkUmVxdWVzdBIOCgJJRBgBIAEoCVICSUQS1gEKCVN0YXJ0RGF0ZRgCIAEoCU'
|
'ChFVcGRhdGVNb3RkUmVxdWVzdBIOCgJJRBgBIAEoCVICSUQS1wEKCVN0YXJ0RGF0ZRgCIAEoCU'
|
||||||
'K3AZJBqwEykAFVVEMgZGF0ZS90aW1lIGluIDxhIGhyZWY9Imh0dHBzOi8vZW4ud2lraXBlZGlh'
|
'K4AZJBqwEykAFVVEMgZGF0ZS90aW1lIGluIDxhIGhyZWY9Imh0dHBzOi8vZW4ud2lraXBlZGlh'
|
||||||
'Lm9yZy93aWtpL0lTT184NjAxIj5JU08gODYwMTwvYT4gZm9ybWF0IHdpdGggdGltZSB6b25lIC'
|
'Lm9yZy93aWtpL0lTT184NjAxIj5JU08gODYwMTwvYT4gZm9ybWF0IHdpdGggdGltZSB6b25lIC'
|
||||||
'hhY2NlcHRlZCB0emQgZm9ybWF0czogWyswMTowMCwgLTAxOjAwLCBaXSlKFiIyMDIzLTAxLTAx'
|
'hhY2NlcHRlZCB0emQgZm9ybWF0czogWyswMTowMCwgLTAxOjAwLCBaXSlKFiIyMDIzLTAxLTAx'
|
||||||
'VDAwOjAwOjAwWiL6QgVyA9ABAVIJU3RhcnREYXRlEtIBCgdFbmREYXRlGAMgASgJQrcBkkGrAT'
|
'VDAwOjAwOjAwWiK6gQEFcgPQAQFSCVN0YXJ0RGF0ZRLTAQoHRW5kRGF0ZRgDIAEoCUK4AZJBqw'
|
||||||
'KQAVVUQyBkYXRlL3RpbWUgaW4gPGEgaHJlZj0iaHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dp'
|
'EykAFVVEMgZGF0ZS90aW1lIGluIDxhIGhyZWY9Imh0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93'
|
||||||
'a2kvSVNPXzg2MDEiPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdG'
|
'aWtpL0lTT184NjAxIj5JU08gODYwMTwvYT4gZm9ybWF0IHdpdGggdGltZSB6b25lIChhY2NlcH'
|
||||||
'VkIHR6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdKUoWIjIwMjMtMDEtMDFUMDA6MDA6'
|
'RlZCB0emQgZm9ybWF0czogWyswMTowMCwgLTAxOjAwLCBaXSlKFiIyMDIzLTAxLTAxVDAwOjAw'
|
||||||
'MDFaIvpCBXID0AEBUgdFbmREYXRlEi0KB01lc3NhZ2UYBCADKAsyEy52aXphcGkuTW90ZE1lc3'
|
'OjAxWiK6gQEFcgPQAQFSB0VuZERhdGUSLQoHTWVzc2FnZRgEIAMoCzITLnZpemFwaS5Nb3RkTW'
|
||||||
'NhZ2VSB01lc3NhZ2U6OpJBNwo1MjNVcGRhdGUgYW4gZXhpc3RpbmcgTWVzc2FnZSBPZiBUaGUg'
|
'Vzc2FnZVIHTWVzc2FnZTo6kkE3CjUyM1VwZGF0ZSBhbiBleGlzdGluZyBNZXNzYWdlIE9mIFRo'
|
||||||
'RGF5IHVzaW5nIGl0cyBrZXk=');
|
'ZSBEYXkgdXNpbmcgaXRzIGtleQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateMotdResultDescriptor instead')
|
@$core.Deprecated('Use updateMotdResultDescriptor instead')
|
||||||
const UpdateMotdResult$json = {
|
const UpdateMotdResult$json = {
|
||||||
@@ -206,8 +206,8 @@ const DeleteMotdRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteMotdRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteMotdRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteMotdRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFEZWxldGVNb3RkUmVxdWVzdBIXCgJJRBgBIAEoCUIH+kIEcgIQAVICSUQ6CpJBBwoF0gECSU'
|
'ChFEZWxldGVNb3RkUmVxdWVzdBIYCgJJRBgBIAEoCUIIuoEBBHICEAFSAklEOgqSQQcKBdIBAk'
|
||||||
'Q=');
|
'lE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteMotdResultDescriptor instead')
|
@$core.Deprecated('Use deleteMotdResultDescriptor instead')
|
||||||
const DeleteMotdResult$json = {
|
const DeleteMotdResult$json = {
|
||||||
|
|||||||
@@ -61,17 +61,17 @@ const PutOrganisationSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `PutOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `PutOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List putOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List putOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch1QdXRPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJACgZIZWFkZXIYASABKAsyHi5hcGkuUm'
|
'Ch1QdXRPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJBCgZIZWFkZXIYASABKAsyHi5hcGkuUm'
|
||||||
'VxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchJMCgNLZXkYAiABKAlC'
|
'VxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISTQoDS2V5GAIgASgJ'
|
||||||
'OpJBMDIcS2V5OiBlYWNoIGtleSBtdXN0IGJlIHVuaXF1ZUoQInByZWZlcnJlZFRoZW1lIvpCBH'
|
'QjuSQTAyHEtleTogZWFjaCBrZXkgbXVzdCBiZSB1bmlxdWVKECJwcmVmZXJyZWRUaGVtZSK6gQ'
|
||||||
'ICEAFSA0tleRIoCgVWYWx1ZRgDIAEoCUISkkEISgYiZGFyayL6QgRyAhABUgVWYWx1ZRKMAgoK'
|
'EEcgIQAVIDS2V5EikKBVZhbHVlGAMgASgJQhOSQQhKBiJkYXJrIrqBAQRyAhABUgVWYWx1ZRKN'
|
||||||
'VmlzaWJpbGl0eRgEIAEoDjIZLnZpemFwaS5TZXR0aW5nVmlzaWJpbGl0eULQAZJBxAEypAFWaX'
|
'AgoKVmlzaWJpbGl0eRgEIAEoDjIZLnZpemFwaS5TZXR0aW5nVmlzaWJpbGl0eULRAZJBxAEypA'
|
||||||
'NpYmlsaXR5OiBwdWJsaWMgb3IgcHJpdmF0ZS4gSWYgcHJpdmF0ZSwgb25seSB0aGUgb3JnYW5p'
|
'FWaXNpYmlsaXR5OiBwdWJsaWMgb3IgcHJpdmF0ZS4gSWYgcHJpdmF0ZSwgb25seSB0aGUgb3Jn'
|
||||||
'c2F0aW9uIGNhbiBzZWUgdGhlIHNldHRpbmcuIElmIHB1YmxpYywgYWxsIG9mIHRoZSBvcmdhbm'
|
'YW5pc2F0aW9uIGNhbiBzZWUgdGhlIHNldHRpbmcuIElmIHB1YmxpYywgYWxsIG9mIHRoZSBvcm'
|
||||||
'lzYXRpb24gYW5kIGl0cyBwcm9qZWN0cyB1c2VycyBjYW4gc2VlIHRoZSBzZXR0aW5nLkobIlNF'
|
'dhbmlzYXRpb24gYW5kIGl0cyBwcm9qZWN0cyB1c2VycyBjYW4gc2VlIHRoZSBzZXR0aW5nLkob'
|
||||||
'VFRJTkdfVklTSUJJTElUWV9QVUJMSUMi+kIFggECEAFSClZpc2liaWxpdHk6Q5JBQAo+MhhLZX'
|
'IlNFVFRJTkdfVklTSUJJTElUWV9QVUJMSUMiuoEBBYIBAhABUgpWaXNpYmlsaXR5OkOSQUAKPj'
|
||||||
'ksIFZhbHVlIHBhaXIgdG8gc3RvcmXSAQNLZXnSAQVWYWx1ZdIBClZpc2liaWxpdHnSAQZIZWFk'
|
'IYS2V5LCBWYWx1ZSBwYWlyIHRvIHN0b3Jl0gEDS2V50gEFVmFsdWXSAQpWaXNpYmlsaXR50gEG'
|
||||||
'ZXI=');
|
'SGVhZGVy');
|
||||||
|
|
||||||
@$core.Deprecated('Use putOrganisationSettingResultDescriptor instead')
|
@$core.Deprecated('Use putOrganisationSettingResultDescriptor instead')
|
||||||
const PutOrganisationSettingResult$json = {
|
const PutOrganisationSettingResult$json = {
|
||||||
@@ -107,10 +107,10 @@ const GetOrganisationSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch1HZXRPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJACgZIZWFkZXIYASABKAsyHi5hcGkuUm'
|
'Ch1HZXRPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJBCgZIZWFkZXIYASABKAsyHi5hcGkuUm'
|
||||||
'VxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIuCgNLZXkYAiABKAlC'
|
'VxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISLwoDS2V5GAIgASgJ'
|
||||||
'HJJBEkoQInByZWZlcnJlZFRoZW1lIvpCBHICEAFSA0tleTo+kkE7CjkyKEtleSBvZiB0aGUgb3'
|
'Qh2SQRJKECJwcmVmZXJyZWRUaGVtZSK6gQEEcgIQAVIDS2V5Oj6SQTsKOTIoS2V5IG9mIHRoZS'
|
||||||
'JnYW5pc2F0aW9uJ3Mgc2V0dGluZyB0byBnZXTSAQZIZWFkZXLSAQNLZXk=');
|
'BvcmdhbmlzYXRpb24ncyBzZXR0aW5nIHRvIGdldNIBBkhlYWRlctIBA0tleQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getOrganisationSettingResultDescriptor instead')
|
@$core.Deprecated('Use getOrganisationSettingResultDescriptor instead')
|
||||||
const GetOrganisationSettingResult$json = {
|
const GetOrganisationSettingResult$json = {
|
||||||
@@ -125,14 +125,14 @@ const GetOrganisationSettingResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetOrganisationSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetOrganisationSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getOrganisationSettingResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getOrganisationSettingResultDescriptor = $convert.base64Decode(
|
||||||
'ChxHZXRPcmdhbmlzYXRpb25TZXR0aW5nUmVzdWx0Ei4KA0tleRgBIAEoCUIckkESShAicHJlZm'
|
'ChxHZXRPcmdhbmlzYXRpb25TZXR0aW5nUmVzdWx0Ei8KA0tleRgBIAEoCUIdkkESShAicHJlZm'
|
||||||
'VycmVkVGhlbWUi+kIEcgIQAVIDS2V5EigKBVZhbHVlGAIgASgJQhKSQQhKBiJkYXJrIvpCBHIC'
|
'VycmVkVGhlbWUiuoEBBHICEAFSA0tleRIpCgVWYWx1ZRgCIAEoCUITkkEISgYiZGFyayK6gQEE'
|
||||||
'EAFSBVZhbHVlEoQCCgpWaXNpYmlsaXR5GAMgASgOMhkudml6YXBpLlNldHRpbmdWaXNpYmlsaX'
|
'cgIQAVIFVmFsdWUShAIKClZpc2liaWxpdHkYAyABKA4yGS52aXphcGkuU2V0dGluZ1Zpc2liaW'
|
||||||
'R5QsgBkkHEATKkAVZpc2liaWxpdHk6IHB1YmxpYyBvciBwcml2YXRlLiBJZiBwcml2YXRlLCBv'
|
'xpdHlCyAGSQcQBMqQBVmlzaWJpbGl0eTogcHVibGljIG9yIHByaXZhdGUuIElmIHByaXZhdGUs'
|
||||||
'bmx5IHRoZSBvcmdhbmlzYXRpb24gY2FuIHNlZSB0aGUgc2V0dGluZy4gSWYgcHVibGljLCBhbG'
|
'IG9ubHkgdGhlIG9yZ2FuaXNhdGlvbiBjYW4gc2VlIHRoZSBzZXR0aW5nLiBJZiBwdWJsaWMsIG'
|
||||||
'wgb2YgdGhlIG9yZ2FuaXNhdGlvbiBhbmQgaXRzIHByb2plY3RzIHVzZXJzIGNhbiBzZWUgdGhl'
|
'FsbCBvZiB0aGUgb3JnYW5pc2F0aW9uIGFuZCBpdHMgcHJvamVjdHMgdXNlcnMgY2FuIHNlZSB0'
|
||||||
'IHNldHRpbmcuShsiU0VUVElOR19WSVNJQklMSVRZX1BVQkxJQyJSClZpc2liaWxpdHk6H5JBHA'
|
'aGUgc2V0dGluZy5KGyJTRVRUSU5HX1ZJU0lCSUxJVFlfUFVCTElDIlIKVmlzaWJpbGl0eTofkk'
|
||||||
'oaMhhLZXksIFZhbHVlIHBhaXIgcmVzcG9uc2U=');
|
'EcChoyGEtleSwgVmFsdWUgcGFpciByZXNwb25zZQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteOrganisationSettingRequestDescriptor instead')
|
@$core.Deprecated('Use deleteOrganisationSettingRequestDescriptor instead')
|
||||||
const DeleteOrganisationSettingRequest$json = {
|
const DeleteOrganisationSettingRequest$json = {
|
||||||
@@ -146,10 +146,10 @@ const DeleteOrganisationSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteOrganisationSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteOrganisationSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'CiBEZWxldGVPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJACgZIZWFkZXIYASABKAsyHi5hcG'
|
'CiBEZWxldGVPcmdhbmlzYXRpb25TZXR0aW5nUmVxdWVzdBJBCgZIZWFkZXIYASABKAsyHi5hcG'
|
||||||
'kuUmVxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIuCgNLZXkYAiAB'
|
'kuUmVxdWVzdE9yZ2FuaXNhdGlvbkhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISLwoDS2V5GAIg'
|
||||||
'KAlCHJJBEkoQInByZWZlcnJlZFRoZW1lIvpCBHICEAFSA0tleTpBkkE+CjwyK0tleSBvZiB0aG'
|
'ASgJQh2SQRJKECJwcmVmZXJyZWRUaGVtZSK6gQEEcgIQAVIDS2V5OkGSQT4KPDIrS2V5IG9mIH'
|
||||||
'Ugb3JnYW5pc2F0aW9uJ3Mgc2V0dGluZyB0byBkZWxldGXSAQZIZWFkZXLSAQNLZXk=');
|
'RoZSBvcmdhbmlzYXRpb24ncyBzZXR0aW5nIHRvIGRlbGV0ZdIBBkhlYWRlctIBA0tleQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteOrganisationSettingResultDescriptor instead')
|
@$core.Deprecated('Use deleteOrganisationSettingResultDescriptor instead')
|
||||||
const DeleteOrganisationSettingResult$json = {
|
const DeleteOrganisationSettingResult$json = {
|
||||||
@@ -171,9 +171,9 @@ const ListOrganisationSettingsRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListOrganisationSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListOrganisationSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listOrganisationSettingsRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listOrganisationSettingsRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch9MaXN0T3JnYW5pc2F0aW9uU2V0dGluZ3NSZXF1ZXN0EkAKBkhlYWRlchgBIAEoCzIeLmFwaS'
|
'Ch9MaXN0T3JnYW5pc2F0aW9uU2V0dGluZ3NSZXF1ZXN0EkEKBkhlYWRlchgBIAEoCzIeLmFwaS'
|
||||||
'5SZXF1ZXN0T3JnYW5pc2F0aW9uSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOjuSQTgKNjIrS2V5'
|
'5SZXF1ZXN0T3JnYW5pc2F0aW9uSGVhZGVyQgm6gQEFigECEAFSBkhlYWRlcjo7kkE4CjYyK0tl'
|
||||||
'IG9mIHRoZSBvcmdhbmlzYXRpb24ncyBzZXR0aW5nIHRvIGRlbGV0ZdIBBkhlYWRlcg==');
|
'eSBvZiB0aGUgb3JnYW5pc2F0aW9uJ3Mgc2V0dGluZyB0byBkZWxldGXSAQZIZWFkZXI=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listOrganisationSettingsResultDescriptor instead')
|
@$core.Deprecated('Use listOrganisationSettingsResultDescriptor instead')
|
||||||
const ListOrganisationSettingsResult$json = {
|
const ListOrganisationSettingsResult$json = {
|
||||||
@@ -202,9 +202,9 @@ const DeleteSettingsForOrganisationRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteSettingsForOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteSettingsForOrganisationRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteSettingsForOrganisationRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteSettingsForOrganisationRequestDescriptor = $convert.base64Decode(
|
||||||
'CiREZWxldGVTZXR0aW5nc0Zvck9yZ2FuaXNhdGlvblJlcXVlc3QSLwoOT3JnYW5pc2F0aW9uSU'
|
'CiREZWxldGVTZXR0aW5nc0Zvck9yZ2FuaXNhdGlvblJlcXVlc3QSMAoOT3JnYW5pc2F0aW9uSU'
|
||||||
'QYASABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklEOjySQTkKNzIkT3JnYW5pc2F0aW9uIHRv'
|
'QYASABKAlCCLqBAQRyAhABUg5PcmdhbmlzYXRpb25JRDo8kkE5CjcyJE9yZ2FuaXNhdGlvbiB0'
|
||||||
'IGRlbGV0ZSBzZXR0aW5ncyBmcm9t0gEOT3JnYW5pc2F0aW9uSUQ=');
|
'byBkZWxldGUgc2V0dGluZ3MgZnJvbdIBDk9yZ2FuaXNhdGlvbklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSettingsForOrganisationResultDescriptor instead')
|
@$core.Deprecated('Use deleteSettingsForOrganisationResultDescriptor instead')
|
||||||
const DeleteSettingsForOrganisationResult$json = {
|
const DeleteSettingsForOrganisationResult$json = {
|
||||||
|
|||||||
@@ -42,11 +42,11 @@ const PutProjectSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `PutProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `PutProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List putProjectSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List putProjectSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChhQdXRQcm9qZWN0U2V0dGluZ1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
'ChhQdXRQcm9qZWN0U2V0dGluZ1JlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkwKA0tleRgCIAEoCUI6kkEwMhxLZXk6'
|
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchJNCgNLZXkYAiABKAlCO5JBMDIcS2V5'
|
||||||
'IGVhY2gga2V5IG11c3QgYmUgdW5pcXVlShAicHJlZmVycmVkVGhlbWUi+kIEcgIQAVIDS2V5Ei'
|
'OiBlYWNoIGtleSBtdXN0IGJlIHVuaXF1ZUoQInByZWZlcnJlZFRoZW1lIrqBAQRyAhABUgNLZX'
|
||||||
'kKBVZhbHVlGAMgASgJQhOSQQlKByJkYXJrICL6QgRyAhABUgVWYWx1ZTo2kkEzCjEyGEtleSwg'
|
'kSKgoFVmFsdWUYAyABKAlCFJJBCUoHImRhcmsgIrqBAQRyAhABUgVWYWx1ZTo2kkEzCjEyGEtl'
|
||||||
'VmFsdWUgcGFpciB0byBzdG9yZdIBA0tledIBBVZhbHVl0gEGSGVhZGVy');
|
'eSwgVmFsdWUgcGFpciB0byBzdG9yZdIBA0tledIBBVZhbHVl0gEGSGVhZGVy');
|
||||||
|
|
||||||
@$core.Deprecated('Use putProjectSettingResultDescriptor instead')
|
@$core.Deprecated('Use putProjectSettingResultDescriptor instead')
|
||||||
const PutProjectSettingResult$json = {
|
const PutProjectSettingResult$json = {
|
||||||
@@ -60,9 +60,9 @@ const PutProjectSettingResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `PutProjectSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `PutProjectSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List putProjectSettingResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List putProjectSettingResultDescriptor = $convert.base64Decode(
|
||||||
'ChdQdXRQcm9qZWN0U2V0dGluZ1Jlc3VsdBIuCgNLZXkYASABKAlCHJJBEkoQInByZWZlcnJlZF'
|
'ChdQdXRQcm9qZWN0U2V0dGluZ1Jlc3VsdBIvCgNLZXkYASABKAlCHZJBEkoQInByZWZlcnJlZF'
|
||||||
'RoZW1lIvpCBHICEAFSA0tleRIoCgVWYWx1ZRgCIAEoCUISkkEISgYiZGFyayL6QgRyAhABUgVW'
|
'RoZW1lIrqBAQRyAhABUgNLZXkSKQoFVmFsdWUYAiABKAlCE5JBCEoGImRhcmsiuoEBBHICEAFS'
|
||||||
'YWx1ZTofkkEcChoyGEtleSwgVmFsdWUgcGFpciByZXNwb25zZQ==');
|
'BVZhbHVlOh+SQRwKGjIYS2V5LCBWYWx1ZSBwYWlyIHJlc3BvbnNl');
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectSettingRequestDescriptor instead')
|
@$core.Deprecated('Use getProjectSettingRequestDescriptor instead')
|
||||||
const GetProjectSettingRequest$json = {
|
const GetProjectSettingRequest$json = {
|
||||||
@@ -76,10 +76,10 @@ const GetProjectSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getProjectSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getProjectSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChhHZXRQcm9qZWN0U2V0dGluZ1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
'ChhHZXRQcm9qZWN0U2V0dGluZ1JlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEi4KA0tleRgCIAEoCUIckkESShAicHJl'
|
'RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIvCgNLZXkYAiABKAlCHZJBEkoQInBy'
|
||||||
'ZmVycmVkVGhlbWUi+kIEcgIQAVIDS2V5OjmSQTYKNDIjS2V5IG9mIHRoZSBwcm9qZWN0J3Mgc2'
|
'ZWZlcnJlZFRoZW1lIrqBAQRyAhABUgNLZXk6OZJBNgo0MiNLZXkgb2YgdGhlIHByb2plY3Qncy'
|
||||||
'V0dGluZyB0byBnZXTSAQZIZWFkZXLSAQNLZXk=');
|
'BzZXR0aW5nIHRvIGdldNIBBkhlYWRlctIBA0tleQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectSettingResultDescriptor instead')
|
@$core.Deprecated('Use getProjectSettingResultDescriptor instead')
|
||||||
const GetProjectSettingResult$json = {
|
const GetProjectSettingResult$json = {
|
||||||
@@ -93,9 +93,9 @@ const GetProjectSettingResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetProjectSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetProjectSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getProjectSettingResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getProjectSettingResultDescriptor = $convert.base64Decode(
|
||||||
'ChdHZXRQcm9qZWN0U2V0dGluZ1Jlc3VsdBIuCgNLZXkYASABKAlCHJJBEkoQInByZWZlcnJlZF'
|
'ChdHZXRQcm9qZWN0U2V0dGluZ1Jlc3VsdBIvCgNLZXkYASABKAlCHZJBEkoQInByZWZlcnJlZF'
|
||||||
'RoZW1lIvpCBHICEAFSA0tleRIoCgVWYWx1ZRgCIAEoCUISkkEISgYiZGFyayL6QgRyAhABUgVW'
|
'RoZW1lIrqBAQRyAhABUgNLZXkSKQoFVmFsdWUYAiABKAlCE5JBCEoGImRhcmsiuoEBBHICEAFS'
|
||||||
'YWx1ZTofkkEcChoyGEtleSwgVmFsdWUgcGFpciByZXNwb25zZQ==');
|
'BVZhbHVlOh+SQRwKGjIYS2V5LCBWYWx1ZSBwYWlyIHJlc3BvbnNl');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectSettingRequestDescriptor instead')
|
@$core.Deprecated('Use deleteProjectSettingRequestDescriptor instead')
|
||||||
const DeleteProjectSettingRequest$json = {
|
const DeleteProjectSettingRequest$json = {
|
||||||
@@ -109,10 +109,10 @@ const DeleteProjectSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteProjectSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteProjectSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteProjectSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChtEZWxldGVQcm9qZWN0U2V0dGluZ1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
'ChtEZWxldGVQcm9qZWN0U2V0dGluZ1JlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcX'
|
||||||
'Vlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEi4KA0tleRgCIAEoCUIckkESShAi'
|
'Vlc3RQcm9qZWN0SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIvCgNLZXkYAiABKAlCHZJBEkoQ'
|
||||||
'cHJlZmVycmVkVGhlbWUi+kIEcgIQAVIDS2V5OjySQTkKNzImS2V5IG9mIHRoZSBwcm9qZWN0J3'
|
'InByZWZlcnJlZFRoZW1lIrqBAQRyAhABUgNLZXk6PJJBOQo3MiZLZXkgb2YgdGhlIHByb2plY3'
|
||||||
'Mgc2V0dGluZyB0byBkZWxldGXSAQZIZWFkZXLSAQNLZXk=');
|
'QncyBzZXR0aW5nIHRvIGRlbGV0ZdIBBkhlYWRlctIBA0tleQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectSettingResultDescriptor instead')
|
@$core.Deprecated('Use deleteProjectSettingResultDescriptor instead')
|
||||||
const DeleteProjectSettingResult$json = {
|
const DeleteProjectSettingResult$json = {
|
||||||
@@ -134,9 +134,9 @@ const ListProjectSettingsRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListProjectSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListProjectSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listProjectSettingsRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listProjectSettingsRequestDescriptor = $convert.base64Decode(
|
||||||
'ChpMaXN0UHJvamVjdFNldHRpbmdzUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
'ChpMaXN0UHJvamVjdFNldHRpbmdzUmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdW'
|
||||||
'VzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6KpJBJwolMhpQcm9qZWN0J3Mgc2V0'
|
'VzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOiqSQScKJTIaUHJvamVjdCdzIHNl'
|
||||||
'dGluZ3MgdG8gbGlzdNIBBkhlYWRlcg==');
|
'dHRpbmdzIHRvIGxpc3TSAQZIZWFkZXI=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectSettingsResultDescriptor instead')
|
@$core.Deprecated('Use listProjectSettingsResultDescriptor instead')
|
||||||
const ListProjectSettingsResult$json = {
|
const ListProjectSettingsResult$json = {
|
||||||
@@ -164,9 +164,10 @@ const ListProjectOrganisationSettingsRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListProjectOrganisationSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListProjectOrganisationSettingsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listProjectOrganisationSettingsRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listProjectOrganisationSettingsRequestDescriptor = $convert.base64Decode(
|
||||||
'CiZMaXN0UHJvamVjdE9yZ2FuaXNhdGlvblNldHRpbmdzUmVxdWVzdBI7CgZIZWFkZXIYASABKA'
|
'CiZMaXN0UHJvamVjdE9yZ2FuaXNhdGlvblNldHRpbmdzUmVxdWVzdBI8CgZIZWFkZXIYASABKA'
|
||||||
'syGS5hcGkuUmVxdWVzdFByb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXI6PpJBOwo5Mi5Q'
|
'syGS5hcGkuUmVxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyOj6SQTsKOTIu'
|
||||||
'cm9qZWN0J3Mgb3JnYW5pc2F0aW9uIHB1YmxpYyBzZXR0aW5ncyB0byBsaXN00gEGSGVhZGVy');
|
'UHJvamVjdCdzIG9yZ2FuaXNhdGlvbiBwdWJsaWMgc2V0dGluZ3MgdG8gbGlzdNIBBkhlYWRlcg'
|
||||||
|
'==');
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectOrganisationSettingsResultDescriptor instead')
|
@$core.Deprecated('Use listProjectOrganisationSettingsResultDescriptor instead')
|
||||||
const ListProjectOrganisationSettingsResult$json = {
|
const ListProjectOrganisationSettingsResult$json = {
|
||||||
@@ -195,9 +196,9 @@ const DeleteSettingsForProjectRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteSettingsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteSettingsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteSettingsForProjectRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteSettingsForProjectRequestDescriptor = $convert.base64Decode(
|
||||||
'Ch9EZWxldGVTZXR0aW5nc0ZvclByb2plY3RSZXF1ZXN0EiUKCVByb2plY3RJRBgBIAEoCUIH+k'
|
'Ch9EZWxldGVTZXR0aW5nc0ZvclByb2plY3RSZXF1ZXN0EiYKCVByb2plY3RJRBgBIAEoCUIIuo'
|
||||||
'IEcgIQAVIJUHJvamVjdElEOjKSQS8KLTIfUHJvamVjdCB0byBkZWxldGUgc2V0dGluZ3MgZnJv'
|
'EBBHICEAFSCVByb2plY3RJRDoykkEvCi0yH1Byb2plY3QgdG8gZGVsZXRlIHNldHRpbmdzIGZy'
|
||||||
'bdIBCVByb2plY3RJRA==');
|
'b23SAQlQcm9qZWN0SUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSettingsForProjectResultDescriptor instead')
|
@$core.Deprecated('Use deleteSettingsForProjectResultDescriptor instead')
|
||||||
const DeleteSettingsForProjectResult$json = {
|
const DeleteSettingsForProjectResult$json = {
|
||||||
|
|||||||
@@ -25,8 +25,8 @@ const ListTabRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListTabRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListTabRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listTabRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listTabRequestDescriptor = $convert.base64Decode(
|
||||||
'Cg5MaXN0VGFiUmVxdWVzdBI3CgVUYWJJRBgBIAEoCUIhkkEXMhVJZGVudGlmaWVyIG9mIHRoZS'
|
'Cg5MaXN0VGFiUmVxdWVzdBI4CgVUYWJJRBgBIAEoCUIikkEXMhVJZGVudGlmaWVyIG9mIHRoZS'
|
||||||
'BUYWL6QgRyAhABUgVUYWJJRDoNkkEKCgjSAQVUYWJJRA==');
|
'BUYWK6gQEEcgIQAVIFVGFiSUQ6DZJBCgoI0gEFVGFiSUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use listTabResultDescriptor instead')
|
@$core.Deprecated('Use listTabResultDescriptor instead')
|
||||||
const ListTabResult$json = {
|
const ListTabResult$json = {
|
||||||
|
|||||||
@@ -1,971 +0,0 @@
|
|||||||
// This is a generated file - do not edit.
|
|
||||||
//
|
|
||||||
// Generated from viz-translations.proto.
|
|
||||||
|
|
||||||
// @dart = 3.3
|
|
||||||
|
|
||||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
||||||
// ignore_for_file: constant_identifier_names
|
|
||||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
||||||
// ignore_for_file: non_constant_identifier_names
|
|
||||||
|
|
||||||
import 'dart:core' as $core;
|
|
||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
|
||||||
|
|
||||||
import 'core/shared.pb.dart' as $1;
|
|
||||||
|
|
||||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|
||||||
|
|
||||||
class Label extends $pb.GeneratedMessage {
|
|
||||||
factory Label({
|
|
||||||
$core.String? iD,
|
|
||||||
$core.String? projectID,
|
|
||||||
$core.String? context,
|
|
||||||
$core.String? label,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (iD != null) result.iD = iD;
|
|
||||||
if (projectID != null) result.projectID = projectID;
|
|
||||||
if (context != null) result.context = context;
|
|
||||||
if (label != null) result.label = label;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
Label._();
|
|
||||||
|
|
||||||
factory Label.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory Label.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Label', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Context', protoName: 'Context')
|
|
||||||
..aOS(4, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
Label clone() => Label()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
Label copyWith(void Function(Label) updates) => super.copyWith((message) => updates(message as Label)) as Label;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static Label create() => Label._();
|
|
||||||
@$core.override
|
|
||||||
Label createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<Label> createRepeated() => $pb.PbList<Label>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static Label getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Label>(create);
|
|
||||||
static Label? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get iD => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set iD($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearID() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get projectID => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set projectID($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasProjectID() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearProjectID() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get context => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set context($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasContext() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearContext() => $_clearField(3);
|
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.String get label => $_getSZ(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
set label($core.String value) => $_setString(3, value);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$core.bool hasLabel() => $_has(3);
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
void clearLabel() => $_clearField(4);
|
|
||||||
}
|
|
||||||
|
|
||||||
class LanguageCode extends $pb.GeneratedMessage {
|
|
||||||
factory LanguageCode({
|
|
||||||
$core.String? code,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (code != null) result.code = code;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
LanguageCode._();
|
|
||||||
|
|
||||||
factory LanguageCode.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory LanguageCode.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'LanguageCode', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'Code', protoName: 'Code')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
LanguageCode clone() => LanguageCode()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
LanguageCode copyWith(void Function(LanguageCode) updates) => super.copyWith((message) => updates(message as LanguageCode)) as LanguageCode;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static LanguageCode create() => LanguageCode._();
|
|
||||||
@$core.override
|
|
||||||
LanguageCode createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<LanguageCode> createRepeated() => $pb.PbList<LanguageCode>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static LanguageCode getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<LanguageCode>(create);
|
|
||||||
static LanguageCode? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get code => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set code($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasCode() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearCode() => $_clearField(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
class Translation extends $pb.GeneratedMessage {
|
|
||||||
factory Translation({
|
|
||||||
$core.String? labelID,
|
|
||||||
$core.String? languageCode,
|
|
||||||
$core.String? translation,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (labelID != null) result.labelID = labelID;
|
|
||||||
if (languageCode != null) result.languageCode = languageCode;
|
|
||||||
if (translation != null) result.translation = translation;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
Translation._();
|
|
||||||
|
|
||||||
factory Translation.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory Translation.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Translation', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'LabelID', protoName: 'LabelID')
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'LanguageCode', protoName: 'LanguageCode')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Translation', protoName: 'Translation')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
Translation clone() => Translation()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
Translation copyWith(void Function(Translation) updates) => super.copyWith((message) => updates(message as Translation)) as Translation;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static Translation create() => Translation._();
|
|
||||||
@$core.override
|
|
||||||
Translation createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<Translation> createRepeated() => $pb.PbList<Translation>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static Translation getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<Translation>(create);
|
|
||||||
static Translation? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get labelID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set labelID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasLabelID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearLabelID() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get languageCode => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set languageCode($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasLanguageCode() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearLanguageCode() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get translation => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set translation($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasTranslation() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearTranslation() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
class GetTranslationsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory GetTranslationsRequest({
|
|
||||||
$1.RequestProjectHeader? header,
|
|
||||||
$core.String? context,
|
|
||||||
$core.String? label,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (context != null) result.context = context;
|
|
||||||
if (label != null) result.label = label;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetTranslationsRequest._();
|
|
||||||
|
|
||||||
factory GetTranslationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetTranslationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetTranslationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Context', protoName: 'Context')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetTranslationsRequest clone() => GetTranslationsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetTranslationsRequest copyWith(void Function(GetTranslationsRequest) updates) => super.copyWith((message) => updates(message as GetTranslationsRequest)) as GetTranslationsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetTranslationsRequest create() => GetTranslationsRequest._();
|
|
||||||
@$core.override
|
|
||||||
GetTranslationsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetTranslationsRequest> createRepeated() => $pb.PbList<GetTranslationsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetTranslationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetTranslationsRequest>(create);
|
|
||||||
static GetTranslationsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get context => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set context($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasContext() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearContext() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get label => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set label($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasLabel() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearLabel() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
class GetTranslationsResult extends $pb.GeneratedMessage {
|
|
||||||
factory GetTranslationsResult({
|
|
||||||
$core.Iterable<Translation>? translations,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (translations != null) result.translations.addAll(translations);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetTranslationsResult._();
|
|
||||||
|
|
||||||
factory GetTranslationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetTranslationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetTranslationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<Translation>(1, _omitFieldNames ? '' : 'Translations', $pb.PbFieldType.PM, protoName: 'Translations', subBuilder: Translation.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetTranslationsResult clone() => GetTranslationsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetTranslationsResult copyWith(void Function(GetTranslationsResult) updates) => super.copyWith((message) => updates(message as GetTranslationsResult)) as GetTranslationsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetTranslationsResult create() => GetTranslationsResult._();
|
|
||||||
@$core.override
|
|
||||||
GetTranslationsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetTranslationsResult> createRepeated() => $pb.PbList<GetTranslationsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetTranslationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetTranslationsResult>(create);
|
|
||||||
static GetTranslationsResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<Translation> get translations => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Message used to Put a translation for a label in the PutTranslationsRequest
|
|
||||||
class PutTranslationMessage extends $pb.GeneratedMessage {
|
|
||||||
factory PutTranslationMessage({
|
|
||||||
$core.String? languageCode,
|
|
||||||
$core.String? translation,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (languageCode != null) result.languageCode = languageCode;
|
|
||||||
if (translation != null) result.translation = translation;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
PutTranslationMessage._();
|
|
||||||
|
|
||||||
factory PutTranslationMessage.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory PutTranslationMessage.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PutTranslationMessage', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'LanguageCode', protoName: 'LanguageCode')
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Translation', protoName: 'Translation')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationMessage clone() => PutTranslationMessage()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationMessage copyWith(void Function(PutTranslationMessage) updates) => super.copyWith((message) => updates(message as PutTranslationMessage)) as PutTranslationMessage;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationMessage create() => PutTranslationMessage._();
|
|
||||||
@$core.override
|
|
||||||
PutTranslationMessage createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<PutTranslationMessage> createRepeated() => $pb.PbList<PutTranslationMessage>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationMessage getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PutTranslationMessage>(create);
|
|
||||||
static PutTranslationMessage? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get languageCode => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set languageCode($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasLanguageCode() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearLanguageCode() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get translation => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set translation($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasTranslation() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearTranslation() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class PutTranslationsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory PutTranslationsRequest({
|
|
||||||
$1.RequestProjectHeader? header,
|
|
||||||
$core.String? context,
|
|
||||||
$core.String? label,
|
|
||||||
$core.Iterable<PutTranslationMessage>? translations,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (context != null) result.context = context;
|
|
||||||
if (label != null) result.label = label;
|
|
||||||
if (translations != null) result.translations.addAll(translations);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
PutTranslationsRequest._();
|
|
||||||
|
|
||||||
factory PutTranslationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory PutTranslationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PutTranslationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Context', protoName: 'Context')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
|
||||||
..pc<PutTranslationMessage>(4, _omitFieldNames ? '' : 'Translations', $pb.PbFieldType.PM, protoName: 'Translations', subBuilder: PutTranslationMessage.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationsRequest clone() => PutTranslationsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationsRequest copyWith(void Function(PutTranslationsRequest) updates) => super.copyWith((message) => updates(message as PutTranslationsRequest)) as PutTranslationsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationsRequest create() => PutTranslationsRequest._();
|
|
||||||
@$core.override
|
|
||||||
PutTranslationsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<PutTranslationsRequest> createRepeated() => $pb.PbList<PutTranslationsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PutTranslationsRequest>(create);
|
|
||||||
static PutTranslationsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get context => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set context($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasContext() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearContext() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get label => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set label($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasLabel() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearLabel() => $_clearField(3);
|
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
|
||||||
$pb.PbList<PutTranslationMessage> get translations => $_getList(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
class PutTranslationsResult extends $pb.GeneratedMessage {
|
|
||||||
factory PutTranslationsResult({
|
|
||||||
$core.Iterable<Translation>? translations,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (translations != null) result.translations.addAll(translations);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
PutTranslationsResult._();
|
|
||||||
|
|
||||||
factory PutTranslationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory PutTranslationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PutTranslationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<Translation>(1, _omitFieldNames ? '' : 'Translations', $pb.PbFieldType.PM, protoName: 'Translations', subBuilder: Translation.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationsResult clone() => PutTranslationsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
PutTranslationsResult copyWith(void Function(PutTranslationsResult) updates) => super.copyWith((message) => updates(message as PutTranslationsResult)) as PutTranslationsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationsResult create() => PutTranslationsResult._();
|
|
||||||
@$core.override
|
|
||||||
PutTranslationsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<PutTranslationsResult> createRepeated() => $pb.PbList<PutTranslationsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static PutTranslationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PutTranslationsResult>(create);
|
|
||||||
static PutTranslationsResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<Translation> get translations => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteTranslationsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteTranslationsRequest({
|
|
||||||
$1.RequestProjectHeader? header,
|
|
||||||
$core.String? context,
|
|
||||||
$core.String? label,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (context != null) result.context = context;
|
|
||||||
if (label != null) result.label = label;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeleteTranslationsRequest._();
|
|
||||||
|
|
||||||
factory DeleteTranslationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteTranslationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteTranslationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Context', protoName: 'Context')
|
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Label', protoName: 'Label')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteTranslationsRequest clone() => DeleteTranslationsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteTranslationsRequest copyWith(void Function(DeleteTranslationsRequest) updates) => super.copyWith((message) => updates(message as DeleteTranslationsRequest)) as DeleteTranslationsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteTranslationsRequest create() => DeleteTranslationsRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeleteTranslationsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteTranslationsRequest> createRepeated() => $pb.PbList<DeleteTranslationsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteTranslationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteTranslationsRequest>(create);
|
|
||||||
static DeleteTranslationsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get context => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set context($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasContext() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearContext() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.String get label => $_getSZ(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set label($core.String value) => $_setString(2, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasLabel() => $_has(2);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearLabel() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteTranslationsResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteTranslationsResult() => create();
|
|
||||||
|
|
||||||
DeleteTranslationsResult._();
|
|
||||||
|
|
||||||
factory DeleteTranslationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteTranslationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteTranslationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteTranslationsResult clone() => DeleteTranslationsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteTranslationsResult copyWith(void Function(DeleteTranslationsResult) updates) => super.copyWith((message) => updates(message as DeleteTranslationsResult)) as DeleteTranslationsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteTranslationsResult create() => DeleteTranslationsResult._();
|
|
||||||
@$core.override
|
|
||||||
DeleteTranslationsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteTranslationsResult> createRepeated() => $pb.PbList<DeleteTranslationsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteTranslationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteTranslationsResult>(create);
|
|
||||||
static DeleteTranslationsResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class ListTranslationsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory ListTranslationsRequest({
|
|
||||||
$1.RequestProjectHeader? header,
|
|
||||||
$core.String? languageCode,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
if (languageCode != null) result.languageCode = languageCode;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListTranslationsRequest._();
|
|
||||||
|
|
||||||
factory ListTranslationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ListTranslationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListTranslationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'LanguageCode', protoName: 'LanguageCode')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListTranslationsRequest clone() => ListTranslationsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListTranslationsRequest copyWith(void Function(ListTranslationsRequest) updates) => super.copyWith((message) => updates(message as ListTranslationsRequest)) as ListTranslationsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListTranslationsRequest create() => ListTranslationsRequest._();
|
|
||||||
@$core.override
|
|
||||||
ListTranslationsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ListTranslationsRequest> createRepeated() => $pb.PbList<ListTranslationsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListTranslationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListTranslationsRequest>(create);
|
|
||||||
static ListTranslationsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get languageCode => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set languageCode($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasLanguageCode() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearLanguageCode() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Messages for the ListTranslationsResult
|
|
||||||
class TranslationContextResult extends $pb.GeneratedMessage {
|
|
||||||
factory TranslationContextResult({
|
|
||||||
$core.String? name,
|
|
||||||
$core.Iterable<TranslationLabelResult>? labels,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (labels != null) result.labels.addAll(labels);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
TranslationContextResult._();
|
|
||||||
|
|
||||||
factory TranslationContextResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory TranslationContextResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TranslationContextResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..pc<TranslationLabelResult>(2, _omitFieldNames ? '' : 'Labels', $pb.PbFieldType.PM, protoName: 'Labels', subBuilder: TranslationLabelResult.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
TranslationContextResult clone() => TranslationContextResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
TranslationContextResult copyWith(void Function(TranslationContextResult) updates) => super.copyWith((message) => updates(message as TranslationContextResult)) as TranslationContextResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static TranslationContextResult create() => TranslationContextResult._();
|
|
||||||
@$core.override
|
|
||||||
TranslationContextResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<TranslationContextResult> createRepeated() => $pb.PbList<TranslationContextResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static TranslationContextResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TranslationContextResult>(create);
|
|
||||||
static TranslationContextResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get name => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set name($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasName() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearName() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$pb.PbList<TranslationLabelResult> get labels => $_getList(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
class TranslationLabelResult extends $pb.GeneratedMessage {
|
|
||||||
factory TranslationLabelResult({
|
|
||||||
$core.String? name,
|
|
||||||
$core.String? translation,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (name != null) result.name = name;
|
|
||||||
if (translation != null) result.translation = translation;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
TranslationLabelResult._();
|
|
||||||
|
|
||||||
factory TranslationLabelResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory TranslationLabelResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TranslationLabelResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Translation', protoName: 'Translation')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
TranslationLabelResult clone() => TranslationLabelResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
TranslationLabelResult copyWith(void Function(TranslationLabelResult) updates) => super.copyWith((message) => updates(message as TranslationLabelResult)) as TranslationLabelResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static TranslationLabelResult create() => TranslationLabelResult._();
|
|
||||||
@$core.override
|
|
||||||
TranslationLabelResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<TranslationLabelResult> createRepeated() => $pb.PbList<TranslationLabelResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static TranslationLabelResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TranslationLabelResult>(create);
|
|
||||||
static TranslationLabelResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get name => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set name($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasName() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearName() => $_clearField(1);
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get translation => $_getSZ(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set translation($core.String value) => $_setString(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasTranslation() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearTranslation() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class ListTranslationsResult extends $pb.GeneratedMessage {
|
|
||||||
factory ListTranslationsResult({
|
|
||||||
$core.Iterable<TranslationContextResult>? contexts,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (contexts != null) result.contexts.addAll(contexts);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
ListTranslationsResult._();
|
|
||||||
|
|
||||||
factory ListTranslationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory ListTranslationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListTranslationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<TranslationContextResult>(1, _omitFieldNames ? '' : 'Contexts', $pb.PbFieldType.PM, protoName: 'Contexts', subBuilder: TranslationContextResult.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListTranslationsResult clone() => ListTranslationsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
ListTranslationsResult copyWith(void Function(ListTranslationsResult) updates) => super.copyWith((message) => updates(message as ListTranslationsResult)) as ListTranslationsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListTranslationsResult create() => ListTranslationsResult._();
|
|
||||||
@$core.override
|
|
||||||
ListTranslationsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<ListTranslationsResult> createRepeated() => $pb.PbList<ListTranslationsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static ListTranslationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ListTranslationsResult>(create);
|
|
||||||
static ListTranslationsResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<TranslationContextResult> get contexts => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteAllTranslationsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteAllTranslationsRequest({
|
|
||||||
$1.RequestProjectHeader? header,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (header != null) result.header = header;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeleteAllTranslationsRequest._();
|
|
||||||
|
|
||||||
factory DeleteAllTranslationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteAllTranslationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllTranslationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteAllTranslationsRequest clone() => DeleteAllTranslationsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteAllTranslationsRequest copyWith(void Function(DeleteAllTranslationsRequest) updates) => super.copyWith((message) => updates(message as DeleteAllTranslationsRequest)) as DeleteAllTranslationsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteAllTranslationsRequest create() => DeleteAllTranslationsRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeleteAllTranslationsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteAllTranslationsRequest> createRepeated() => $pb.PbList<DeleteAllTranslationsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteAllTranslationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllTranslationsRequest>(create);
|
|
||||||
static DeleteAllTranslationsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader get header => $_getN(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set header($1.RequestProjectHeader value) => $_setField(1, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasHeader() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearHeader() => $_clearField(1);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$1.RequestProjectHeader ensureHeader() => $_ensure(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteAllTranslationsResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeleteAllTranslationsResult() => create();
|
|
||||||
|
|
||||||
DeleteAllTranslationsResult._();
|
|
||||||
|
|
||||||
factory DeleteAllTranslationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeleteAllTranslationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteAllTranslationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteAllTranslationsResult clone() => DeleteAllTranslationsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeleteAllTranslationsResult copyWith(void Function(DeleteAllTranslationsResult) updates) => super.copyWith((message) => updates(message as DeleteAllTranslationsResult)) as DeleteAllTranslationsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteAllTranslationsResult create() => DeleteAllTranslationsResult._();
|
|
||||||
@$core.override
|
|
||||||
DeleteAllTranslationsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeleteAllTranslationsResult> createRepeated() => $pb.PbList<DeleteAllTranslationsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeleteAllTranslationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeleteAllTranslationsResult>(create);
|
|
||||||
static DeleteAllTranslationsResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class GetLanguagesRequest extends $pb.GeneratedMessage {
|
|
||||||
factory GetLanguagesRequest() => create();
|
|
||||||
|
|
||||||
GetLanguagesRequest._();
|
|
||||||
|
|
||||||
factory GetLanguagesRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetLanguagesRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetLanguagesRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetLanguagesRequest clone() => GetLanguagesRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetLanguagesRequest copyWith(void Function(GetLanguagesRequest) updates) => super.copyWith((message) => updates(message as GetLanguagesRequest)) as GetLanguagesRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetLanguagesRequest create() => GetLanguagesRequest._();
|
|
||||||
@$core.override
|
|
||||||
GetLanguagesRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetLanguagesRequest> createRepeated() => $pb.PbList<GetLanguagesRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetLanguagesRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetLanguagesRequest>(create);
|
|
||||||
static GetLanguagesRequest? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class GetLanguagesResult extends $pb.GeneratedMessage {
|
|
||||||
factory GetLanguagesResult({
|
|
||||||
$core.Iterable<LanguageCode>? languages,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (languages != null) result.languages.addAll(languages);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
GetLanguagesResult._();
|
|
||||||
|
|
||||||
factory GetLanguagesResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory GetLanguagesResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetLanguagesResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'vizapi'), createEmptyInstance: create)
|
|
||||||
..pc<LanguageCode>(1, _omitFieldNames ? '' : 'Languages', $pb.PbFieldType.PM, protoName: 'Languages', subBuilder: LanguageCode.create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetLanguagesResult clone() => GetLanguagesResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
GetLanguagesResult copyWith(void Function(GetLanguagesResult) updates) => super.copyWith((message) => updates(message as GetLanguagesResult)) as GetLanguagesResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetLanguagesResult create() => GetLanguagesResult._();
|
|
||||||
@$core.override
|
|
||||||
GetLanguagesResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<GetLanguagesResult> createRepeated() => $pb.PbList<GetLanguagesResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static GetLanguagesResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetLanguagesResult>(create);
|
|
||||||
static GetLanguagesResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$pb.PbList<LanguageCode> get languages => $_getList(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
||||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
// This is a generated file - do not edit.
|
|
||||||
//
|
|
||||||
// Generated from viz-translations.proto.
|
|
||||||
|
|
||||||
// @dart = 3.3
|
|
||||||
|
|
||||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
||||||
// ignore_for_file: constant_identifier_names
|
|
||||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
||||||
// ignore_for_file: non_constant_identifier_names
|
|
||||||
|
|
||||||
@@ -1,172 +0,0 @@
|
|||||||
// This is a generated file - do not edit.
|
|
||||||
//
|
|
||||||
// Generated from viz-translations.proto.
|
|
||||||
|
|
||||||
// @dart = 3.3
|
|
||||||
|
|
||||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
||||||
// ignore_for_file: constant_identifier_names
|
|
||||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
||||||
// ignore_for_file: non_constant_identifier_names
|
|
||||||
|
|
||||||
import 'dart:async' as $async;
|
|
||||||
import 'dart:core' as $core;
|
|
||||||
|
|
||||||
import 'package:grpc/service_api.dart' as $grpc;
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
|
||||||
|
|
||||||
import 'viz-translations.pb.dart' as $0;
|
|
||||||
|
|
||||||
export 'viz-translations.pb.dart';
|
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.TranslationsService')
|
|
||||||
class TranslationsServiceClient extends $grpc.Client {
|
|
||||||
/// The hostname for this service.
|
|
||||||
static const $core.String defaultHost = '';
|
|
||||||
|
|
||||||
/// OAuth scopes needed for the client.
|
|
||||||
static const $core.List<$core.String> oauthScopes = [
|
|
||||||
'',
|
|
||||||
];
|
|
||||||
|
|
||||||
TranslationsServiceClient(super.channel, {super.options, super.interceptors});
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetTranslationsResult> get($0.GetTranslationsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$get, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.PutTranslationsResult> put($0.PutTranslationsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$put, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteTranslationsResult> delete($0.DeleteTranslationsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$delete, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ListTranslationsResult> list($0.ListTranslationsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$list, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteAllTranslationsResult> deleteAll($0.DeleteAllTranslationsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteAll, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetLanguagesResult> getLanguages($0.GetLanguagesRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$getLanguages, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
// method descriptors
|
|
||||||
|
|
||||||
static final _$get = $grpc.ClientMethod<$0.GetTranslationsRequest, $0.GetTranslationsResult>(
|
|
||||||
'/vizapi.TranslationsService/Get',
|
|
||||||
($0.GetTranslationsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.GetTranslationsResult.fromBuffer);
|
|
||||||
static final _$put = $grpc.ClientMethod<$0.PutTranslationsRequest, $0.PutTranslationsResult>(
|
|
||||||
'/vizapi.TranslationsService/Put',
|
|
||||||
($0.PutTranslationsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.PutTranslationsResult.fromBuffer);
|
|
||||||
static final _$delete = $grpc.ClientMethod<$0.DeleteTranslationsRequest, $0.DeleteTranslationsResult>(
|
|
||||||
'/vizapi.TranslationsService/Delete',
|
|
||||||
($0.DeleteTranslationsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteTranslationsResult.fromBuffer);
|
|
||||||
static final _$list = $grpc.ClientMethod<$0.ListTranslationsRequest, $0.ListTranslationsResult>(
|
|
||||||
'/vizapi.TranslationsService/List',
|
|
||||||
($0.ListTranslationsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ListTranslationsResult.fromBuffer);
|
|
||||||
static final _$deleteAll = $grpc.ClientMethod<$0.DeleteAllTranslationsRequest, $0.DeleteAllTranslationsResult>(
|
|
||||||
'/vizapi.TranslationsService/DeleteAll',
|
|
||||||
($0.DeleteAllTranslationsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteAllTranslationsResult.fromBuffer);
|
|
||||||
static final _$getLanguages = $grpc.ClientMethod<$0.GetLanguagesRequest, $0.GetLanguagesResult>(
|
|
||||||
'/vizapi.TranslationsService/GetLanguages',
|
|
||||||
($0.GetLanguagesRequest value) => value.writeToBuffer(),
|
|
||||||
$0.GetLanguagesResult.fromBuffer);
|
|
||||||
}
|
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.TranslationsService')
|
|
||||||
abstract class TranslationsServiceBase extends $grpc.Service {
|
|
||||||
$core.String get $name => 'vizapi.TranslationsService';
|
|
||||||
|
|
||||||
TranslationsServiceBase() {
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetTranslationsRequest, $0.GetTranslationsResult>(
|
|
||||||
'Get',
|
|
||||||
get_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.GetTranslationsRequest.fromBuffer(value),
|
|
||||||
($0.GetTranslationsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.PutTranslationsRequest, $0.PutTranslationsResult>(
|
|
||||||
'Put',
|
|
||||||
put_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.PutTranslationsRequest.fromBuffer(value),
|
|
||||||
($0.PutTranslationsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteTranslationsRequest, $0.DeleteTranslationsResult>(
|
|
||||||
'Delete',
|
|
||||||
delete_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteTranslationsRequest.fromBuffer(value),
|
|
||||||
($0.DeleteTranslationsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ListTranslationsRequest, $0.ListTranslationsResult>(
|
|
||||||
'List',
|
|
||||||
list_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ListTranslationsRequest.fromBuffer(value),
|
|
||||||
($0.ListTranslationsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteAllTranslationsRequest, $0.DeleteAllTranslationsResult>(
|
|
||||||
'DeleteAll',
|
|
||||||
deleteAll_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteAllTranslationsRequest.fromBuffer(value),
|
|
||||||
($0.DeleteAllTranslationsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetLanguagesRequest, $0.GetLanguagesResult>(
|
|
||||||
'GetLanguages',
|
|
||||||
getLanguages_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.GetLanguagesRequest.fromBuffer(value),
|
|
||||||
($0.GetLanguagesResult value) => value.writeToBuffer()));
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetTranslationsResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetTranslationsRequest> $request) async {
|
|
||||||
return get($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetTranslationsResult> get($grpc.ServiceCall call, $0.GetTranslationsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.PutTranslationsResult> put_Pre($grpc.ServiceCall $call, $async.Future<$0.PutTranslationsRequest> $request) async {
|
|
||||||
return put($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.PutTranslationsResult> put($grpc.ServiceCall call, $0.PutTranslationsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteTranslationsResult> delete_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteTranslationsRequest> $request) async {
|
|
||||||
return delete($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteTranslationsResult> delete($grpc.ServiceCall call, $0.DeleteTranslationsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ListTranslationsResult> list_Pre($grpc.ServiceCall $call, $async.Future<$0.ListTranslationsRequest> $request) async {
|
|
||||||
return list($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ListTranslationsResult> list($grpc.ServiceCall call, $0.ListTranslationsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteAllTranslationsResult> deleteAll_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllTranslationsRequest> $request) async {
|
|
||||||
return deleteAll($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteAllTranslationsResult> deleteAll($grpc.ServiceCall call, $0.DeleteAllTranslationsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.GetLanguagesResult> getLanguages_Pre($grpc.ServiceCall $call, $async.Future<$0.GetLanguagesRequest> $request) async {
|
|
||||||
return getLanguages($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetLanguagesResult> getLanguages($grpc.ServiceCall call, $0.GetLanguagesRequest request);
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,285 +0,0 @@
|
|||||||
// This is a generated file - do not edit.
|
|
||||||
//
|
|
||||||
// Generated from viz-translations.proto.
|
|
||||||
|
|
||||||
// @dart = 3.3
|
|
||||||
|
|
||||||
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
||||||
// ignore_for_file: constant_identifier_names
|
|
||||||
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
||||||
// ignore_for_file: non_constant_identifier_names, unused_import
|
|
||||||
|
|
||||||
import 'dart:convert' as $convert;
|
|
||||||
import 'dart:core' as $core;
|
|
||||||
import 'dart:typed_data' as $typed_data;
|
|
||||||
|
|
||||||
@$core.Deprecated('Use labelDescriptor instead')
|
|
||||||
const Label$json = {
|
|
||||||
'1': 'Label',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '10': 'ID'},
|
|
||||||
{'1': 'ProjectID', '3': 2, '4': 1, '5': 9, '10': 'ProjectID'},
|
|
||||||
{'1': 'Context', '3': 3, '4': 1, '5': 9, '10': 'Context'},
|
|
||||||
{'1': 'Label', '3': 4, '4': 1, '5': 9, '10': 'Label'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `Label`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List labelDescriptor = $convert.base64Decode(
|
|
||||||
'CgVMYWJlbBIOCgJJRBgBIAEoCVICSUQSHAoJUHJvamVjdElEGAIgASgJUglQcm9qZWN0SUQSGA'
|
|
||||||
'oHQ29udGV4dBgDIAEoCVIHQ29udGV4dBIUCgVMYWJlbBgEIAEoCVIFTGFiZWw=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use languageCodeDescriptor instead')
|
|
||||||
const LanguageCode$json = {
|
|
||||||
'1': 'LanguageCode',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Code', '3': 1, '4': 1, '5': 9, '10': 'Code'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `LanguageCode`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List languageCodeDescriptor = $convert.base64Decode(
|
|
||||||
'CgxMYW5ndWFnZUNvZGUSEgoEQ29kZRgBIAEoCVIEQ29kZQ==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use translationDescriptor instead')
|
|
||||||
const Translation$json = {
|
|
||||||
'1': 'Translation',
|
|
||||||
'2': [
|
|
||||||
{'1': 'LabelID', '3': 1, '4': 1, '5': 9, '10': 'LabelID'},
|
|
||||||
{'1': 'LanguageCode', '3': 2, '4': 1, '5': 9, '10': 'LanguageCode'},
|
|
||||||
{'1': 'Translation', '3': 3, '4': 1, '5': 9, '10': 'Translation'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `Translation`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List translationDescriptor = $convert.base64Decode(
|
|
||||||
'CgtUcmFuc2xhdGlvbhIYCgdMYWJlbElEGAEgASgJUgdMYWJlbElEEiIKDExhbmd1YWdlQ29kZR'
|
|
||||||
'gCIAEoCVIMTGFuZ3VhZ2VDb2RlEiAKC1RyYW5zbGF0aW9uGAMgASgJUgtUcmFuc2xhdGlvbg==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getTranslationsRequestDescriptor instead')
|
|
||||||
const GetTranslationsRequest$json = {
|
|
||||||
'1': 'GetTranslationsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Context', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Context'},
|
|
||||||
{'1': 'Label', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetTranslationsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getTranslationsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChZHZXRUcmFuc2xhdGlvbnNSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIhCgdDb250ZXh0GAIgASgJQgf6QgRyAhAB'
|
|
||||||
'UgdDb250ZXh0Eh0KBUxhYmVsGAMgASgJQgf6QgRyAhABUgVMYWJlbDpQkkFNCksyLk1lc3NhZ2'
|
|
||||||
'UgcmVxdWVzdCBmb3IgdGhlIEdldFRyYW5zbGF0aW9ucyBtZXRob2TSAQZIZWFkZXLSAQdDb250'
|
|
||||||
'ZXh00gEFTGFiZWw=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getTranslationsResultDescriptor instead')
|
|
||||||
const GetTranslationsResult$json = {
|
|
||||||
'1': 'GetTranslationsResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Translations', '3': 1, '4': 3, '5': 11, '6': '.vizapi.Translation', '10': 'Translations'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetTranslationsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getTranslationsResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChVHZXRUcmFuc2xhdGlvbnNSZXN1bHQSNwoMVHJhbnNsYXRpb25zGAEgAygLMhMudml6YXBpLl'
|
|
||||||
'RyYW5zbGF0aW9uUgxUcmFuc2xhdGlvbnM6NJJBMQovMi1NZXNzYWdlIHJlc3VsdCBmb3IgdGhl'
|
|
||||||
'IEdldFRyYW5zbGF0aW9ucyBtZXRob2Q=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use putTranslationMessageDescriptor instead')
|
|
||||||
const PutTranslationMessage$json = {
|
|
||||||
'1': 'PutTranslationMessage',
|
|
||||||
'2': [
|
|
||||||
{'1': 'LanguageCode', '3': 1, '4': 1, '5': 9, '10': 'LanguageCode'},
|
|
||||||
{'1': 'Translation', '3': 2, '4': 1, '5': 9, '10': 'Translation'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `PutTranslationMessage`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List putTranslationMessageDescriptor = $convert.base64Decode(
|
|
||||||
'ChVQdXRUcmFuc2xhdGlvbk1lc3NhZ2USIgoMTGFuZ3VhZ2VDb2RlGAEgASgJUgxMYW5ndWFnZU'
|
|
||||||
'NvZGUSIAoLVHJhbnNsYXRpb24YAiABKAlSC1RyYW5zbGF0aW9u');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use putTranslationsRequestDescriptor instead')
|
|
||||||
const PutTranslationsRequest$json = {
|
|
||||||
'1': 'PutTranslationsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Context', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Context'},
|
|
||||||
{'1': 'Label', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
|
||||||
{'1': 'Translations', '3': 4, '4': 3, '5': 11, '6': '.vizapi.PutTranslationMessage', '10': 'Translations'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `PutTranslationsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List putTranslationsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChZQdXRUcmFuc2xhdGlvbnNSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIhCgdDb250ZXh0GAIgASgJQgf6QgRyAhAB'
|
|
||||||
'UgdDb250ZXh0Eh0KBUxhYmVsGAMgASgJQgf6QgRyAhABUgVMYWJlbBJBCgxUcmFuc2xhdGlvbn'
|
|
||||||
'MYBCADKAsyHS52aXphcGkuUHV0VHJhbnNsYXRpb25NZXNzYWdlUgxUcmFuc2xhdGlvbnM6T5JB'
|
|
||||||
'TApKMi1NZXNzYWdlIHJlcXVlc3QgZm9yIHRoZSBQdXRUcmFuc2xhdGlvbiBtZXRob2TSAQZIZW'
|
|
||||||
'FkZXLSAQdDb250ZXh00gEFTGFiZWw=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use putTranslationsResultDescriptor instead')
|
|
||||||
const PutTranslationsResult$json = {
|
|
||||||
'1': 'PutTranslationsResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Translations', '3': 1, '4': 3, '5': 11, '6': '.vizapi.Translation', '10': 'Translations'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `PutTranslationsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List putTranslationsResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChVQdXRUcmFuc2xhdGlvbnNSZXN1bHQSNwoMVHJhbnNsYXRpb25zGAEgAygLMhMudml6YXBpLl'
|
|
||||||
'RyYW5zbGF0aW9uUgxUcmFuc2xhdGlvbnM6M5JBMAouMixNZXNzYWdlIHJlc3VsdCBmb3IgdGhl'
|
|
||||||
'IFB1dFRyYW5zbGF0aW9uIG1ldGhvZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteTranslationsRequestDescriptor instead')
|
|
||||||
const DeleteTranslationsRequest$json = {
|
|
||||||
'1': 'DeleteTranslationsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Context', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Context'},
|
|
||||||
{'1': 'Label', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Label'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteTranslationsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteTranslationsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChlEZWxldGVUcmFuc2xhdGlvbnNSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZX'
|
|
||||||
'N0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIhCgdDb250ZXh0GAIgASgJQgf6QgRy'
|
|
||||||
'AhABUgdDb250ZXh0Eh0KBUxhYmVsGAMgASgJQgf6QgRyAhABUgVMYWJlbDpSkkFPCk0yME1lc3'
|
|
||||||
'NhZ2UgcmVxdWVzdCBmb3IgdGhlIERlbGV0ZVRyYW5zbGF0aW9uIG1ldGhvZNIBBkhlYWRlctIB'
|
|
||||||
'B0NvbnRleHTSAQVMYWJlbA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteTranslationsResultDescriptor instead')
|
|
||||||
const DeleteTranslationsResult$json = {
|
|
||||||
'1': 'DeleteTranslationsResult',
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteTranslationsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteTranslationsResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChhEZWxldGVUcmFuc2xhdGlvbnNSZXN1bHQ6NpJBMwoxMi9NZXNzYWdlIHJlc3VsdCBmb3IgdG'
|
|
||||||
'hlIERlbGV0ZVRyYW5zbGF0aW9uIG1ldGhvZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listTranslationsRequestDescriptor instead')
|
|
||||||
const ListTranslationsRequest$json = {
|
|
||||||
'1': 'ListTranslationsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'LanguageCode', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'LanguageCode'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListTranslationsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listTranslationsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChdMaXN0VHJhbnNsYXRpb25zUmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdF'
|
|
||||||
'Byb2plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISKwoMTGFuZ3VhZ2VDb2RlGAIgASgJQgf6'
|
|
||||||
'QgRyAhABUgxMYW5ndWFnZUNvZGU6TpJBSwpJMi9NZXNzYWdlIHJlcXVlc3QgZm9yIHRoZSBMaX'
|
|
||||||
'N0VHJhbnNsYXRpb25zIG1ldGhvZNIBBkhlYWRlctIBDExhbmd1YWdlQ29kZQ==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use translationContextResultDescriptor instead')
|
|
||||||
const TranslationContextResult$json = {
|
|
||||||
'1': 'TranslationContextResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
|
|
||||||
{'1': 'Labels', '3': 2, '4': 3, '5': 11, '6': '.vizapi.TranslationLabelResult', '10': 'Labels'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `TranslationContextResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List translationContextResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChhUcmFuc2xhdGlvbkNvbnRleHRSZXN1bHQSEgoETmFtZRgBIAEoCVIETmFtZRI2CgZMYWJlbH'
|
|
||||||
'MYAiADKAsyHi52aXphcGkuVHJhbnNsYXRpb25MYWJlbFJlc3VsdFIGTGFiZWxz');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use translationLabelResultDescriptor instead')
|
|
||||||
const TranslationLabelResult$json = {
|
|
||||||
'1': 'TranslationLabelResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
|
|
||||||
{'1': 'Translation', '3': 2, '4': 1, '5': 9, '10': 'Translation'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `TranslationLabelResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List translationLabelResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChZUcmFuc2xhdGlvbkxhYmVsUmVzdWx0EhIKBE5hbWUYASABKAlSBE5hbWUSIAoLVHJhbnNsYX'
|
|
||||||
'Rpb24YAiABKAlSC1RyYW5zbGF0aW9u');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listTranslationsResultDescriptor instead')
|
|
||||||
const ListTranslationsResult$json = {
|
|
||||||
'1': 'ListTranslationsResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Contexts', '3': 1, '4': 3, '5': 11, '6': '.vizapi.TranslationContextResult', '10': 'Contexts'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListTranslationsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listTranslationsResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChZMaXN0VHJhbnNsYXRpb25zUmVzdWx0EjwKCENvbnRleHRzGAEgAygLMiAudml6YXBpLlRyYW'
|
|
||||||
'5zbGF0aW9uQ29udGV4dFJlc3VsdFIIQ29udGV4dHM6NZJBMgowMi5NZXNzYWdlIHJlc3VsdCBm'
|
|
||||||
'b3IgdGhlIExpc3RUcmFuc2xhdGlvbnMgbWV0aG9k');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteAllTranslationsRequestDescriptor instead')
|
|
||||||
const DeleteAllTranslationsRequest$json = {
|
|
||||||
'1': 'DeleteAllTranslationsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteAllTranslationsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteAllTranslationsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChxEZWxldGVBbGxUcmFuc2xhdGlvbnNSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZX'
|
|
||||||
'F1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlcjpEkkFBCj8yNE1lc3NhZ2UgcmVx'
|
|
||||||
'dWVzdCBmb3IgdGhlIERlbGV0ZUFsbFRyYW5zbGF0aW9ucyBtZXRob2TSAQZIZWFkZXI=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteAllTranslationsResultDescriptor instead')
|
|
||||||
const DeleteAllTranslationsResult$json = {
|
|
||||||
'1': 'DeleteAllTranslationsResult',
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteAllTranslationsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteAllTranslationsResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChtEZWxldGVBbGxUcmFuc2xhdGlvbnNSZXN1bHQ6OpJBNwo1MjNNZXNzYWdlIHJlc3VsdCBmb3'
|
|
||||||
'IgdGhlIERlbGV0ZUFsbFRyYW5zbGF0aW9ucyBtZXRob2Q=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getLanguagesRequestDescriptor instead')
|
|
||||||
const GetLanguagesRequest$json = {
|
|
||||||
'1': 'GetLanguagesRequest',
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetLanguagesRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getLanguagesRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChNHZXRMYW5ndWFnZXNSZXF1ZXN0OjKSQS8KLTIrTWVzc2FnZSByZXF1ZXN0IGZvciB0aGUgR2'
|
|
||||||
'V0TGFuZ3VhZ2VzIG1ldGhvZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getLanguagesResultDescriptor instead')
|
|
||||||
const GetLanguagesResult$json = {
|
|
||||||
'1': 'GetLanguagesResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Languages', '3': 1, '4': 3, '5': 11, '6': '.vizapi.LanguageCode', '10': 'Languages'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetLanguagesResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getLanguagesResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChJHZXRMYW5ndWFnZXNSZXN1bHQSMgoJTGFuZ3VhZ2VzGAEgAygLMhQudml6YXBpLkxhbmd1YW'
|
|
||||||
'dlQ29kZVIJTGFuZ3VhZ2VzOjGSQS4KLDIqTWVzc2FnZSByZXN1bHQgZm9yIHRoZSBHZXRMYW5n'
|
|
||||||
'dWFnZXMgbWV0aG9k');
|
|
||||||
|
|
||||||
@@ -41,10 +41,10 @@ const PutUserSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `PutUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `PutUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List putUserSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List putUserSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChVQdXRVc2VyU2V0dGluZ1JlcXVlc3QSTAoDS2V5GAEgASgJQjqSQTAyHEtleTogZWFjaCBrZX'
|
'ChVQdXRVc2VyU2V0dGluZ1JlcXVlc3QSTQoDS2V5GAEgASgJQjuSQTAyHEtleTogZWFjaCBrZX'
|
||||||
'kgbXVzdCBiZSB1bmlxdWVKECJwcmVmZXJyZWRUaGVtZSL6QgRyAhABUgNLZXkSKQoFVmFsdWUY'
|
'kgbXVzdCBiZSB1bmlxdWVKECJwcmVmZXJyZWRUaGVtZSK6gQEEcgIQAVIDS2V5EioKBVZhbHVl'
|
||||||
'AiABKAlCE5JBCUoHImRhcmsgIvpCBHICEAFSBVZhbHVlOi2SQSoKKDIYS2V5LCBWYWx1ZSBwYW'
|
'GAIgASgJQhSSQQlKByJkYXJrICK6gQEEcgIQAVIFVmFsdWU6LZJBKgooMhhLZXksIFZhbHVlIH'
|
||||||
'lyIHRvIHN0b3Jl0gEDS2V50gEFVmFsdWU=');
|
'BhaXIgdG8gc3RvcmXSAQNLZXnSAQVWYWx1ZQ==');
|
||||||
|
|
||||||
@$core.Deprecated('Use putUserSettingResultDescriptor instead')
|
@$core.Deprecated('Use putUserSettingResultDescriptor instead')
|
||||||
const PutUserSettingResult$json = {
|
const PutUserSettingResult$json = {
|
||||||
@@ -58,9 +58,9 @@ const PutUserSettingResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `PutUserSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `PutUserSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List putUserSettingResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List putUserSettingResultDescriptor = $convert.base64Decode(
|
||||||
'ChRQdXRVc2VyU2V0dGluZ1Jlc3VsdBIuCgNLZXkYASABKAlCHJJBEkoQInByZWZlcnJlZFRoZW'
|
'ChRQdXRVc2VyU2V0dGluZ1Jlc3VsdBIvCgNLZXkYASABKAlCHZJBEkoQInByZWZlcnJlZFRoZW'
|
||||||
'1lIvpCBHICEAFSA0tleRIoCgVWYWx1ZRgCIAEoCUISkkEISgYiZGFyayL6QgRyAhABUgVWYWx1'
|
'1lIrqBAQRyAhABUgNLZXkSKQoFVmFsdWUYAiABKAlCE5JBCEoGImRhcmsiuoEBBHICEAFSBVZh'
|
||||||
'ZTofkkEcChoyGEtleSwgVmFsdWUgcGFpciByZXNwb25zZQ==');
|
'bHVlOh+SQRwKGjIYS2V5LCBWYWx1ZSBwYWlyIHJlc3BvbnNl');
|
||||||
|
|
||||||
@$core.Deprecated('Use getUserSettingRequestDescriptor instead')
|
@$core.Deprecated('Use getUserSettingRequestDescriptor instead')
|
||||||
const GetUserSettingRequest$json = {
|
const GetUserSettingRequest$json = {
|
||||||
@@ -73,9 +73,9 @@ const GetUserSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getUserSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getUserSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChVHZXRVc2VyU2V0dGluZ1JlcXVlc3QSLgoDS2V5GAIgASgJQhySQRJKECJwcmVmZXJyZWRUaG'
|
'ChVHZXRVc2VyU2V0dGluZ1JlcXVlc3QSLwoDS2V5GAIgASgJQh2SQRJKECJwcmVmZXJyZWRUaG'
|
||||||
'VtZSL6QgRyAhABUgNLZXk6LZJBKgooMiBLZXkgb2YgdGhlIHVzZXIncyBzZXR0aW5nIHRvIGdl'
|
'VtZSK6gQEEcgIQAVIDS2V5Oi2SQSoKKDIgS2V5IG9mIHRoZSB1c2VyJ3Mgc2V0dGluZyB0byBn'
|
||||||
'dNIBA0tleQ==');
|
'ZXTSAQNLZXk=');
|
||||||
|
|
||||||
@$core.Deprecated('Use getUserSettingResultDescriptor instead')
|
@$core.Deprecated('Use getUserSettingResultDescriptor instead')
|
||||||
const GetUserSettingResult$json = {
|
const GetUserSettingResult$json = {
|
||||||
@@ -89,9 +89,9 @@ const GetUserSettingResult$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetUserSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetUserSettingResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getUserSettingResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getUserSettingResultDescriptor = $convert.base64Decode(
|
||||||
'ChRHZXRVc2VyU2V0dGluZ1Jlc3VsdBIuCgNLZXkYASABKAlCHJJBEkoQInByZWZlcnJlZFRoZW'
|
'ChRHZXRVc2VyU2V0dGluZ1Jlc3VsdBIvCgNLZXkYASABKAlCHZJBEkoQInByZWZlcnJlZFRoZW'
|
||||||
'1lIvpCBHICEAFSA0tleRIoCgVWYWx1ZRgCIAEoCUISkkEISgYiZGFyayL6QgRyAhABUgVWYWx1'
|
'1lIrqBAQRyAhABUgNLZXkSKQoFVmFsdWUYAiABKAlCE5JBCEoGImRhcmsiuoEBBHICEAFSBVZh'
|
||||||
'ZTofkkEcChoyGEtleSwgVmFsdWUgcGFpciByZXNwb25zZQ==');
|
'bHVlOh+SQRwKGjIYS2V5LCBWYWx1ZSBwYWlyIHJlc3BvbnNl');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteUserSettingRequestDescriptor instead')
|
@$core.Deprecated('Use deleteUserSettingRequestDescriptor instead')
|
||||||
const DeleteUserSettingRequest$json = {
|
const DeleteUserSettingRequest$json = {
|
||||||
@@ -104,9 +104,9 @@ const DeleteUserSettingRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteUserSettingRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteUserSettingRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteUserSettingRequestDescriptor = $convert.base64Decode(
|
||||||
'ChhEZWxldGVVc2VyU2V0dGluZ1JlcXVlc3QSLgoDS2V5GAIgASgJQhySQRJKECJwcmVmZXJyZW'
|
'ChhEZWxldGVVc2VyU2V0dGluZ1JlcXVlc3QSLwoDS2V5GAIgASgJQh2SQRJKECJwcmVmZXJyZW'
|
||||||
'RUaGVtZSL6QgRyAhABUgNLZXk6MJJBLQorMiNLZXkgb2YgdGhlIHVzZXIncyBzZXR0aW5nIHRv'
|
'RUaGVtZSK6gQEEcgIQAVIDS2V5OjCSQS0KKzIjS2V5IG9mIHRoZSB1c2VyJ3Mgc2V0dGluZyB0'
|
||||||
'IGRlbGV0ZdIBA0tleQ==');
|
'byBkZWxldGXSAQNLZXk=');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteUserSettingResultDescriptor instead')
|
@$core.Deprecated('Use deleteUserSettingResultDescriptor instead')
|
||||||
const DeleteUserSettingResult$json = {
|
const DeleteUserSettingResult$json = {
|
||||||
|
|||||||
1848
lib/viz-view.pb.dart
1848
lib/viz-view.pb.dart
File diff suppressed because it is too large
Load Diff
@@ -56,60 +56,16 @@ class ViewServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$deleteViewsForProject, request, options: options);
|
return $createUnaryCall(_$deleteViewsForProject, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$grpc.ResponseFuture<$0.SetOwnerViewResult> setOwner($0.SetOwnerViewRequest request, {$grpc.CallOptions? options,}) {
|
||||||
|
return $createUnaryCall(_$setOwner, request, options: options);
|
||||||
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ExtractResult> extract($0.ExtractRequest request, {$grpc.CallOptions? options,}) {
|
$grpc.ResponseFuture<$0.ExtractResult> extract($0.ExtractRequest request, {$grpc.CallOptions? options,}) {
|
||||||
return $createUnaryCall(_$extract, request, options: options);
|
return $createUnaryCall(_$extract, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetProjectViewResult> getProject($0.GetProjectViewRequest request, {$grpc.CallOptions? options,}) {
|
$grpc.ResponseFuture<$0.ExtractResult> crossExtract($0.CrossExtractRequest request, {$grpc.CallOptions? options,}) {
|
||||||
return $createUnaryCall(_$getProject, request, options: options);
|
return $createUnaryCall(_$crossExtract, request, options: options);
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateProjectViewResult> createProject($0.CreateProjectViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createProject, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.UpdateProjectViewResult> updateProject($0.UpdateProjectViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$updateProject, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteProjectViewResult> deleteProject($0.DeleteProjectViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteProject, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ListProjectViewResult> listProject($0.ListProjectViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$listProject, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ExtractProjectResult> extractProject($0.ExtractProjectRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$extractProject, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.GetSiteViewResult> getSite($0.GetSiteViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$getSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateSiteViewResult> createSite($0.CreateSiteViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.UpdateSiteViewResult> updateSite($0.UpdateSiteViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$updateSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteSiteViewResult> deleteSite($0.DeleteSiteViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ListSiteViewResult> listSite($0.ListSiteViewRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$listSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.ExtractSiteResult> extractSite($0.ExtractSiteRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$extractSite, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteViewsForSiteResult> deleteViewsForSite($0.DeleteViewsForSiteRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deleteViewsForSite, request, options: options);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// method descriptors
|
// method descriptors
|
||||||
@@ -138,62 +94,18 @@ class ViewServiceClient extends $grpc.Client {
|
|||||||
'/vizapi.ViewService/DeleteViewsForProject',
|
'/vizapi.ViewService/DeleteViewsForProject',
|
||||||
($0.DeleteViewsForProjectRequest value) => value.writeToBuffer(),
|
($0.DeleteViewsForProjectRequest value) => value.writeToBuffer(),
|
||||||
$0.DeleteViewsForProjectResult.fromBuffer);
|
$0.DeleteViewsForProjectResult.fromBuffer);
|
||||||
|
static final _$setOwner = $grpc.ClientMethod<$0.SetOwnerViewRequest, $0.SetOwnerViewResult>(
|
||||||
|
'/vizapi.ViewService/SetOwner',
|
||||||
|
($0.SetOwnerViewRequest value) => value.writeToBuffer(),
|
||||||
|
$0.SetOwnerViewResult.fromBuffer);
|
||||||
static final _$extract = $grpc.ClientMethod<$0.ExtractRequest, $0.ExtractResult>(
|
static final _$extract = $grpc.ClientMethod<$0.ExtractRequest, $0.ExtractResult>(
|
||||||
'/vizapi.ViewService/Extract',
|
'/vizapi.ViewService/Extract',
|
||||||
($0.ExtractRequest value) => value.writeToBuffer(),
|
($0.ExtractRequest value) => value.writeToBuffer(),
|
||||||
$0.ExtractResult.fromBuffer);
|
$0.ExtractResult.fromBuffer);
|
||||||
static final _$getProject = $grpc.ClientMethod<$0.GetProjectViewRequest, $0.GetProjectViewResult>(
|
static final _$crossExtract = $grpc.ClientMethod<$0.CrossExtractRequest, $0.ExtractResult>(
|
||||||
'/vizapi.ViewService/GetProject',
|
'/vizapi.ViewService/CrossExtract',
|
||||||
($0.GetProjectViewRequest value) => value.writeToBuffer(),
|
($0.CrossExtractRequest value) => value.writeToBuffer(),
|
||||||
$0.GetProjectViewResult.fromBuffer);
|
$0.ExtractResult.fromBuffer);
|
||||||
static final _$createProject = $grpc.ClientMethod<$0.CreateProjectViewRequest, $0.CreateProjectViewResult>(
|
|
||||||
'/vizapi.ViewService/CreateProject',
|
|
||||||
($0.CreateProjectViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreateProjectViewResult.fromBuffer);
|
|
||||||
static final _$updateProject = $grpc.ClientMethod<$0.UpdateProjectViewRequest, $0.UpdateProjectViewResult>(
|
|
||||||
'/vizapi.ViewService/UpdateProject',
|
|
||||||
($0.UpdateProjectViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.UpdateProjectViewResult.fromBuffer);
|
|
||||||
static final _$deleteProject = $grpc.ClientMethod<$0.DeleteProjectViewRequest, $0.DeleteProjectViewResult>(
|
|
||||||
'/vizapi.ViewService/DeleteProject',
|
|
||||||
($0.DeleteProjectViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteProjectViewResult.fromBuffer);
|
|
||||||
static final _$listProject = $grpc.ClientMethod<$0.ListProjectViewRequest, $0.ListProjectViewResult>(
|
|
||||||
'/vizapi.ViewService/ListProject',
|
|
||||||
($0.ListProjectViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ListProjectViewResult.fromBuffer);
|
|
||||||
static final _$extractProject = $grpc.ClientMethod<$0.ExtractProjectRequest, $0.ExtractProjectResult>(
|
|
||||||
'/vizapi.ViewService/ExtractProject',
|
|
||||||
($0.ExtractProjectRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ExtractProjectResult.fromBuffer);
|
|
||||||
static final _$getSite = $grpc.ClientMethod<$0.GetSiteViewRequest, $0.GetSiteViewResult>(
|
|
||||||
'/vizapi.ViewService/GetSite',
|
|
||||||
($0.GetSiteViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.GetSiteViewResult.fromBuffer);
|
|
||||||
static final _$createSite = $grpc.ClientMethod<$0.CreateSiteViewRequest, $0.CreateSiteViewResult>(
|
|
||||||
'/vizapi.ViewService/CreateSite',
|
|
||||||
($0.CreateSiteViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreateSiteViewResult.fromBuffer);
|
|
||||||
static final _$updateSite = $grpc.ClientMethod<$0.UpdateSiteViewRequest, $0.UpdateSiteViewResult>(
|
|
||||||
'/vizapi.ViewService/UpdateSite',
|
|
||||||
($0.UpdateSiteViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.UpdateSiteViewResult.fromBuffer);
|
|
||||||
static final _$deleteSite = $grpc.ClientMethod<$0.DeleteSiteViewRequest, $0.DeleteSiteViewResult>(
|
|
||||||
'/vizapi.ViewService/DeleteSite',
|
|
||||||
($0.DeleteSiteViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteSiteViewResult.fromBuffer);
|
|
||||||
static final _$listSite = $grpc.ClientMethod<$0.ListSiteViewRequest, $0.ListSiteViewResult>(
|
|
||||||
'/vizapi.ViewService/ListSite',
|
|
||||||
($0.ListSiteViewRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ListSiteViewResult.fromBuffer);
|
|
||||||
static final _$extractSite = $grpc.ClientMethod<$0.ExtractSiteRequest, $0.ExtractSiteResult>(
|
|
||||||
'/vizapi.ViewService/ExtractSite',
|
|
||||||
($0.ExtractSiteRequest value) => value.writeToBuffer(),
|
|
||||||
$0.ExtractSiteResult.fromBuffer);
|
|
||||||
static final _$deleteViewsForSite = $grpc.ClientMethod<$0.DeleteViewsForSiteRequest, $0.DeleteViewsForSiteResult>(
|
|
||||||
'/vizapi.ViewService/DeleteViewsForSite',
|
|
||||||
($0.DeleteViewsForSiteRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeleteViewsForSiteResult.fromBuffer);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@$pb.GrpcServiceName('vizapi.ViewService')
|
@$pb.GrpcServiceName('vizapi.ViewService')
|
||||||
@@ -243,6 +155,13 @@ abstract class ViewServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.DeleteViewsForProjectRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.DeleteViewsForProjectRequest.fromBuffer(value),
|
||||||
($0.DeleteViewsForProjectResult value) => value.writeToBuffer()));
|
($0.DeleteViewsForProjectResult value) => value.writeToBuffer()));
|
||||||
|
$addMethod($grpc.ServiceMethod<$0.SetOwnerViewRequest, $0.SetOwnerViewResult>(
|
||||||
|
'SetOwner',
|
||||||
|
setOwner_Pre,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
($core.List<$core.int> value) => $0.SetOwnerViewRequest.fromBuffer(value),
|
||||||
|
($0.SetOwnerViewResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.ExtractRequest, $0.ExtractResult>(
|
$addMethod($grpc.ServiceMethod<$0.ExtractRequest, $0.ExtractResult>(
|
||||||
'Extract',
|
'Extract',
|
||||||
extract_Pre,
|
extract_Pre,
|
||||||
@@ -250,97 +169,13 @@ abstract class ViewServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.ExtractRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.ExtractRequest.fromBuffer(value),
|
||||||
($0.ExtractResult value) => value.writeToBuffer()));
|
($0.ExtractResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetProjectViewRequest, $0.GetProjectViewResult>(
|
$addMethod($grpc.ServiceMethod<$0.CrossExtractRequest, $0.ExtractResult>(
|
||||||
'GetProject',
|
'CrossExtract',
|
||||||
getProject_Pre,
|
crossExtract_Pre,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.GetProjectViewRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.CrossExtractRequest.fromBuffer(value),
|
||||||
($0.GetProjectViewResult value) => value.writeToBuffer()));
|
($0.ExtractResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateProjectViewRequest, $0.CreateProjectViewResult>(
|
|
||||||
'CreateProject',
|
|
||||||
createProject_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreateProjectViewRequest.fromBuffer(value),
|
|
||||||
($0.CreateProjectViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.UpdateProjectViewRequest, $0.UpdateProjectViewResult>(
|
|
||||||
'UpdateProject',
|
|
||||||
updateProject_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.UpdateProjectViewRequest.fromBuffer(value),
|
|
||||||
($0.UpdateProjectViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteProjectViewRequest, $0.DeleteProjectViewResult>(
|
|
||||||
'DeleteProject',
|
|
||||||
deleteProject_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteProjectViewRequest.fromBuffer(value),
|
|
||||||
($0.DeleteProjectViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ListProjectViewRequest, $0.ListProjectViewResult>(
|
|
||||||
'ListProject',
|
|
||||||
listProject_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ListProjectViewRequest.fromBuffer(value),
|
|
||||||
($0.ListProjectViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ExtractProjectRequest, $0.ExtractProjectResult>(
|
|
||||||
'ExtractProject',
|
|
||||||
extractProject_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ExtractProjectRequest.fromBuffer(value),
|
|
||||||
($0.ExtractProjectResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.GetSiteViewRequest, $0.GetSiteViewResult>(
|
|
||||||
'GetSite',
|
|
||||||
getSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.GetSiteViewRequest.fromBuffer(value),
|
|
||||||
($0.GetSiteViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateSiteViewRequest, $0.CreateSiteViewResult>(
|
|
||||||
'CreateSite',
|
|
||||||
createSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreateSiteViewRequest.fromBuffer(value),
|
|
||||||
($0.CreateSiteViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.UpdateSiteViewRequest, $0.UpdateSiteViewResult>(
|
|
||||||
'UpdateSite',
|
|
||||||
updateSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.UpdateSiteViewRequest.fromBuffer(value),
|
|
||||||
($0.UpdateSiteViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteSiteViewRequest, $0.DeleteSiteViewResult>(
|
|
||||||
'DeleteSite',
|
|
||||||
deleteSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteSiteViewRequest.fromBuffer(value),
|
|
||||||
($0.DeleteSiteViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ListSiteViewRequest, $0.ListSiteViewResult>(
|
|
||||||
'ListSite',
|
|
||||||
listSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ListSiteViewRequest.fromBuffer(value),
|
|
||||||
($0.ListSiteViewResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.ExtractSiteRequest, $0.ExtractSiteResult>(
|
|
||||||
'ExtractSite',
|
|
||||||
extractSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.ExtractSiteRequest.fromBuffer(value),
|
|
||||||
($0.ExtractSiteResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteViewsForSiteRequest, $0.DeleteViewsForSiteResult>(
|
|
||||||
'DeleteViewsForSite',
|
|
||||||
deleteViewsForSite_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeleteViewsForSiteRequest.fromBuffer(value),
|
|
||||||
($0.DeleteViewsForSiteResult value) => value.writeToBuffer()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.GetViewResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetViewRequest> $request) async {
|
$async.Future<$0.GetViewResult> get_Pre($grpc.ServiceCall $call, $async.Future<$0.GetViewRequest> $request) async {
|
||||||
@@ -379,88 +214,22 @@ abstract class ViewServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.DeleteViewsForProjectResult> deleteViewsForProject($grpc.ServiceCall call, $0.DeleteViewsForProjectRequest request);
|
$async.Future<$0.DeleteViewsForProjectResult> deleteViewsForProject($grpc.ServiceCall call, $0.DeleteViewsForProjectRequest request);
|
||||||
|
|
||||||
|
$async.Future<$0.SetOwnerViewResult> setOwner_Pre($grpc.ServiceCall $call, $async.Future<$0.SetOwnerViewRequest> $request) async {
|
||||||
|
return setOwner($call, await $request);
|
||||||
|
}
|
||||||
|
|
||||||
|
$async.Future<$0.SetOwnerViewResult> setOwner($grpc.ServiceCall call, $0.SetOwnerViewRequest request);
|
||||||
|
|
||||||
$async.Future<$0.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$0.ExtractRequest> $request) async {
|
$async.Future<$0.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$0.ExtractRequest> $request) async {
|
||||||
return extract($call, await $request);
|
return extract($call, await $request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.ExtractResult> extract($grpc.ServiceCall call, $0.ExtractRequest request);
|
$async.Future<$0.ExtractResult> extract($grpc.ServiceCall call, $0.ExtractRequest request);
|
||||||
|
|
||||||
$async.Future<$0.GetProjectViewResult> getProject_Pre($grpc.ServiceCall $call, $async.Future<$0.GetProjectViewRequest> $request) async {
|
$async.Future<$0.ExtractResult> crossExtract_Pre($grpc.ServiceCall $call, $async.Future<$0.CrossExtractRequest> $request) async {
|
||||||
return getProject($call, await $request);
|
return crossExtract($call, await $request);
|
||||||
}
|
}
|
||||||
|
|
||||||
$async.Future<$0.GetProjectViewResult> getProject($grpc.ServiceCall call, $0.GetProjectViewRequest request);
|
$async.Future<$0.ExtractResult> crossExtract($grpc.ServiceCall call, $0.CrossExtractRequest request);
|
||||||
|
|
||||||
$async.Future<$0.CreateProjectViewResult> createProject_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateProjectViewRequest> $request) async {
|
|
||||||
return createProject($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreateProjectViewResult> createProject($grpc.ServiceCall call, $0.CreateProjectViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateProjectViewResult> updateProject_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateProjectViewRequest> $request) async {
|
|
||||||
return updateProject($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateProjectViewResult> updateProject($grpc.ServiceCall call, $0.UpdateProjectViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteProjectViewResult> deleteProject_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteProjectViewRequest> $request) async {
|
|
||||||
return deleteProject($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteProjectViewResult> deleteProject($grpc.ServiceCall call, $0.DeleteProjectViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ListProjectViewResult> listProject_Pre($grpc.ServiceCall $call, $async.Future<$0.ListProjectViewRequest> $request) async {
|
|
||||||
return listProject($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ListProjectViewResult> listProject($grpc.ServiceCall call, $0.ListProjectViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ExtractProjectResult> extractProject_Pre($grpc.ServiceCall $call, $async.Future<$0.ExtractProjectRequest> $request) async {
|
|
||||||
return extractProject($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ExtractProjectResult> extractProject($grpc.ServiceCall call, $0.ExtractProjectRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.GetSiteViewResult> getSite_Pre($grpc.ServiceCall $call, $async.Future<$0.GetSiteViewRequest> $request) async {
|
|
||||||
return getSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.GetSiteViewResult> getSite($grpc.ServiceCall call, $0.GetSiteViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteViewResult> createSite_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateSiteViewRequest> $request) async {
|
|
||||||
return createSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreateSiteViewResult> createSite($grpc.ServiceCall call, $0.CreateSiteViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteViewResult> updateSite_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateSiteViewRequest> $request) async {
|
|
||||||
return updateSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.UpdateSiteViewResult> updateSite($grpc.ServiceCall call, $0.UpdateSiteViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteViewResult> deleteSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteSiteViewRequest> $request) async {
|
|
||||||
return deleteSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteSiteViewResult> deleteSite($grpc.ServiceCall call, $0.DeleteSiteViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteViewResult> listSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ListSiteViewRequest> $request) async {
|
|
||||||
return listSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ListSiteViewResult> listSite($grpc.ServiceCall call, $0.ListSiteViewRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.ExtractSiteResult> extractSite_Pre($grpc.ServiceCall $call, $async.Future<$0.ExtractSiteRequest> $request) async {
|
|
||||||
return extractSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.ExtractSiteResult> extractSite($grpc.ServiceCall call, $0.ExtractSiteRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteViewsForSiteResult> deleteViewsForSite_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteViewsForSiteRequest> $request) async {
|
|
||||||
return deleteViewsForSite($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteViewsForSiteResult> deleteViewsForSite($grpc.ServiceCall call, $0.DeleteViewsForSiteRequest request);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,22 +63,22 @@ const View$json = {
|
|||||||
/// Descriptor for `View`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `View`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List viewDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List viewDescriptor = $convert.base64Decode(
|
||||||
'CgRWaWV3EjMKBlZpZXdJRBgBIAEoCUIbkkEYMhZJZGVudGlmaWVyIG9mIHRoZSBWaWV3UgZWaW'
|
'CgRWaWV3EjMKBlZpZXdJRBgBIAEoCUIbkkEYMhZJZGVudGlmaWVyIG9mIHRoZSBWaWV3UgZWaW'
|
||||||
'V3SUQSQwoJUHJvamVjdElEGAIgASgJQiWSQRsyGUlkZW50aWZpZXIgb2YgdGhlIFByb2plY3T6'
|
'V3SUQSRAoJUHJvamVjdElEGAIgASgJQiaSQRsyGUlkZW50aWZpZXIgb2YgdGhlIFByb2plY3S6'
|
||||||
'QgRyAhABUglQcm9qZWN0SUQSOQoIU2NyZWVuSUQYAyABKAlCHZJBGjIYSWRlbnRpZmllciBvZi'
|
'gQEEcgIQAVIJUHJvamVjdElEEjkKCFNjcmVlbklEGAMgASgJQh2SQRoyGElkZW50aWZpZXIgb2'
|
||||||
'B0aGUgc2NyZWVuUghTY3JlZW5JRBJLCgxDcmVhdGVVc2VySUQYBCABKAlCJ5JBJDIiSWRlbnRp'
|
'YgdGhlIHNjcmVlblIIU2NyZWVuSUQSSwoMQ3JlYXRlVXNlcklEGAQgASgJQieSQSQyIklkZW50'
|
||||||
'ZmllciBvZiB0aGUgdXNlciB3aG8gY3JlYXRlZFIMQ3JlYXRlVXNlcklEElMKDFVwZGF0ZVVzZX'
|
'aWZpZXIgb2YgdGhlIHVzZXIgd2hvIGNyZWF0ZWRSDENyZWF0ZVVzZXJJRBJTCgxVcGRhdGVVc2'
|
||||||
'JJRBgFIAEoCUIvkkEsMipJZGVudGlmaWVyIG9mIHRoZSB1c2VyIHdobyBkaWQgbGFzdCB1cGRh'
|
'VySUQYBSABKAlCL5JBLDIqSWRlbnRpZmllciBvZiB0aGUgdXNlciB3aG8gZGlkIGxhc3QgdXBk'
|
||||||
'dGVSDFVwZGF0ZVVzZXJJRBLCAQoOQ3JlYXRlRGF0ZVRpbWUYBiABKAlCmQGSQZUBMpIBRGF0ZS'
|
'YXRlUgxVcGRhdGVVc2VySUQSwgEKDkNyZWF0ZURhdGVUaW1lGAYgASgJQpkBkkGVATKSAURhdG'
|
||||||
'BvZiBjcmVhdGlvbiBpbiA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9J'
|
'Ugb2YgY3JlYXRpb24gaW4gPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kv'
|
||||||
'U09fODYwMSc+SVNPIDg2MDE8L2E+IGZvcm1hdCB3aXRoIHRpbWUgem9uZSAoYWNjZXB0ZWQgdH'
|
'SVNPXzg2MDEnPklTTyA4NjAxPC9hPiBmb3JtYXQgd2l0aCB0aW1lIHpvbmUgKGFjY2VwdGVkIH'
|
||||||
'pkIGZvcm1hdHM6IFsrMDE6MDAsIC0wMTowMCwgWl1SDkNyZWF0ZURhdGVUaW1lEsUBCg5VcGRh'
|
'R6ZCBmb3JtYXRzOiBbKzAxOjAwLCAtMDE6MDAsIFpdUg5DcmVhdGVEYXRlVGltZRLFAQoOVXBk'
|
||||||
'dGVEYXRlVGltZRgHIAEoCUKcAZJBmAEylQFEYXRlIG9mIGxhc3QgdXBkYXRlIGluIDxhIGhyZW'
|
'YXRlRGF0ZVRpbWUYByABKAlCnAGSQZgBMpUBRGF0ZSBvZiBsYXN0IHVwZGF0ZSBpbiA8YSBocm'
|
||||||
'Y9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0lTT184NjAxJz5JU08gODYwMTwvYT4g'
|
'VmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fODYwMSc+SVNPIDg2MDE8L2E+'
|
||||||
'Zm9ybWF0IHdpdGggdGltZSB6b25lIChhY2NlcHRlZCB0emQgZm9ybWF0czogWyswMTowMCwgLT'
|
'IGZvcm1hdCB3aXRoIHRpbWUgem9uZSAoYWNjZXB0ZWQgdHpkIGZvcm1hdHM6IFsrMDE6MDAsIC'
|
||||||
'AxOjAwLCBaXVIOVXBkYXRlRGF0ZVRpbWUSMgoHUGF5bG9hZBgKIAEoCUIYkkEVMhNDb250ZW50'
|
'0wMTowMCwgWl1SDlVwZGF0ZURhdGVUaW1lEjIKB1BheWxvYWQYCiABKAlCGJJBFTITQ29udGVu'
|
||||||
'IG9mIHRoZSBWaWV3UgdQYXlsb2FkEjkKCUlzUHJpdmF0ZRgMIAEoCEIbkkEYMhZWaXNpYmlsaX'
|
'dCBvZiB0aGUgVmlld1IHUGF5bG9hZBI5CglJc1ByaXZhdGUYDCABKAhCG5JBGDIWVmlzaWJpbG'
|
||||||
'R5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGUSKQoETmFtZRgNIAEoCUIVkkESMhBOYW1lIG9mIHRo'
|
'l0eSBvZiB0aGUgVmlld1IJSXNQcml2YXRlEikKBE5hbWUYDSABKAlCFZJBEjIQTmFtZSBvZiB0'
|
||||||
'ZSBWaWV3UgROYW1lOhGSQQ4KDNIBCVByb2plY3RJRA==');
|
'aGUgVmlld1IETmFtZToRkkEOCgzSAQlQcm9qZWN0SUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use composedUserViewDescriptor instead')
|
@$core.Deprecated('Use composedUserViewDescriptor instead')
|
||||||
const ComposedUserView$json = {
|
const ComposedUserView$json = {
|
||||||
@@ -117,10 +117,10 @@ const GetViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `GetViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `GetViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List getViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List getViewRequestDescriptor = $convert.base64Decode(
|
||||||
'Cg5HZXRWaWV3UmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3RIZW'
|
'Cg5HZXRWaWV3UmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3RIZW'
|
||||||
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISOgoGVmlld0lEGAIgASgJQiKSQRgyFklkZW50aWZpZXIg'
|
'FkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjsKBlZpZXdJRBgCIAEoCUIjkkEYMhZJZGVudGlmaWVy'
|
||||||
'b2YgdGhlIFZpZXf6QgRyAhABUgZWaWV3SUQ6KJJBJQojMg9JRHMgb2YgdGhlIFZpZXfSAQZIZW'
|
'IG9mIHRoZSBWaWV3uoEBBHICEAFSBlZpZXdJRDookkElCiMyD0lEcyBvZiB0aGUgVmlld9IBBk'
|
||||||
'FkZXLSAQZWaWV3SUQ=');
|
'hlYWRlctIBBlZpZXdJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use getViewResultDescriptor instead')
|
@$core.Deprecated('Use getViewResultDescriptor instead')
|
||||||
const GetViewResult$json = {
|
const GetViewResult$json = {
|
||||||
@@ -151,13 +151,13 @@ const CreateViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `CreateViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `CreateViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List createViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createViewRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFDcmVhdGVWaWV3UmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
'ChFDcmVhdGVWaWV3UmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
||||||
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISMAoETmFtZRgCIAEoCUIckkESMhBOYW1lIG9mIHRo'
|
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjEKBE5hbWUYAiABKAlCHZJBEjIQTmFtZSBvZiB0'
|
||||||
'ZSBWaWV3+kIEcgIQAVIETmFtZRJACghTY3JlZW5JRBgDIAEoCUIkkkEaMhhJZGVudGlmaWVyIG'
|
'aGUgVmlld7qBAQRyAhABUgROYW1lEkEKCFNjcmVlbklEGAMgASgJQiWSQRoyGElkZW50aWZpZX'
|
||||||
'9mIHRoZSBTY3JlZW76QgRyAhABUghTY3JlZW5JRBIyCgdQYXlsb2FkGAUgASgJQhiSQRUyE0Nv'
|
'Igb2YgdGhlIFNjcmVlbrqBAQRyAhABUghTY3JlZW5JRBIyCgdQYXlsb2FkGAUgASgJQhiSQRUy'
|
||||||
'bnRlbnQgb2YgdGhlIFZpZXdSB1BheWxvYWQSOQoJSXNQcml2YXRlGAcgASgIQhuSQRgyFlZpc2'
|
'E0NvbnRlbnQgb2YgdGhlIFZpZXdSB1BheWxvYWQSOQoJSXNQcml2YXRlGAcgASgIQhuSQRgyFl'
|
||||||
'liaWxpdHkgb2YgdGhlIFZpZXdSCUlzUHJpdmF0ZTpFkkFCCkAyI0luZm9ybWF0aW9uIHRoYXQg'
|
'Zpc2liaWxpdHkgb2YgdGhlIFZpZXdSCUlzUHJpdmF0ZTpFkkFCCkAyI0luZm9ybWF0aW9uIHRo'
|
||||||
'bmVlZHMgdG8gYmUgc3RvcmVk0gEGSGVhZGVy0gEETmFtZdIBCFNjcmVlbklE');
|
'YXQgbmVlZHMgdG8gYmUgc3RvcmVk0gEGSGVhZGVy0gEETmFtZdIBCFNjcmVlbklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use createViewResultDescriptor instead')
|
@$core.Deprecated('Use createViewResultDescriptor instead')
|
||||||
const CreateViewResult$json = {
|
const CreateViewResult$json = {
|
||||||
@@ -189,15 +189,15 @@ const UpdateViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `UpdateViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `UpdateViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List updateViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List updateViewRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFVcGRhdGVWaWV3UmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
'ChFVcGRhdGVWaWV3UmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
||||||
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISOgoGVmlld0lEGAIgASgJQiKSQRgyFklkZW50aWZp'
|
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjsKBlZpZXdJRBgCIAEoCUIjkkEYMhZJZGVudGlm'
|
||||||
'ZXIgb2YgdGhlIFZpZXf6QgRyAhABUgZWaWV3SUQSMAoETmFtZRgDIAEoCUIckkESMhBOYW1lIG'
|
'aWVyIG9mIHRoZSBWaWV3uoEBBHICEAFSBlZpZXdJRBIxCgROYW1lGAMgASgJQh2SQRIyEE5hbW'
|
||||||
'9mIHRoZSBWaWV3+kIEcgIQAVIETmFtZRJACghTY3JlZW5JRBgEIAEoCUIkkkEaMhhJZGVudGlm'
|
'Ugb2YgdGhlIFZpZXe6gQEEcgIQAVIETmFtZRJBCghTY3JlZW5JRBgEIAEoCUIlkkEaMhhJZGVu'
|
||||||
'aWVyIG9mIHRoZSBTY3JlZW76QgRyAhABUghTY3JlZW5JRBI5CgdQYXlsb2FkGAYgASgJQh+SQR'
|
'dGlmaWVyIG9mIHRoZSBTY3JlZW66gQEEcgIQAVIIU2NyZWVuSUQSOgoHUGF5bG9hZBgGIAEoCU'
|
||||||
'UyE0NvbnRlbnQgb2YgdGhlIFZpZXf6QgRyAhABUgdQYXlsb2FkEjkKCUlzUHJpdmF0ZRgIIAEo'
|
'IgkkEVMhNDb250ZW50IG9mIHRoZSBWaWV3uoEBBHICEAFSB1BheWxvYWQSOQoJSXNQcml2YXRl'
|
||||||
'CEIbkkEYMhZWaXNpYmlsaXR5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGU6WZJBVgpUMiRJbmZvcm'
|
'GAggASgIQhuSQRgyFlZpc2liaWxpdHkgb2YgdGhlIFZpZXdSCUlzUHJpdmF0ZTpZkkFWClQyJE'
|
||||||
'1hdGlvbiB0aGF0IG5lZWRzIHRvIGJlIHVwZGF0ZWTSAQZIZWFkZXLSAQZWaWV3SUTSAQROYW1l'
|
'luZm9ybWF0aW9uIHRoYXQgbmVlZHMgdG8gYmUgdXBkYXRlZNIBBkhlYWRlctIBBlZpZXdJRNIB'
|
||||||
'0gEIU2NyZWVuSUTSAQdQYXlsb2Fk');
|
'BE5hbWXSAQhTY3JlZW5JRNIBB1BheWxvYWQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use updateViewResultDescriptor instead')
|
@$core.Deprecated('Use updateViewResultDescriptor instead')
|
||||||
const UpdateViewResult$json = {
|
const UpdateViewResult$json = {
|
||||||
@@ -225,10 +225,10 @@ const DeleteViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteViewRequestDescriptor = $convert.base64Decode(
|
||||||
'ChFEZWxldGVWaWV3UmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
'ChFEZWxldGVWaWV3UmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3'
|
||||||
'RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISOgoGVmlld0lEGAIgASgJQiKSQRgyFklkZW50aWZp'
|
'RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEjsKBlZpZXdJRBgCIAEoCUIjkkEYMhZJZGVudGlm'
|
||||||
'ZXIgb2YgdGhlIFZpZXf6QgRyAhABUgZWaWV3SUQ6NpJBMwoxMh1JRHMgb2YgdGhlIFZpZXcgdG'
|
'aWVyIG9mIHRoZSBWaWV3uoEBBHICEAFSBlZpZXdJRDo2kkEzCjEyHUlEcyBvZiB0aGUgVmlldy'
|
||||||
'8gYmUgZGVsZXRlZNIBBkhlYWRlctIBBlZpZXdJRA==');
|
'B0byBiZSBkZWxldGVk0gEGSGVhZGVy0gEGVmlld0lE');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteViewResultDescriptor instead')
|
@$core.Deprecated('Use deleteViewResultDescriptor instead')
|
||||||
const DeleteViewResult$json = {
|
const DeleteViewResult$json = {
|
||||||
@@ -251,9 +251,9 @@ const ListViewRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ListViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ListViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List listViewRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List listViewRequestDescriptor = $convert.base64Decode(
|
||||||
'Cg9MaXN0Vmlld1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm9qZWN0SG'
|
'Cg9MaXN0Vmlld1JlcXVlc3QSPAoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm9qZWN0SG'
|
||||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjkKCFNjcmVlbklEGAIgASgJQh2SQRoyGElkZW50aWZp'
|
'VhZGVyQgm6gQEFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEoCUIdkkEaMhhJZGVudGlm'
|
||||||
'ZXIgb2YgdGhlIFNjcmVlblIIU2NyZWVuSUQ6DpJBCwoJ0gEGSGVhZGVy');
|
'aWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEOg6SQQsKCdIBBkhlYWRlcg==');
|
||||||
|
|
||||||
@$core.Deprecated('Use listViewResultDescriptor instead')
|
@$core.Deprecated('Use listViewResultDescriptor instead')
|
||||||
const ListViewResult$json = {
|
const ListViewResult$json = {
|
||||||
@@ -270,171 +270,6 @@ final $typed_data.Uint8List listViewResultDescriptor = $convert.base64Decode(
|
|||||||
'ZpZXdCHpJBGzIZQWxsIGluZm9ybWF0aW9uIGluIGEgVmlld1IHUmVzdWx0czoUkkERCg8yDUxp'
|
'ZpZXdCHpJBGzIZQWxsIGluZm9ybWF0aW9uIGluIGEgVmlld1IHUmVzdWx0czoUkkERCg8yDUxp'
|
||||||
'c3Qgb2YgVmlld3M=');
|
'c3Qgb2YgVmlld3M=');
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectViewRequestDescriptor instead')
|
|
||||||
const GetProjectViewRequest$json = {
|
|
||||||
'1': 'GetProjectViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetProjectViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getProjectViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChVHZXRQcm9qZWN0Vmlld1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
|
||||||
'9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJZGVu'
|
|
||||||
'dGlmaWVyIG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEOiiSQSUKIzIPSURzIG9mIHRoZSBWaW'
|
|
||||||
'V30gEGSGVhZGVy0gEGVmlld0lE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getProjectViewResultDescriptor instead')
|
|
||||||
const GetProjectViewResult$json = {
|
|
||||||
'1': 'GetProjectViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.ComposedUserView', '10': 'Result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetProjectViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getProjectViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChRHZXRQcm9qZWN0Vmlld1Jlc3VsdBIwCgZSZXN1bHQYASABKAsyGC52aXphcGkuQ29tcG9zZW'
|
|
||||||
'RVc2VyVmlld1IGUmVzdWx0OiWSQSIKIDIeQWxsIGluZm9ybWF0aW9uIGFib3V0IHRoZSBWaWV3');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createProjectViewRequestDescriptor instead')
|
|
||||||
const CreateProjectViewRequest$json = {
|
|
||||||
'1': 'CreateProjectViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'Payload', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
{'1': 'IsPrivate', '3': 7, '4': 1, '5': 8, '8': {}, '10': 'IsPrivate'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateProjectViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createProjectViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChhDcmVhdGVQcm9qZWN0Vmlld1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjAKBE5hbWUYAiABKAlCHJJBEjIQTmFt'
|
|
||||||
'ZSBvZiB0aGUgVmlld/pCBHICEAFSBE5hbWUSQAoIU2NyZWVuSUQYAyABKAlCJJJBGjIYSWRlbn'
|
|
||||||
'RpZmllciBvZiB0aGUgU2NyZWVu+kIEcgIQAVIIU2NyZWVuSUQSMgoHUGF5bG9hZBgFIAEoCUIY'
|
|
||||||
'kkEVMhNDb250ZW50IG9mIHRoZSBWaWV3UgdQYXlsb2FkEjkKCUlzUHJpdmF0ZRgHIAEoCEIbkk'
|
|
||||||
'EYMhZWaXNpYmlsaXR5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGU6RZJBQgpAMiNJbmZvcm1hdGlv'
|
|
||||||
'biB0aGF0IG5lZWRzIHRvIGJlIHN0b3JlZNIBBkhlYWRlctIBBE5hbWXSAQhTY3JlZW5JRA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createProjectViewResultDescriptor instead')
|
|
||||||
const CreateProjectViewResult$json = {
|
|
||||||
'1': 'CreateProjectViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateProjectViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createProjectViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChdDcmVhdGVQcm9qZWN0Vmlld1Jlc3VsdBIzCgZWaWV3SUQYASABKAlCG5JBGDIWSWRlbnRpZm'
|
|
||||||
'llciBvZiB0aGUgVmlld1IGVmlld0lEOh2SQRoKGDIWSUQgb2YgdGhlIGNyZWF0ZWQgVmlldw==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateProjectViewRequestDescriptor instead')
|
|
||||||
const UpdateProjectViewRequest$json = {
|
|
||||||
'1': 'UpdateProjectViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
{'1': 'Name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'Payload', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
{'1': 'IsPrivate', '3': 8, '4': 1, '5': 8, '8': {}, '10': 'IsPrivate'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateProjectViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateProjectViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChhVcGRhdGVQcm9qZWN0Vmlld1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJ'
|
|
||||||
'ZGVudGlmaWVyIG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEEjAKBE5hbWUYAyABKAlCHJJBEj'
|
|
||||||
'IQTmFtZSBvZiB0aGUgVmlld/pCBHICEAFSBE5hbWUSQAoIU2NyZWVuSUQYBCABKAlCJJJBGjIY'
|
|
||||||
'SWRlbnRpZmllciBvZiB0aGUgU2NyZWVu+kIEcgIQAVIIU2NyZWVuSUQSOQoHUGF5bG9hZBgGIA'
|
|
||||||
'EoCUIfkkEVMhNDb250ZW50IG9mIHRoZSBWaWV3+kIEcgIQAVIHUGF5bG9hZBI5CglJc1ByaXZh'
|
|
||||||
'dGUYCCABKAhCG5JBGDIWVmlzaWJpbGl0eSBvZiB0aGUgVmlld1IJSXNQcml2YXRlOlmSQVYKVD'
|
|
||||||
'IkSW5mb3JtYXRpb24gdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gEGVmlld0lE'
|
|
||||||
'0gEETmFtZdIBCFNjcmVlbklE0gEHUGF5bG9hZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateProjectViewResultDescriptor instead')
|
|
||||||
const UpdateProjectViewResult$json = {
|
|
||||||
'1': 'UpdateProjectViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateProjectViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateProjectViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChdVcGRhdGVQcm9qZWN0Vmlld1Jlc3VsdBIzCgZWaWV3SUQYASABKAlCG5JBGDIWSWRlbnRpZm'
|
|
||||||
'llciBvZiB0aGUgVmlld1IGVmlld0lEOhaSQRMKETIPVXBkYXRlZCBWaWV3IElE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectViewRequestDescriptor instead')
|
|
||||||
const DeleteProjectViewRequest$json = {
|
|
||||||
'1': 'DeleteProjectViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteProjectViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteProjectViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChhEZWxldGVQcm9qZWN0Vmlld1JlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
|
||||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJ'
|
|
||||||
'ZGVudGlmaWVyIG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEOjaSQTMKMTIdSURzIG9mIHRoZS'
|
|
||||||
'BWaWV3IHRvIGJlIGRlbGV0ZWTSAQZIZWFkZXLSAQZWaWV3SUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteProjectViewResultDescriptor instead')
|
|
||||||
const DeleteProjectViewResult$json = {
|
|
||||||
'1': 'DeleteProjectViewResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteProjectViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteProjectViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChdEZWxldGVQcm9qZWN0Vmlld1Jlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectViewRequestDescriptor instead')
|
|
||||||
const ListProjectViewRequest$json = {
|
|
||||||
'1': 'ListProjectViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ScreenID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListProjectViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listProjectViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChZMaXN0UHJvamVjdFZpZXdSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UH'
|
|
||||||
'JvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEoCUIdkkEaMhhJ'
|
|
||||||
'ZGVudGlmaWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEOg6SQQsKCdIBBkhlYWRlcg==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listProjectViewResultDescriptor instead')
|
|
||||||
const ListProjectViewResult$json = {
|
|
||||||
'1': 'ListProjectViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.vizapi.ComposedUserView', '8': {}, '10': 'Results'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListProjectViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listProjectViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChVMaXN0UHJvamVjdFZpZXdSZXN1bHQSUgoHUmVzdWx0cxgBIAMoCzIYLnZpemFwaS5Db21wb3'
|
|
||||||
'NlZFVzZXJWaWV3Qh6SQRsyGUFsbCBpbmZvcm1hdGlvbiBpbiBhIFZpZXdSB1Jlc3VsdHM6FJJB'
|
|
||||||
'EQoPMg1MaXN0IG9mIFZpZXdz');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteViewsForProjectRequestDescriptor instead')
|
@$core.Deprecated('Use deleteViewsForProjectRequestDescriptor instead')
|
||||||
const DeleteViewsForProjectRequest$json = {
|
const DeleteViewsForProjectRequest$json = {
|
||||||
'1': 'DeleteViewsForProjectRequest',
|
'1': 'DeleteViewsForProjectRequest',
|
||||||
@@ -446,9 +281,9 @@ const DeleteViewsForProjectRequest$json = {
|
|||||||
|
|
||||||
/// Descriptor for `DeleteViewsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `DeleteViewsForProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List deleteViewsForProjectRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteViewsForProjectRequestDescriptor = $convert.base64Decode(
|
||||||
'ChxEZWxldGVWaWV3c0ZvclByb2plY3RSZXF1ZXN0EkMKCVByb2plY3RJRBgBIAEoCUIlkkEbMh'
|
'ChxEZWxldGVWaWV3c0ZvclByb2plY3RSZXF1ZXN0EkQKCVByb2plY3RJRBgBIAEoCUImkkEbMh'
|
||||||
'lJZGVudGlmaWVyIG9mIHRoZSBQcm9qZWN0+kIEcgIQAVIJUHJvamVjdElEOhGSQQ4KDNIBCVBy'
|
'lJZGVudGlmaWVyIG9mIHRoZSBQcm9qZWN0uoEBBHICEAFSCVByb2plY3RJRDoRkkEOCgzSAQlQ'
|
||||||
'b2plY3RJRA==');
|
'cm9qZWN0SUQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteViewsForProjectResultDescriptor instead')
|
@$core.Deprecated('Use deleteViewsForProjectResultDescriptor instead')
|
||||||
const DeleteViewsForProjectResult$json = {
|
const DeleteViewsForProjectResult$json = {
|
||||||
@@ -459,194 +294,6 @@ const DeleteViewsForProjectResult$json = {
|
|||||||
final $typed_data.Uint8List deleteViewsForProjectResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deleteViewsForProjectResultDescriptor = $convert.base64Decode(
|
||||||
'ChtEZWxldGVWaWV3c0ZvclByb2plY3RSZXN1bHQ=');
|
'ChtEZWxldGVWaWV3c0ZvclByb2plY3RSZXN1bHQ=');
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteViewsForSiteRequestDescriptor instead')
|
|
||||||
const DeleteViewsForSiteRequest$json = {
|
|
||||||
'1': 'DeleteViewsForSiteRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteViewsForSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteViewsForSiteRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChlEZWxldGVWaWV3c0ZvclNpdGVSZXF1ZXN0EjoKBlNpdGVJRBgBIAEoCUIikkEYMhZJZGVudG'
|
|
||||||
'lmaWVyIG9mIHRoZSBTaXRl+kIEcgIQAVIGU2l0ZUlEOg6SQQsKCdIBBlNpdGVJRA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteViewsForSiteResultDescriptor instead')
|
|
||||||
const DeleteViewsForSiteResult$json = {
|
|
||||||
'1': 'DeleteViewsForSiteResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteViewsForSiteResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteViewsForSiteResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChhEZWxldGVWaWV3c0ZvclNpdGVSZXN1bHQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteViewRequestDescriptor instead')
|
|
||||||
const GetSiteViewRequest$json = {
|
|
||||||
'1': 'GetSiteViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChJHZXRTaXRlVmlld1JlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaXRlSG'
|
|
||||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJZGVudGlmaWVy'
|
|
||||||
'IG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEOiiSQSUKIzIPSURzIG9mIHRoZSBWaWV30gEGSG'
|
|
||||||
'VhZGVy0gEGVmlld0lE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use getSiteViewResultDescriptor instead')
|
|
||||||
const GetSiteViewResult$json = {
|
|
||||||
'1': 'GetSiteViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Result', '3': 1, '4': 1, '5': 11, '6': '.vizapi.ComposedUserView', '10': 'Result'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `GetSiteViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List getSiteViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChFHZXRTaXRlVmlld1Jlc3VsdBIwCgZSZXN1bHQYASABKAsyGC52aXphcGkuQ29tcG9zZWRVc2'
|
|
||||||
'VyVmlld1IGUmVzdWx0OiWSQSIKIDIeQWxsIGluZm9ybWF0aW9uIGFib3V0IHRoZSBWaWV3');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteViewRequestDescriptor instead')
|
|
||||||
const CreateSiteViewRequest$json = {
|
|
||||||
'1': 'CreateSiteViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'Name', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'Payload', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
{'1': 'IsPrivate', '3': 7, '4': 1, '5': 8, '8': {}, '10': 'IsPrivate'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createSiteViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChVDcmVhdGVTaXRlVmlld1JlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
|
|
||||||
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjAKBE5hbWUYAiABKAlCHJJBEjIQTmFtZSBvZiB0'
|
|
||||||
'aGUgVmlld/pCBHICEAFSBE5hbWUSQAoIU2NyZWVuSUQYAyABKAlCJJJBGjIYSWRlbnRpZmllci'
|
|
||||||
'BvZiB0aGUgU2NyZWVu+kIEcgIQAVIIU2NyZWVuSUQSMgoHUGF5bG9hZBgFIAEoCUIYkkEVMhND'
|
|
||||||
'b250ZW50IG9mIHRoZSBWaWV3UgdQYXlsb2FkEjkKCUlzUHJpdmF0ZRgHIAEoCEIbkkEYMhZWaX'
|
|
||||||
'NpYmlsaXR5IG9mIHRoZSBWaWV3UglJc1ByaXZhdGU6RZJBQgpAMiNJbmZvcm1hdGlvbiB0aGF0'
|
|
||||||
'IG5lZWRzIHRvIGJlIHN0b3JlZNIBBkhlYWRlctIBBE5hbWXSAQhTY3JlZW5JRA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createSiteViewResultDescriptor instead')
|
|
||||||
const CreateSiteViewResult$json = {
|
|
||||||
'1': 'CreateSiteViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateSiteViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createSiteViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChRDcmVhdGVTaXRlVmlld1Jlc3VsdBIzCgZWaWV3SUQYASABKAlCG5JBGDIWSWRlbnRpZmllci'
|
|
||||||
'BvZiB0aGUgVmlld1IGVmlld0lEOh2SQRoKGDIWSUQgb2YgdGhlIGNyZWF0ZWQgVmlldw==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteViewRequestDescriptor instead')
|
|
||||||
const UpdateSiteViewRequest$json = {
|
|
||||||
'1': 'UpdateSiteViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
{'1': 'Name', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'Name'},
|
|
||||||
{'1': 'ScreenID', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
{'1': 'Payload', '3': 6, '4': 1, '5': 9, '8': {}, '10': 'Payload'},
|
|
||||||
{'1': 'IsPrivate', '3': 8, '4': 1, '5': 8, '8': {}, '10': 'IsPrivate'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChVVcGRhdGVTaXRlVmlld1JlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
|
|
||||||
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJZGVudGlm'
|
|
||||||
'aWVyIG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEEjAKBE5hbWUYAyABKAlCHJJBEjIQTmFtZS'
|
|
||||||
'BvZiB0aGUgVmlld/pCBHICEAFSBE5hbWUSQAoIU2NyZWVuSUQYBCABKAlCJJJBGjIYSWRlbnRp'
|
|
||||||
'ZmllciBvZiB0aGUgU2NyZWVu+kIEcgIQAVIIU2NyZWVuSUQSOQoHUGF5bG9hZBgGIAEoCUIfkk'
|
|
||||||
'EVMhNDb250ZW50IG9mIHRoZSBWaWV3+kIEcgIQAVIHUGF5bG9hZBI5CglJc1ByaXZhdGUYCCAB'
|
|
||||||
'KAhCG5JBGDIWVmlzaWJpbGl0eSBvZiB0aGUgVmlld1IJSXNQcml2YXRlOlmSQVYKVDIkSW5mb3'
|
|
||||||
'JtYXRpb24gdGhhdCBuZWVkcyB0byBiZSB1cGRhdGVk0gEGSGVhZGVy0gEGVmlld0lE0gEETmFt'
|
|
||||||
'ZdIBCFNjcmVlbklE0gEHUGF5bG9hZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use updateSiteViewResultDescriptor instead')
|
|
||||||
const UpdateSiteViewResult$json = {
|
|
||||||
'1': 'UpdateSiteViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `UpdateSiteViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List updateSiteViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChRVcGRhdGVTaXRlVmlld1Jlc3VsdBIzCgZWaWV3SUQYASABKAlCG5JBGDIWSWRlbnRpZmllci'
|
|
||||||
'BvZiB0aGUgVmlld1IGVmlld0lEOhaSQRMKETIPVXBkYXRlZCBWaWV3IElE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSiteViewRequestDescriptor instead')
|
|
||||||
const DeleteSiteViewRequest$json = {
|
|
||||||
'1': 'DeleteSiteViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChVEZWxldGVTaXRlVmlld1JlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaX'
|
|
||||||
'RlSGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjoKBlZpZXdJRBgCIAEoCUIikkEYMhZJZGVudGlm'
|
|
||||||
'aWVyIG9mIHRoZSBWaWV3+kIEcgIQAVIGVmlld0lEOjaSQTMKMTIdSURzIG9mIHRoZSBWaWV3IH'
|
|
||||||
'RvIGJlIGRlbGV0ZWTSAQZIZWFkZXLSAQZWaWV3SUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteSiteViewResultDescriptor instead')
|
|
||||||
const DeleteSiteViewResult$json = {
|
|
||||||
'1': 'DeleteSiteViewResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeleteSiteViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deleteSiteViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChREZWxldGVTaXRlVmlld1Jlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteViewRequestDescriptor instead')
|
|
||||||
const ListSiteViewRequest$json = {
|
|
||||||
'1': 'ListSiteViewRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ScreenID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ScreenID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListSiteViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listSiteViewRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChNMaXN0U2l0ZVZpZXdSZXF1ZXN0EjgKBkhlYWRlchgBIAEoCzIWLmFwaS5SZXF1ZXN0U2l0ZU'
|
|
||||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchI5CghTY3JlZW5JRBgCIAEoCUIdkkEaMhhJZGVudGlm'
|
|
||||||
'aWVyIG9mIHRoZSBTY3JlZW5SCFNjcmVlbklEOg6SQQsKCdIBBkhlYWRlcg==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use listSiteViewResultDescriptor instead')
|
|
||||||
const ListSiteViewResult$json = {
|
|
||||||
'1': 'ListSiteViewResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Results', '3': 1, '4': 3, '5': 11, '6': '.vizapi.ComposedUserView', '8': {}, '10': 'Results'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ListSiteViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List listSiteViewResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChJMaXN0U2l0ZVZpZXdSZXN1bHQSUgoHUmVzdWx0cxgBIAMoCzIYLnZpemFwaS5Db21wb3NlZF'
|
|
||||||
'VzZXJWaWV3Qh6SQRsyGUFsbCBpbmZvcm1hdGlvbiBpbiBhIFZpZXdSB1Jlc3VsdHM6FJJBEQoP'
|
|
||||||
'Mg1MaXN0IG9mIFZpZXdz');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use translationMapDescriptor instead')
|
@$core.Deprecated('Use translationMapDescriptor instead')
|
||||||
const TranslationMap$json = {
|
const TranslationMap$json = {
|
||||||
'1': 'TranslationMap',
|
'1': 'TranslationMap',
|
||||||
@@ -743,31 +390,103 @@ const ExtractRequest_ColumnFormatsEntry$json = {
|
|||||||
|
|
||||||
/// Descriptor for `ExtractRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `ExtractRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List extractRequestDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List extractRequestDescriptor = $convert.base64Decode(
|
||||||
'Cg5FeHRyYWN0UmVxdWVzdBI7CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3RIZW'
|
'Cg5FeHRyYWN0UmVxdWVzdBI8CgZIZWFkZXIYASABKAsyGS5hcGkuUmVxdWVzdFByb2plY3RIZW'
|
||||||
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISHwoGVmlld0lEGAIgASgJQgf6QgRyAhABUgZWaWV3SUQS'
|
'FkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEiAKBlZpZXdJRBgCIAEoCUIIuoEBBHICEAFSBlZpZXdJ'
|
||||||
'XwoMQmxvY2tGaWx0ZXJzGAMgAygLMhAuYXBpLkJsb2NrRmlsdGVyQimSQSYyJEJsb2NrRmlsdG'
|
'RBJfCgxCbG9ja0ZpbHRlcnMYAyADKAsyEC5hcGkuQmxvY2tGaWx0ZXJCKZJBJjIkQmxvY2tGaW'
|
||||||
'VyIHN0cnVjdHVyZSBmb3IgRmluZCBxdWVyeVIMQmxvY2tGaWx0ZXJzElYKDUxpc3RTZXBhcmF0'
|
'x0ZXIgc3RydWN0dXJlIGZvciBGaW5kIHF1ZXJ5UgxCbG9ja0ZpbHRlcnMSVwoNTGlzdFNlcGFy'
|
||||||
'b3IYBCABKAlCMJJBJjIkU2VwYXJhdG9yIGZvciBsaXN0IHRvIHVzZSBpbiB0aGUgY3N2+kIEcg'
|
'YXRvchgEIAEoCUIxkkEmMiRTZXBhcmF0b3IgZm9yIGxpc3QgdG8gdXNlIGluIHRoZSBjc3a6gQ'
|
||||||
'IQAVINTGlzdFNlcGFyYXRvchJfChBEZWNpbWFsU2VwYXJhdG9yGAUgASgJQjOSQSkyJ1NlcGFy'
|
'EEcgIQAVINTGlzdFNlcGFyYXRvchJgChBEZWNpbWFsU2VwYXJhdG9yGAUgASgJQjSSQSkyJ1Nl'
|
||||||
'YXRvciBmb3IgZGVjaW1hbCB0byB1c2UgaW4gdGhlIGNzdvpCBHICEAFSEERlY2ltYWxTZXBhcm'
|
'cGFyYXRvciBmb3IgZGVjaW1hbCB0byB1c2UgaW4gdGhlIGNzdrqBAQRyAhABUhBEZWNpbWFsU2'
|
||||||
'F0b3ISZwoVQ29sdW1uVHJhbnNsYXRpb25NYXBzGAggAygLMjEudml6YXBpLkV4dHJhY3RSZXF1'
|
'VwYXJhdG9yEmcKFUNvbHVtblRyYW5zbGF0aW9uTWFwcxgIIAMoCzIxLnZpemFwaS5FeHRyYWN0'
|
||||||
'ZXN0LkNvbHVtblRyYW5zbGF0aW9uTWFwc0VudHJ5UhVDb2x1bW5UcmFuc2xhdGlvbk1hcHMSTw'
|
'UmVxdWVzdC5Db2x1bW5UcmFuc2xhdGlvbk1hcHNFbnRyeVIVQ29sdW1uVHJhbnNsYXRpb25NYX'
|
||||||
'oNQ29sdW1uRm9ybWF0cxgJIAMoCzIpLnZpemFwaS5FeHRyYWN0UmVxdWVzdC5Db2x1bW5Gb3Jt'
|
'BzEk8KDUNvbHVtbkZvcm1hdHMYCSADKAsyKS52aXphcGkuRXh0cmFjdFJlcXVlc3QuQ29sdW1u'
|
||||||
'YXRzRW50cnlSDUNvbHVtbkZvcm1hdHMSsAEKDlRhcmdldFRpbWVab25lGAogASgJQocBkkF6Mm'
|
'Rm9ybWF0c0VudHJ5Ug1Db2x1bW5Gb3JtYXRzErEBCg5UYXJnZXRUaW1lWm9uZRgKIAEoCUKIAZ'
|
||||||
'hUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lraXBlZGlhLm9y'
|
'JBejJoVGFyZ2V0IHVzZXIgdGltZSB6b25lICA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRp'
|
||||||
'Zy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC9hPkoOIkV1cm'
|
'YS5vcmcvd2lraS9MaXN0X29mX3R6X2RhdGFiYXNlX3RpbWVfem9uZXMnPmZvcm1hdDwvYT5KDi'
|
||||||
'9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRKHAQoKRGF0ZUZvcm1hdBgLIAEo'
|
'JFdXJvcGUvUGFyaXMiuoEBB3IFEAHgAQFSDlRhcmdldFRpbWVab25lEocBCgpEYXRlRm9ybWF0'
|
||||||
'CUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm1hdCBkYXRlcyAgPGEgaHJlZj0naHR0cHM6Ly'
|
'GAsgASgJQmeSQWQyWUxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IGRhdGVzICA8YSBocmVmPSdodH'
|
||||||
'9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIKRGF0'
|
'RwczovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9JU09fNjM5Jz5mb3JtYXQ8L2E+SgciZW4tVVMi'
|
||||||
'ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAwgASgJQmiSQWUyWkxhbmd1YWdlIGNvZGUgdG8gZm'
|
'UgpEYXRlRm9ybWF0EowBCgxOdW1iZXJGb3JtYXQYDCABKAlCaJJBZTJaTGFuZ3VhZ2UgY29kZS'
|
||||||
'9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNP'
|
'B0byBmb3JtYXQgbnVtYmVycyA8YSBocmVmPSdodHRwczovL2VuLndpa2lwZWRpYS5vcmcvd2lr'
|
||||||
'XzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTnVtYmVyRm9ybWF0Ek8KClRpbWVGb3JtYXQYDS'
|
'aS9JU09fNjM5Jz5mb3JtYXQ8L2E+SgciZW4tVVMiUgxOdW1iZXJGb3JtYXQSTwoKVGltZUZvcm'
|
||||||
'ABKA4yEi52aXphcGkuVGltZUZvcm1hdEIbkkEYMhZIb3VyIGNsb2NrIHRpbWUgZm9ybWF0UgpU'
|
'1hdBgNIAEoDjISLnZpemFwaS5UaW1lRm9ybWF0QhuSQRgyFkhvdXIgY2xvY2sgdGltZSBmb3Jt'
|
||||||
'aW1lRm9ybWF0GmAKGkNvbHVtblRyYW5zbGF0aW9uTWFwc0VudHJ5EhAKA2tleRgBIAEoCVIDa2'
|
'YXRSClRpbWVGb3JtYXQaYAoaQ29sdW1uVHJhbnNsYXRpb25NYXBzRW50cnkSEAoDa2V5GAEgAS'
|
||||||
'V5EiwKBXZhbHVlGAIgASgLMhYudml6YXBpLlRyYW5zbGF0aW9uTWFwUgV2YWx1ZToCOAEaXQoS'
|
'gJUgNrZXkSLAoFdmFsdWUYAiABKAsyFi52aXphcGkuVHJhbnNsYXRpb25NYXBSBXZhbHVlOgI4'
|
||||||
'Q29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2V5EjEKBXZhbHVlGAIgASgLMhsudm'
|
'ARpdChJDb2x1bW5Gb3JtYXRzRW50cnkSEAoDa2V5GAEgASgFUgNrZXkSMQoFdmFsdWUYAiABKA'
|
||||||
'l6YXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4ATo6kkE3CjXSAQZIZWFkZXLSAQZW'
|
'syGy52aXphcGkuRXh0cmFjdENvbHVtbkZvcm1hdFIFdmFsdWU6AjgBOjqSQTcKNdIBBkhlYWRl'
|
||||||
'aWV3SUTSAQ1MaXN0U2VwYXJhdG9y0gEQRGVjaW1hbFNlcGFyYXRvcg==');
|
'ctIBBlZpZXdJRNIBDUxpc3RTZXBhcmF0b3LSARBEZWNpbWFsU2VwYXJhdG9y');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use crossExtractRequestDescriptor instead')
|
||||||
|
const CrossExtractRequest$json = {
|
||||||
|
'1': 'CrossExtractRequest',
|
||||||
|
'2': [
|
||||||
|
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
||||||
|
{'1': 'BlockFilters', '3': 2, '4': 3, '5': 11, '6': '.api.BlockFilter', '8': {}, '10': 'BlockFilters'},
|
||||||
|
{'1': 'ListSeparator', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'ListSeparator'},
|
||||||
|
{'1': 'DecimalSeparator', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'DecimalSeparator'},
|
||||||
|
{'1': 'ColumnTranslationMaps', '3': 5, '4': 3, '5': 11, '6': '.vizapi.CrossExtractRequest.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
||||||
|
{'1': 'ColumnFormats', '3': 6, '4': 3, '5': 11, '6': '.vizapi.CrossExtractRequest.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
||||||
|
{'1': 'TargetTimeZone', '3': 7, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
||||||
|
{'1': 'DateFormat', '3': 8, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
||||||
|
{'1': 'NumberFormat', '3': 9, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
||||||
|
{'1': 'TimeFormat', '3': 10, '4': 1, '5': 14, '6': '.vizapi.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
||||||
|
{'1': 'SearchTagProjects', '3': 11, '4': 3, '5': 9, '8': {}, '10': 'SearchTagProjects'},
|
||||||
|
{'1': 'SearchTagUsers', '3': 12, '4': 3, '5': 9, '8': {}, '10': 'SearchTagUsers'},
|
||||||
|
],
|
||||||
|
'3': [CrossExtractRequest_ColumnTranslationMapsEntry$json, CrossExtractRequest_ColumnFormatsEntry$json],
|
||||||
|
'7': {},
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use crossExtractRequestDescriptor instead')
|
||||||
|
const CrossExtractRequest_ColumnTranslationMapsEntry$json = {
|
||||||
|
'1': 'ColumnTranslationMapsEntry',
|
||||||
|
'2': [
|
||||||
|
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
||||||
|
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.TranslationMap', '10': 'value'},
|
||||||
|
],
|
||||||
|
'7': {'7': true},
|
||||||
|
};
|
||||||
|
|
||||||
|
@$core.Deprecated('Use crossExtractRequestDescriptor instead')
|
||||||
|
const CrossExtractRequest_ColumnFormatsEntry$json = {
|
||||||
|
'1': 'ColumnFormatsEntry',
|
||||||
|
'2': [
|
||||||
|
{'1': 'key', '3': 1, '4': 1, '5': 5, '10': 'key'},
|
||||||
|
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.ExtractColumnFormat', '10': 'value'},
|
||||||
|
],
|
||||||
|
'7': {'7': true},
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `CrossExtractRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
|
final $typed_data.Uint8List crossExtractRequestDescriptor = $convert.base64Decode(
|
||||||
|
'ChNDcm9zc0V4dHJhY3RSZXF1ZXN0EiAKBlZpZXdJRBgBIAEoCUIIuoEBBHICEAFSBlZpZXdJRB'
|
||||||
|
'JfCgxCbG9ja0ZpbHRlcnMYAiADKAsyEC5hcGkuQmxvY2tGaWx0ZXJCKZJBJjIkQmxvY2tGaWx0'
|
||||||
|
'ZXIgc3RydWN0dXJlIGZvciBGaW5kIHF1ZXJ5UgxCbG9ja0ZpbHRlcnMSVwoNTGlzdFNlcGFyYX'
|
||||||
|
'RvchgDIAEoCUIxkkEmMiRTZXBhcmF0b3IgZm9yIGxpc3QgdG8gdXNlIGluIHRoZSBjc3a6gQEE'
|
||||||
|
'cgIQAVINTGlzdFNlcGFyYXRvchJgChBEZWNpbWFsU2VwYXJhdG9yGAQgASgJQjSSQSkyJ1NlcG'
|
||||||
|
'FyYXRvciBmb3IgZGVjaW1hbCB0byB1c2UgaW4gdGhlIGNzdrqBAQRyAhABUhBEZWNpbWFsU2Vw'
|
||||||
|
'YXJhdG9yEmwKFUNvbHVtblRyYW5zbGF0aW9uTWFwcxgFIAMoCzI2LnZpemFwaS5Dcm9zc0V4dH'
|
||||||
|
'JhY3RSZXF1ZXN0LkNvbHVtblRyYW5zbGF0aW9uTWFwc0VudHJ5UhVDb2x1bW5UcmFuc2xhdGlv'
|
||||||
|
'bk1hcHMSVAoNQ29sdW1uRm9ybWF0cxgGIAMoCzIuLnZpemFwaS5Dcm9zc0V4dHJhY3RSZXF1ZX'
|
||||||
|
'N0LkNvbHVtbkZvcm1hdHNFbnRyeVINQ29sdW1uRm9ybWF0cxKxAQoOVGFyZ2V0VGltZVpvbmUY'
|
||||||
|
'ByABKAlCiAGSQXoyaFRhcmdldCB1c2VyIHRpbWUgem9uZSAgPGEgaHJlZj0naHR0cHM6Ly9lbi'
|
||||||
|
'53aWtpcGVkaWEub3JnL3dpa2kvTGlzdF9vZl90el9kYXRhYmFzZV90aW1lX3pvbmVzJz5mb3Jt'
|
||||||
|
'YXQ8L2E+Sg4iRXVyb3BlL1BhcmlzIrqBAQdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRKHAQoKRG'
|
||||||
|
'F0ZUZvcm1hdBgIIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm1hdCBkYXRlcyAgPGEg'
|
||||||
|
'aHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPk'
|
||||||
|
'oHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAkgASgJQmiSQWUyWkxhbmd1'
|
||||||
|
'YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaW'
|
||||||
|
'Eub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTnVtYmVyRm9ybWF0Ek8K'
|
||||||
|
'ClRpbWVGb3JtYXQYCiABKA4yEi52aXphcGkuVGltZUZvcm1hdEIbkkEYMhZIb3VyIGNsb2NrIH'
|
||||||
|
'RpbWUgZm9ybWF0UgpUaW1lRm9ybWF0Em0KEVNlYXJjaFRhZ1Byb2plY3RzGAsgAygJQj+SQTwy'
|
||||||
|
'IExpc3Qgb2YgcHJvamVjdElEIHRvIHNlYXJjaCBpbnRvShhbInByb2plY3QxIiwgInByb2plY3'
|
||||||
|
'QyIl1SEVNlYXJjaFRhZ1Byb2plY3RzEmIKDlNlYXJjaFRhZ1VzZXJzGAwgAygJQjqSQTcyHUxp'
|
||||||
|
'c3Qgb2YgdXNlcklEIHRvIHNlYXJjaCBpbnRvShZbInVzZXJJRDEiLCAidXNlcklEMiJdUg5TZW'
|
||||||
|
'FyY2hUYWdVc2VycxpgChpDb2x1bW5UcmFuc2xhdGlvbk1hcHNFbnRyeRIQCgNrZXkYASABKAlS'
|
||||||
|
'A2tleRIsCgV2YWx1ZRgCIAEoCzIWLnZpemFwaS5UcmFuc2xhdGlvbk1hcFIFdmFsdWU6AjgBGl'
|
||||||
|
'0KEkNvbHVtbkZvcm1hdHNFbnRyeRIQCgNrZXkYASABKAVSA2tleRIxCgV2YWx1ZRgCIAEoCzIb'
|
||||||
|
'LnZpemFwaS5FeHRyYWN0Q29sdW1uRm9ybWF0UgV2YWx1ZToCOAE6OpJBNwo10gEGSGVhZGVy0g'
|
||||||
|
'EGVmlld0lE0gENTGlzdFNlcGFyYXRvctIBEERlY2ltYWxTZXBhcmF0b3I=');
|
||||||
|
|
||||||
@$core.Deprecated('Use extractResultDescriptor instead')
|
@$core.Deprecated('Use extractResultDescriptor instead')
|
||||||
const ExtractResult$json = {
|
const ExtractResult$json = {
|
||||||
@@ -783,168 +502,37 @@ final $typed_data.Uint8List extractResultDescriptor = $convert.base64Decode(
|
|||||||
'Cg1FeHRyYWN0UmVzdWx0Eh4KCldvcmtmbG93SUQYASABKAlSCldvcmtmbG93SUQSFAoFUnVuSU'
|
'Cg1FeHRyYWN0UmVzdWx0Eh4KCldvcmtmbG93SUQYASABKAlSCldvcmtmbG93SUQSFAoFUnVuSU'
|
||||||
'QYAiABKAlSBVJ1bklE');
|
'QYAiABKAlSBVJ1bklE');
|
||||||
|
|
||||||
@$core.Deprecated('Use extractProjectRequestDescriptor instead')
|
@$core.Deprecated('Use setOwnerViewRequestDescriptor instead')
|
||||||
const ExtractProjectRequest$json = {
|
const SetOwnerViewRequest$json = {
|
||||||
'1': 'ExtractProjectRequest',
|
'1': 'SetOwnerViewRequest',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
||||||
{'1': 'BlockFilters', '3': 3, '4': 3, '5': 11, '6': '.api.BlockFilter', '8': {}, '10': 'BlockFilters'},
|
{'1': 'UserID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'UserID'},
|
||||||
{'1': 'ListSeparator', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ListSeparator'},
|
|
||||||
{'1': 'DecimalSeparator', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'DecimalSeparator'},
|
|
||||||
{'1': 'ColumnTranslationMaps', '3': 8, '4': 3, '5': 11, '6': '.vizapi.ExtractProjectRequest.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
|
||||||
{'1': 'ColumnFormats', '3': 9, '4': 3, '5': 11, '6': '.vizapi.ExtractProjectRequest.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
|
||||||
{'1': 'TargetTimeZone', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
|
||||||
{'1': 'DateFormat', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
|
||||||
{'1': 'NumberFormat', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
|
||||||
{'1': 'TimeFormat', '3': 13, '4': 1, '5': 14, '6': '.vizapi.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
|
||||||
],
|
],
|
||||||
'3': [ExtractProjectRequest_ColumnTranslationMapsEntry$json, ExtractProjectRequest_ColumnFormatsEntry$json],
|
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
|
|
||||||
@$core.Deprecated('Use extractProjectRequestDescriptor instead')
|
/// Descriptor for `SetOwnerViewRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
const ExtractProjectRequest_ColumnTranslationMapsEntry$json = {
|
final $typed_data.Uint8List setOwnerViewRequestDescriptor = $convert.base64Decode(
|
||||||
'1': 'ColumnTranslationMapsEntry',
|
'ChNTZXRPd25lclZpZXdSZXF1ZXN0EjwKBkhlYWRlchgBIAEoCzIZLmFwaS5SZXF1ZXN0UHJvam'
|
||||||
|
'VjdEhlYWRlckIJuoEBBYoBAhABUgZIZWFkZXISOwoGVmlld0lEGAIgASgJQiOSQRgyFklkZW50'
|
||||||
|
'aWZpZXIgb2YgdGhlIFZpZXe6gQEEcgIQAVIGVmlld0lEEjsKBlVzZXJJRBgDIAEoCUIjkkEYMh'
|
||||||
|
'ZJZGVudGlmaWVyIG9mIHRoZSBVc2VyuoEBBHICEAFSBlVzZXJJRDogkkEdChvSAQZIZWFkZXLS'
|
||||||
|
'AQZWaWV3SUTSAQZVc2VySUQ=');
|
||||||
|
|
||||||
|
@$core.Deprecated('Use setOwnerViewResultDescriptor instead')
|
||||||
|
const SetOwnerViewResult$json = {
|
||||||
|
'1': 'SetOwnerViewResult',
|
||||||
'2': [
|
'2': [
|
||||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
{'1': 'ViewID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
||||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.TranslationMap', '10': 'value'},
|
|
||||||
],
|
],
|
||||||
'7': {'7': true},
|
|
||||||
};
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractProjectRequestDescriptor instead')
|
|
||||||
const ExtractProjectRequest_ColumnFormatsEntry$json = {
|
|
||||||
'1': 'ColumnFormatsEntry',
|
|
||||||
'2': [
|
|
||||||
{'1': 'key', '3': 1, '4': 1, '5': 5, '10': 'key'},
|
|
||||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.ExtractColumnFormat', '10': 'value'},
|
|
||||||
],
|
|
||||||
'7': {'7': true},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ExtractProjectRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List extractProjectRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChVFeHRyYWN0UHJvamVjdFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3RQcm'
|
|
||||||
'9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEh8KBlZpZXdJRBgCIAEoCUIH+kIEcgIQAVIG'
|
|
||||||
'Vmlld0lEEl8KDEJsb2NrRmlsdGVycxgDIAMoCzIQLmFwaS5CbG9ja0ZpbHRlckIpkkEmMiRCbG'
|
|
||||||
'9ja0ZpbHRlciBzdHJ1Y3R1cmUgZm9yIEZpbmQgcXVlcnlSDEJsb2NrRmlsdGVycxJWCg1MaXN0'
|
|
||||||
'U2VwYXJhdG9yGAQgASgJQjCSQSYyJFNlcGFyYXRvciBmb3IgbGlzdCB0byB1c2UgaW4gdGhlIG'
|
|
||||||
'NzdvpCBHICEAFSDUxpc3RTZXBhcmF0b3ISXwoQRGVjaW1hbFNlcGFyYXRvchgFIAEoCUIzkkEp'
|
|
||||||
'MidTZXBhcmF0b3IgZm9yIGRlY2ltYWwgdG8gdXNlIGluIHRoZSBjc3b6QgRyAhABUhBEZWNpbW'
|
|
||||||
'FsU2VwYXJhdG9yEm4KFUNvbHVtblRyYW5zbGF0aW9uTWFwcxgIIAMoCzI4LnZpemFwaS5FeHRy'
|
|
||||||
'YWN0UHJvamVjdFJlcXVlc3QuQ29sdW1uVHJhbnNsYXRpb25NYXBzRW50cnlSFUNvbHVtblRyYW'
|
|
||||||
'5zbGF0aW9uTWFwcxJWCg1Db2x1bW5Gb3JtYXRzGAkgAygLMjAudml6YXBpLkV4dHJhY3RQcm9q'
|
|
||||||
'ZWN0UmVxdWVzdC5Db2x1bW5Gb3JtYXRzRW50cnlSDUNvbHVtbkZvcm1hdHMSsAEKDlRhcmdldF'
|
|
||||||
'RpbWVab25lGAogASgJQocBkkF6MmhUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0'
|
|
||||||
'dHBzOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b2'
|
|
||||||
'5lcyc+Zm9ybWF0PC9hPkoOIkV1cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9u'
|
|
||||||
'ZRKHAQoKRGF0ZUZvcm1hdBgLIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm1hdCBkYX'
|
|
||||||
'RlcyAgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9y'
|
|
||||||
'bWF0PC9hPkoHImVuLVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAwgASgJQmiSQW'
|
|
||||||
'UyWkxhbmd1YWdlIGNvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6Ly9lbi53'
|
|
||||||
'aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTnVtYmVyRm'
|
|
||||||
'9ybWF0Ek8KClRpbWVGb3JtYXQYDSABKA4yEi52aXphcGkuVGltZUZvcm1hdEIbkkEYMhZIb3Vy'
|
|
||||||
'IGNsb2NrIHRpbWUgZm9ybWF0UgpUaW1lRm9ybWF0GmAKGkNvbHVtblRyYW5zbGF0aW9uTWFwc0'
|
|
||||||
'VudHJ5EhAKA2tleRgBIAEoCVIDa2V5EiwKBXZhbHVlGAIgASgLMhYudml6YXBpLlRyYW5zbGF0'
|
|
||||||
'aW9uTWFwUgV2YWx1ZToCOAEaXQoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2'
|
|
||||||
'V5EjEKBXZhbHVlGAIgASgLMhsudml6YXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4'
|
|
||||||
'ATo6kkE3CjXSAQZIZWFkZXLSAQZWaWV3SUTSAQ1MaXN0U2VwYXJhdG9y0gEQRGVjaW1hbFNlcG'
|
|
||||||
'FyYXRvcg==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractProjectResultDescriptor instead')
|
|
||||||
const ExtractProjectResult$json = {
|
|
||||||
'1': 'ExtractProjectResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'WorkflowID', '3': 1, '4': 1, '5': 9, '10': 'WorkflowID'},
|
|
||||||
{'1': 'RunID', '3': 2, '4': 1, '5': 9, '10': 'RunID'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ExtractProjectResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List extractProjectResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChRFeHRyYWN0UHJvamVjdFJlc3VsdBIeCgpXb3JrZmxvd0lEGAEgASgJUgpXb3JrZmxvd0lEEh'
|
|
||||||
'QKBVJ1bklEGAIgASgJUgVSdW5JRA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteRequestDescriptor instead')
|
|
||||||
const ExtractSiteRequest$json = {
|
|
||||||
'1': 'ExtractSiteRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestSiteHeader', '8': {}, '10': 'Header'},
|
|
||||||
{'1': 'ViewID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ViewID'},
|
|
||||||
{'1': 'BlockFilters', '3': 3, '4': 3, '5': 11, '6': '.api.BlockFilter', '8': {}, '10': 'BlockFilters'},
|
|
||||||
{'1': 'ListSeparator', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ListSeparator'},
|
|
||||||
{'1': 'DecimalSeparator', '3': 5, '4': 1, '5': 9, '8': {}, '10': 'DecimalSeparator'},
|
|
||||||
{'1': 'ColumnTranslationMaps', '3': 8, '4': 3, '5': 11, '6': '.vizapi.ExtractSiteRequest.ColumnTranslationMapsEntry', '10': 'ColumnTranslationMaps'},
|
|
||||||
{'1': 'ColumnFormats', '3': 9, '4': 3, '5': 11, '6': '.vizapi.ExtractSiteRequest.ColumnFormatsEntry', '10': 'ColumnFormats'},
|
|
||||||
{'1': 'TargetTimeZone', '3': 10, '4': 1, '5': 9, '8': {}, '10': 'TargetTimeZone'},
|
|
||||||
{'1': 'DateFormat', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'DateFormat'},
|
|
||||||
{'1': 'NumberFormat', '3': 12, '4': 1, '5': 9, '8': {}, '10': 'NumberFormat'},
|
|
||||||
{'1': 'TimeFormat', '3': 13, '4': 1, '5': 14, '6': '.vizapi.TimeFormat', '8': {}, '10': 'TimeFormat'},
|
|
||||||
],
|
|
||||||
'3': [ExtractSiteRequest_ColumnTranslationMapsEntry$json, ExtractSiteRequest_ColumnFormatsEntry$json],
|
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteRequestDescriptor instead')
|
/// Descriptor for `SetOwnerViewResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
const ExtractSiteRequest_ColumnTranslationMapsEntry$json = {
|
final $typed_data.Uint8List setOwnerViewResultDescriptor = $convert.base64Decode(
|
||||||
'1': 'ColumnTranslationMapsEntry',
|
'ChJTZXRPd25lclZpZXdSZXN1bHQSMwoGVmlld0lEGAEgASgJQhuSQRgyFklkZW50aWZpZXIgb2'
|
||||||
'2': [
|
'YgdGhlIFZpZXdSBlZpZXdJRDoskkEpCicyJVJlc3VsdCBvZiBzZXR0aW5nIHRoZSBvd25lciBv'
|
||||||
{'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
|
'ZiBhIFZpZXc=');
|
||||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.TranslationMap', '10': 'value'},
|
|
||||||
],
|
|
||||||
'7': {'7': true},
|
|
||||||
};
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteRequestDescriptor instead')
|
|
||||||
const ExtractSiteRequest_ColumnFormatsEntry$json = {
|
|
||||||
'1': 'ColumnFormatsEntry',
|
|
||||||
'2': [
|
|
||||||
{'1': 'key', '3': 1, '4': 1, '5': 5, '10': 'key'},
|
|
||||||
{'1': 'value', '3': 2, '4': 1, '5': 11, '6': '.vizapi.ExtractColumnFormat', '10': 'value'},
|
|
||||||
],
|
|
||||||
'7': {'7': true},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ExtractSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List extractSiteRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChJFeHRyYWN0U2l0ZVJlcXVlc3QSOAoGSGVhZGVyGAEgASgLMhYuYXBpLlJlcXVlc3RTaXRlSG'
|
|
||||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEh8KBlZpZXdJRBgCIAEoCUIH+kIEcgIQAVIGVmlld0lE'
|
|
||||||
'El8KDEJsb2NrRmlsdGVycxgDIAMoCzIQLmFwaS5CbG9ja0ZpbHRlckIpkkEmMiRCbG9ja0ZpbH'
|
|
||||||
'RlciBzdHJ1Y3R1cmUgZm9yIEZpbmQgcXVlcnlSDEJsb2NrRmlsdGVycxJWCg1MaXN0U2VwYXJh'
|
|
||||||
'dG9yGAQgASgJQjCSQSYyJFNlcGFyYXRvciBmb3IgbGlzdCB0byB1c2UgaW4gdGhlIGNzdvpCBH'
|
|
||||||
'ICEAFSDUxpc3RTZXBhcmF0b3ISXwoQRGVjaW1hbFNlcGFyYXRvchgFIAEoCUIzkkEpMidTZXBh'
|
|
||||||
'cmF0b3IgZm9yIGRlY2ltYWwgdG8gdXNlIGluIHRoZSBjc3b6QgRyAhABUhBEZWNpbWFsU2VwYX'
|
|
||||||
'JhdG9yEmsKFUNvbHVtblRyYW5zbGF0aW9uTWFwcxgIIAMoCzI1LnZpemFwaS5FeHRyYWN0U2l0'
|
|
||||||
'ZVJlcXVlc3QuQ29sdW1uVHJhbnNsYXRpb25NYXBzRW50cnlSFUNvbHVtblRyYW5zbGF0aW9uTW'
|
|
||||||
'FwcxJTCg1Db2x1bW5Gb3JtYXRzGAkgAygLMi0udml6YXBpLkV4dHJhY3RTaXRlUmVxdWVzdC5D'
|
|
||||||
'b2x1bW5Gb3JtYXRzRW50cnlSDUNvbHVtbkZvcm1hdHMSsAEKDlRhcmdldFRpbWVab25lGAogAS'
|
|
||||||
'gJQocBkkF6MmhUYXJnZXQgdXNlciB0aW1lIHpvbmUgIDxhIGhyZWY9J2h0dHBzOi8vZW4ud2lr'
|
|
||||||
'aXBlZGlhLm9yZy93aWtpL0xpc3Rfb2ZfdHpfZGF0YWJhc2VfdGltZV96b25lcyc+Zm9ybWF0PC'
|
|
||||||
'9hPkoOIkV1cm9wZS9QYXJpcyL6QgdyBRAB4AEBUg5UYXJnZXRUaW1lWm9uZRKHAQoKRGF0ZUZv'
|
|
||||||
'cm1hdBgLIAEoCUJnkkFkMllMYW5ndWFnZSBjb2RlIHRvIGZvcm1hdCBkYXRlcyAgPGEgaHJlZj'
|
|
||||||
'0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3JnL3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVu'
|
|
||||||
'LVVTIlIKRGF0ZUZvcm1hdBKMAQoMTnVtYmVyRm9ybWF0GAwgASgJQmiSQWUyWkxhbmd1YWdlIG'
|
|
||||||
'NvZGUgdG8gZm9ybWF0IG51bWJlcnMgPGEgaHJlZj0naHR0cHM6Ly9lbi53aWtpcGVkaWEub3Jn'
|
|
||||||
'L3dpa2kvSVNPXzYzOSc+Zm9ybWF0PC9hPkoHImVuLVVTIlIMTnVtYmVyRm9ybWF0Ek8KClRpbW'
|
|
||||||
'VGb3JtYXQYDSABKA4yEi52aXphcGkuVGltZUZvcm1hdEIbkkEYMhZIb3VyIGNsb2NrIHRpbWUg'
|
|
||||||
'Zm9ybWF0UgpUaW1lRm9ybWF0GmAKGkNvbHVtblRyYW5zbGF0aW9uTWFwc0VudHJ5EhAKA2tleR'
|
|
||||||
'gBIAEoCVIDa2V5EiwKBXZhbHVlGAIgASgLMhYudml6YXBpLlRyYW5zbGF0aW9uTWFwUgV2YWx1'
|
|
||||||
'ZToCOAEaXQoSQ29sdW1uRm9ybWF0c0VudHJ5EhAKA2tleRgBIAEoBVIDa2V5EjEKBXZhbHVlGA'
|
|
||||||
'IgASgLMhsudml6YXBpLkV4dHJhY3RDb2x1bW5Gb3JtYXRSBXZhbHVlOgI4ATo6kkE3CjXSAQZI'
|
|
||||||
'ZWFkZXLSAQZWaWV3SUTSAQ1MaXN0U2VwYXJhdG9y0gEQRGVjaW1hbFNlcGFyYXRvcg==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use extractSiteResultDescriptor instead')
|
|
||||||
const ExtractSiteResult$json = {
|
|
||||||
'1': 'ExtractSiteResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'WorkflowID', '3': 1, '4': 1, '5': 9, '10': 'WorkflowID'},
|
|
||||||
{'1': 'RunID', '3': 2, '4': 1, '5': 9, '10': 'RunID'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ExtractSiteResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List extractSiteResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChFFeHRyYWN0U2l0ZVJlc3VsdBIeCgpXb3JrZmxvd0lEGAEgASgJUgpXb3JrZmxvd0lEEhQKBV'
|
|
||||||
'J1bklEGAIgASgJUgVSdW5JRA==');
|
|
||||||
|
|
||||||
|
|||||||
20
pubspec.lock
20
pubspec.lock
@@ -13,10 +13,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: async
|
name: async
|
||||||
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.13.0"
|
version: "2.13.1"
|
||||||
clock:
|
clock:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -37,10 +37,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: crypto
|
name: crypto
|
||||||
sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
|
sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.6"
|
version: "3.0.7"
|
||||||
fixnum:
|
fixnum:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
@@ -77,10 +77,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: http
|
name: http
|
||||||
sha256: bb2ce4590bc2667c96f318d68cac1b5a7987ec819351d32b1c987239a815e007
|
sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.5.0"
|
version: "1.6.0"
|
||||||
http2:
|
http2:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -101,10 +101,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
|
sha256: df0c643f44ad098eb37988027a8e2b2b5a031fd3977f06bbfd3a76637e8df739
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.17.0"
|
version: "1.18.2"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@@ -125,10 +125,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: source_span
|
name: source_span
|
||||||
sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
|
sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.10.1"
|
version: "1.10.2"
|
||||||
string_scanner:
|
string_scanner:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
name: dart_viz_sdk
|
name: dart_viz_sdk
|
||||||
description: dart libs from visibility model proto files
|
description: dart libs from visibility model proto files
|
||||||
version: 1.12.0-SNAPSHOT-250825131214
|
version: 1.14.0-SNAPSHOT-260525130746
|
||||||
homepage: ''
|
homepage: 'https://git.dev.reflex-platform.com/reflex-platform'
|
||||||
publish_to: ''
|
publish_to: 'https://git.dev.reflex-platform.com/api/packages/reflex-platform/pub'
|
||||||
repository: ''
|
repository: 'https://git.dev.reflex-platform.com/reflex-platform/dart-viz-sdk'
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.2.4
|
sdk: ^3.2.4
|
||||||
|
|||||||
Reference in New Issue
Block a user